├── LSTM_TrajGAN_measurement.ipynb ├── MARC ├── MARC.json ├── MARC_Weight.h5 └── core │ ├── __init__.py │ ├── logger.py │ └── utils │ ├── __init__.py │ ├── geohash.py │ └── metrics.py ├── README.md ├── TUL_test.py ├── data ├── csv2npy.py ├── dev_test_encoded_final.csv ├── dev_train_encoded_final.csv ├── final_test.npy ├── final_train.npy ├── test_latlon.csv └── train_latlon.csv ├── losses.py ├── model.py ├── params ├── C_model.json ├── D_model.json ├── G_model.json └── G_model_2000.h5 ├── predict.py ├── results ├── Trajectory_Point_Encoding.png ├── syn_traj_test.csv ├── traj_final.csv ├── trajectory_example.png └── workflow.png ├── train.py └── training_params ├── C_model_0.h5 ├── C_model_10.h5 ├── C_model_100.h5 ├── C_model_1000.h5 ├── C_model_110.h5 ├── C_model_1100.h5 ├── C_model_120.h5 ├── C_model_1200.h5 ├── C_model_130.h5 ├── C_model_1300.h5 ├── C_model_140.h5 ├── C_model_1400.h5 ├── C_model_150.h5 ├── C_model_1500.h5 ├── C_model_160.h5 ├── C_model_1600.h5 ├── C_model_170.h5 ├── C_model_1700.h5 ├── C_model_180.h5 ├── C_model_1800.h5 ├── C_model_190.h5 ├── C_model_1900.h5 ├── C_model_20.h5 ├── C_model_200.h5 ├── C_model_2000.h5 ├── C_model_30.h5 ├── C_model_300.h5 ├── C_model_40.h5 ├── C_model_400.h5 ├── C_model_50.h5 ├── C_model_500.h5 ├── C_model_60.h5 ├── C_model_600.h5 ├── C_model_70.h5 ├── C_model_700.h5 ├── C_model_80.h5 ├── C_model_800.h5 ├── C_model_90.h5 ├── C_model_900.h5 ├── D_model_0.h5 ├── D_model_10.h5 ├── D_model_100.h5 ├── D_model_1000.h5 ├── D_model_110.h5 ├── D_model_1100.h5 ├── D_model_120.h5 ├── D_model_1200.h5 ├── D_model_130.h5 ├── D_model_1300.h5 ├── D_model_140.h5 ├── D_model_1400.h5 ├── D_model_150.h5 ├── D_model_1500.h5 ├── D_model_160.h5 ├── D_model_1600.h5 ├── D_model_170.h5 ├── D_model_1700.h5 ├── D_model_180.h5 ├── D_model_1800.h5 ├── D_model_190.h5 ├── D_model_1900.h5 ├── D_model_20.h5 ├── D_model_200.h5 ├── D_model_2000.h5 ├── D_model_30.h5 ├── D_model_300.h5 ├── D_model_40.h5 ├── D_model_400.h5 ├── D_model_50.h5 ├── D_model_500.h5 ├── D_model_60.h5 ├── D_model_600.h5 ├── D_model_70.h5 ├── D_model_700.h5 ├── D_model_80.h5 ├── D_model_800.h5 ├── D_model_90.h5 ├── D_model_900.h5 ├── G_model_0.h5 ├── G_model_10.h5 ├── G_model_100.h5 ├── G_model_1000.h5 ├── G_model_110.h5 ├── G_model_1100.h5 ├── G_model_120.h5 ├── G_model_1200.h5 ├── G_model_130.h5 ├── G_model_1300.h5 ├── G_model_140.h5 ├── G_model_1400.h5 ├── G_model_150.h5 ├── G_model_1500.h5 ├── G_model_160.h5 ├── G_model_1600.h5 ├── G_model_170.h5 ├── G_model_1700.h5 ├── G_model_180.h5 ├── G_model_1800.h5 ├── G_model_190.h5 ├── G_model_1900.h5 ├── G_model_20.h5 ├── G_model_200.h5 ├── G_model_2000.h5 ├── G_model_30.h5 ├── G_model_300.h5 ├── G_model_40.h5 ├── G_model_400.h5 ├── G_model_50.h5 ├── G_model_500.h5 ├── G_model_60.h5 ├── G_model_600.h5 ├── G_model_70.h5 ├── G_model_700.h5 ├── G_model_80.h5 ├── G_model_800.h5 ├── G_model_90.h5 └── G_model_900.h5 /LSTM_TrajGAN_measurement.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/LSTM_TrajGAN_measurement.ipynb -------------------------------------------------------------------------------- /MARC/MARC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/MARC/MARC.json -------------------------------------------------------------------------------- /MARC/MARC_Weight.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/MARC/MARC_Weight.h5 -------------------------------------------------------------------------------- /MARC/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MARC/core/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/MARC/core/logger.py -------------------------------------------------------------------------------- /MARC/core/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MARC/core/utils/geohash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/MARC/core/utils/geohash.py -------------------------------------------------------------------------------- /MARC/core/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/MARC/core/utils/metrics.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/README.md -------------------------------------------------------------------------------- /TUL_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/TUL_test.py -------------------------------------------------------------------------------- /data/csv2npy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/data/csv2npy.py -------------------------------------------------------------------------------- /data/dev_test_encoded_final.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/data/dev_test_encoded_final.csv -------------------------------------------------------------------------------- /data/dev_train_encoded_final.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/data/dev_train_encoded_final.csv -------------------------------------------------------------------------------- /data/final_test.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/data/final_test.npy -------------------------------------------------------------------------------- /data/final_train.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/data/final_train.npy -------------------------------------------------------------------------------- /data/test_latlon.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/data/test_latlon.csv -------------------------------------------------------------------------------- /data/train_latlon.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/data/train_latlon.csv -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/losses.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/model.py -------------------------------------------------------------------------------- /params/C_model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/params/C_model.json -------------------------------------------------------------------------------- /params/D_model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/params/D_model.json -------------------------------------------------------------------------------- /params/G_model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/params/G_model.json -------------------------------------------------------------------------------- /params/G_model_2000.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/params/G_model_2000.h5 -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/predict.py -------------------------------------------------------------------------------- /results/Trajectory_Point_Encoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/results/Trajectory_Point_Encoding.png -------------------------------------------------------------------------------- /results/syn_traj_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/results/syn_traj_test.csv -------------------------------------------------------------------------------- /results/traj_final.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/results/traj_final.csv -------------------------------------------------------------------------------- /results/trajectory_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/results/trajectory_example.png -------------------------------------------------------------------------------- /results/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/results/workflow.png -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/train.py -------------------------------------------------------------------------------- /training_params/C_model_0.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_0.h5 -------------------------------------------------------------------------------- /training_params/C_model_10.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_10.h5 -------------------------------------------------------------------------------- /training_params/C_model_100.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_100.h5 -------------------------------------------------------------------------------- /training_params/C_model_1000.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_1000.h5 -------------------------------------------------------------------------------- /training_params/C_model_110.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_110.h5 -------------------------------------------------------------------------------- /training_params/C_model_1100.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_1100.h5 -------------------------------------------------------------------------------- /training_params/C_model_120.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_120.h5 -------------------------------------------------------------------------------- /training_params/C_model_1200.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_1200.h5 -------------------------------------------------------------------------------- /training_params/C_model_130.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_130.h5 -------------------------------------------------------------------------------- /training_params/C_model_1300.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_1300.h5 -------------------------------------------------------------------------------- /training_params/C_model_140.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_140.h5 -------------------------------------------------------------------------------- /training_params/C_model_1400.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_1400.h5 -------------------------------------------------------------------------------- /training_params/C_model_150.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_150.h5 -------------------------------------------------------------------------------- /training_params/C_model_1500.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_1500.h5 -------------------------------------------------------------------------------- /training_params/C_model_160.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_160.h5 -------------------------------------------------------------------------------- /training_params/C_model_1600.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_1600.h5 -------------------------------------------------------------------------------- /training_params/C_model_170.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_170.h5 -------------------------------------------------------------------------------- /training_params/C_model_1700.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_1700.h5 -------------------------------------------------------------------------------- /training_params/C_model_180.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_180.h5 -------------------------------------------------------------------------------- /training_params/C_model_1800.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_1800.h5 -------------------------------------------------------------------------------- /training_params/C_model_190.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_190.h5 -------------------------------------------------------------------------------- /training_params/C_model_1900.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_1900.h5 -------------------------------------------------------------------------------- /training_params/C_model_20.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_20.h5 -------------------------------------------------------------------------------- /training_params/C_model_200.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_200.h5 -------------------------------------------------------------------------------- /training_params/C_model_2000.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_2000.h5 -------------------------------------------------------------------------------- /training_params/C_model_30.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_30.h5 -------------------------------------------------------------------------------- /training_params/C_model_300.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_300.h5 -------------------------------------------------------------------------------- /training_params/C_model_40.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_40.h5 -------------------------------------------------------------------------------- /training_params/C_model_400.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_400.h5 -------------------------------------------------------------------------------- /training_params/C_model_50.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_50.h5 -------------------------------------------------------------------------------- /training_params/C_model_500.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_500.h5 -------------------------------------------------------------------------------- /training_params/C_model_60.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_60.h5 -------------------------------------------------------------------------------- /training_params/C_model_600.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_600.h5 -------------------------------------------------------------------------------- /training_params/C_model_70.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_70.h5 -------------------------------------------------------------------------------- /training_params/C_model_700.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_700.h5 -------------------------------------------------------------------------------- /training_params/C_model_80.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_80.h5 -------------------------------------------------------------------------------- /training_params/C_model_800.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_800.h5 -------------------------------------------------------------------------------- /training_params/C_model_90.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_90.h5 -------------------------------------------------------------------------------- /training_params/C_model_900.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/C_model_900.h5 -------------------------------------------------------------------------------- /training_params/D_model_0.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_0.h5 -------------------------------------------------------------------------------- /training_params/D_model_10.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_10.h5 -------------------------------------------------------------------------------- /training_params/D_model_100.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_100.h5 -------------------------------------------------------------------------------- /training_params/D_model_1000.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_1000.h5 -------------------------------------------------------------------------------- /training_params/D_model_110.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_110.h5 -------------------------------------------------------------------------------- /training_params/D_model_1100.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_1100.h5 -------------------------------------------------------------------------------- /training_params/D_model_120.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_120.h5 -------------------------------------------------------------------------------- /training_params/D_model_1200.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_1200.h5 -------------------------------------------------------------------------------- /training_params/D_model_130.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_130.h5 -------------------------------------------------------------------------------- /training_params/D_model_1300.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_1300.h5 -------------------------------------------------------------------------------- /training_params/D_model_140.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_140.h5 -------------------------------------------------------------------------------- /training_params/D_model_1400.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_1400.h5 -------------------------------------------------------------------------------- /training_params/D_model_150.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_150.h5 -------------------------------------------------------------------------------- /training_params/D_model_1500.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_1500.h5 -------------------------------------------------------------------------------- /training_params/D_model_160.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_160.h5 -------------------------------------------------------------------------------- /training_params/D_model_1600.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_1600.h5 -------------------------------------------------------------------------------- /training_params/D_model_170.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_170.h5 -------------------------------------------------------------------------------- /training_params/D_model_1700.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_1700.h5 -------------------------------------------------------------------------------- /training_params/D_model_180.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_180.h5 -------------------------------------------------------------------------------- /training_params/D_model_1800.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_1800.h5 -------------------------------------------------------------------------------- /training_params/D_model_190.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_190.h5 -------------------------------------------------------------------------------- /training_params/D_model_1900.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_1900.h5 -------------------------------------------------------------------------------- /training_params/D_model_20.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_20.h5 -------------------------------------------------------------------------------- /training_params/D_model_200.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_200.h5 -------------------------------------------------------------------------------- /training_params/D_model_2000.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_2000.h5 -------------------------------------------------------------------------------- /training_params/D_model_30.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_30.h5 -------------------------------------------------------------------------------- /training_params/D_model_300.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_300.h5 -------------------------------------------------------------------------------- /training_params/D_model_40.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_40.h5 -------------------------------------------------------------------------------- /training_params/D_model_400.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_400.h5 -------------------------------------------------------------------------------- /training_params/D_model_50.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_50.h5 -------------------------------------------------------------------------------- /training_params/D_model_500.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_500.h5 -------------------------------------------------------------------------------- /training_params/D_model_60.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_60.h5 -------------------------------------------------------------------------------- /training_params/D_model_600.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_600.h5 -------------------------------------------------------------------------------- /training_params/D_model_70.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_70.h5 -------------------------------------------------------------------------------- /training_params/D_model_700.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_700.h5 -------------------------------------------------------------------------------- /training_params/D_model_80.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_80.h5 -------------------------------------------------------------------------------- /training_params/D_model_800.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_800.h5 -------------------------------------------------------------------------------- /training_params/D_model_90.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_90.h5 -------------------------------------------------------------------------------- /training_params/D_model_900.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/D_model_900.h5 -------------------------------------------------------------------------------- /training_params/G_model_0.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_0.h5 -------------------------------------------------------------------------------- /training_params/G_model_10.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_10.h5 -------------------------------------------------------------------------------- /training_params/G_model_100.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_100.h5 -------------------------------------------------------------------------------- /training_params/G_model_1000.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_1000.h5 -------------------------------------------------------------------------------- /training_params/G_model_110.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_110.h5 -------------------------------------------------------------------------------- /training_params/G_model_1100.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_1100.h5 -------------------------------------------------------------------------------- /training_params/G_model_120.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_120.h5 -------------------------------------------------------------------------------- /training_params/G_model_1200.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_1200.h5 -------------------------------------------------------------------------------- /training_params/G_model_130.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_130.h5 -------------------------------------------------------------------------------- /training_params/G_model_1300.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_1300.h5 -------------------------------------------------------------------------------- /training_params/G_model_140.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_140.h5 -------------------------------------------------------------------------------- /training_params/G_model_1400.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_1400.h5 -------------------------------------------------------------------------------- /training_params/G_model_150.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_150.h5 -------------------------------------------------------------------------------- /training_params/G_model_1500.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_1500.h5 -------------------------------------------------------------------------------- /training_params/G_model_160.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_160.h5 -------------------------------------------------------------------------------- /training_params/G_model_1600.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_1600.h5 -------------------------------------------------------------------------------- /training_params/G_model_170.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_170.h5 -------------------------------------------------------------------------------- /training_params/G_model_1700.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_1700.h5 -------------------------------------------------------------------------------- /training_params/G_model_180.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_180.h5 -------------------------------------------------------------------------------- /training_params/G_model_1800.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_1800.h5 -------------------------------------------------------------------------------- /training_params/G_model_190.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_190.h5 -------------------------------------------------------------------------------- /training_params/G_model_1900.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_1900.h5 -------------------------------------------------------------------------------- /training_params/G_model_20.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_20.h5 -------------------------------------------------------------------------------- /training_params/G_model_200.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_200.h5 -------------------------------------------------------------------------------- /training_params/G_model_2000.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_2000.h5 -------------------------------------------------------------------------------- /training_params/G_model_30.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_30.h5 -------------------------------------------------------------------------------- /training_params/G_model_300.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_300.h5 -------------------------------------------------------------------------------- /training_params/G_model_40.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_40.h5 -------------------------------------------------------------------------------- /training_params/G_model_400.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_400.h5 -------------------------------------------------------------------------------- /training_params/G_model_50.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_50.h5 -------------------------------------------------------------------------------- /training_params/G_model_500.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_500.h5 -------------------------------------------------------------------------------- /training_params/G_model_60.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_60.h5 -------------------------------------------------------------------------------- /training_params/G_model_600.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_600.h5 -------------------------------------------------------------------------------- /training_params/G_model_70.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_70.h5 -------------------------------------------------------------------------------- /training_params/G_model_700.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_700.h5 -------------------------------------------------------------------------------- /training_params/G_model_80.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_80.h5 -------------------------------------------------------------------------------- /training_params/G_model_800.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_800.h5 -------------------------------------------------------------------------------- /training_params/G_model_90.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_90.h5 -------------------------------------------------------------------------------- /training_params/G_model_900.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDS/LSTM-TrajGAN/HEAD/training_params/G_model_900.h5 --------------------------------------------------------------------------------