├── LICENSE ├── data ├── .DS_Store ├── Hangzhou │ └── 4_4 │ │ ├── anon_4_4_hangzhou_real.json │ │ ├── anon_4_4_hangzhou_real_5734.json │ │ ├── anon_4_4_hangzhou_real_5816.json │ │ └── roadnet_4_4.json ├── Jinan │ └── 3_4 │ │ ├── .DS_Store │ │ ├── anon_3_4_jinan_real.json │ │ ├── anon_3_4_jinan_real_2000.json │ │ ├── anon_3_4_jinan_real_2500.json │ │ └── roadnet_3_4.json └── newyork_28_7 │ └── 28_7 │ ├── anon_28_7_newyork_real_double.json │ ├── anon_28_7_newyork_real_triple.json │ └── roadnet_28_7.json ├── memory ├── models ├── .DS_Store ├── __init__.py ├── agent.py ├── general_model_agent.py └── network_agent.py ├── readme.md ├── run_cycle.py ├── run_offline.py ├── run_test.py ├── summary.py └── utils ├── .DS_Store ├── __init__.py ├── cityflow_env.py ├── config.py ├── generator.py ├── model_test.py ├── pipeline.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/LICENSE -------------------------------------------------------------------------------- /data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/data/.DS_Store -------------------------------------------------------------------------------- /data/Hangzhou/4_4/anon_4_4_hangzhou_real.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/data/Hangzhou/4_4/anon_4_4_hangzhou_real.json -------------------------------------------------------------------------------- /data/Hangzhou/4_4/anon_4_4_hangzhou_real_5734.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/data/Hangzhou/4_4/anon_4_4_hangzhou_real_5734.json -------------------------------------------------------------------------------- /data/Hangzhou/4_4/anon_4_4_hangzhou_real_5816.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/data/Hangzhou/4_4/anon_4_4_hangzhou_real_5816.json -------------------------------------------------------------------------------- /data/Hangzhou/4_4/roadnet_4_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/data/Hangzhou/4_4/roadnet_4_4.json -------------------------------------------------------------------------------- /data/Jinan/3_4/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/data/Jinan/3_4/.DS_Store -------------------------------------------------------------------------------- /data/Jinan/3_4/anon_3_4_jinan_real.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/data/Jinan/3_4/anon_3_4_jinan_real.json -------------------------------------------------------------------------------- /data/Jinan/3_4/anon_3_4_jinan_real_2000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/data/Jinan/3_4/anon_3_4_jinan_real_2000.json -------------------------------------------------------------------------------- /data/Jinan/3_4/anon_3_4_jinan_real_2500.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/data/Jinan/3_4/anon_3_4_jinan_real_2500.json -------------------------------------------------------------------------------- /data/Jinan/3_4/roadnet_3_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/data/Jinan/3_4/roadnet_3_4.json -------------------------------------------------------------------------------- /data/newyork_28_7/28_7/anon_28_7_newyork_real_double.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/data/newyork_28_7/28_7/anon_28_7_newyork_real_double.json -------------------------------------------------------------------------------- /data/newyork_28_7/28_7/anon_28_7_newyork_real_triple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/data/newyork_28_7/28_7/anon_28_7_newyork_real_triple.json -------------------------------------------------------------------------------- /data/newyork_28_7/28_7/roadnet_28_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/data/newyork_28_7/28_7/roadnet_28_7.json -------------------------------------------------------------------------------- /memory: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /models/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/models/.DS_Store -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/models/agent.py -------------------------------------------------------------------------------- /models/general_model_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/models/general_model_agent.py -------------------------------------------------------------------------------- /models/network_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/models/network_agent.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/readme.md -------------------------------------------------------------------------------- /run_cycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/run_cycle.py -------------------------------------------------------------------------------- /run_offline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/run_offline.py -------------------------------------------------------------------------------- /run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/run_test.py -------------------------------------------------------------------------------- /summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/summary.py -------------------------------------------------------------------------------- /utils/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/utils/.DS_Store -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/cityflow_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/utils/cityflow_env.py -------------------------------------------------------------------------------- /utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/utils/config.py -------------------------------------------------------------------------------- /utils/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/utils/generator.py -------------------------------------------------------------------------------- /utils/model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/utils/model_test.py -------------------------------------------------------------------------------- /utils/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/utils/pipeline.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZhang1996/DataLight-old/HEAD/utils/utils.py --------------------------------------------------------------------------------