├── .gitignore ├── datasets ├── homography │ ├── eth.txt │ ├── hotel.txt │ ├── univ.txt │ └── zara.txt ├── navMap │ ├── eth.npy │ ├── hotel.npy │ ├── univ1.npy │ ├── univ2.npy │ ├── univ3.npy │ ├── zara1.npy │ ├── zara2.npy │ └── zara3.npy ├── test │ ├── biwi_eth.txt │ ├── biwi_hotel.txt │ ├── crowds_zara01.txt │ ├── crowds_zara02.txt │ ├── students001.txt │ └── students003.txt ├── train │ ├── biwi_eth_train.txt │ ├── biwi_hotel_train.txt │ ├── crowds_zara01_train.txt │ ├── crowds_zara02_train.txt │ ├── crowds_zara03_train.txt │ ├── students001_train.txt │ ├── students003_train.txt │ └── uni_examples_train.txt └── val │ ├── biwi_eth_val.txt │ ├── biwi_hotel_val.txt │ ├── crowds_zara01_val.txt │ ├── crowds_zara02_val.txt │ ├── crowds_zara03_val.txt │ ├── students001_val.txt │ ├── students003_val.txt │ └── uni_examples_val.txt ├── experiments ├── eth.yaml ├── hotel.yaml ├── univ.yaml ├── zara1.yaml └── zara2.yaml ├── requirements.txt ├── scripts ├── logger.py ├── makeNavMap.py ├── sample.py └── train.py └── social-lstm ├── coordinates_helpers.py ├── losses.py ├── model.py ├── pooling_layers.py ├── position_estimates.py └── utils ├── __init__.py ├── dataset.py ├── evaluation.py ├── loader.py └── yparams.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled 2 | __pycache__/ 3 | datasets/processed 4 | logs/ 5 | models 6 | -------------------------------------------------------------------------------- /datasets/homography/eth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/homography/eth.txt -------------------------------------------------------------------------------- /datasets/homography/hotel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/homography/hotel.txt -------------------------------------------------------------------------------- /datasets/homography/univ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/homography/univ.txt -------------------------------------------------------------------------------- /datasets/homography/zara.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/homography/zara.txt -------------------------------------------------------------------------------- /datasets/navMap/eth.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/navMap/eth.npy -------------------------------------------------------------------------------- /datasets/navMap/hotel.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/navMap/hotel.npy -------------------------------------------------------------------------------- /datasets/navMap/univ1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/navMap/univ1.npy -------------------------------------------------------------------------------- /datasets/navMap/univ2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/navMap/univ2.npy -------------------------------------------------------------------------------- /datasets/navMap/univ3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/navMap/univ3.npy -------------------------------------------------------------------------------- /datasets/navMap/zara1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/navMap/zara1.npy -------------------------------------------------------------------------------- /datasets/navMap/zara2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/navMap/zara2.npy -------------------------------------------------------------------------------- /datasets/navMap/zara3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/navMap/zara3.npy -------------------------------------------------------------------------------- /datasets/test/biwi_eth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/test/biwi_eth.txt -------------------------------------------------------------------------------- /datasets/test/biwi_hotel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/test/biwi_hotel.txt -------------------------------------------------------------------------------- /datasets/test/crowds_zara01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/test/crowds_zara01.txt -------------------------------------------------------------------------------- /datasets/test/crowds_zara02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/test/crowds_zara02.txt -------------------------------------------------------------------------------- /datasets/test/students001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/test/students001.txt -------------------------------------------------------------------------------- /datasets/test/students003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/test/students003.txt -------------------------------------------------------------------------------- /datasets/train/biwi_eth_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/train/biwi_eth_train.txt -------------------------------------------------------------------------------- /datasets/train/biwi_hotel_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/train/biwi_hotel_train.txt -------------------------------------------------------------------------------- /datasets/train/crowds_zara01_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/train/crowds_zara01_train.txt -------------------------------------------------------------------------------- /datasets/train/crowds_zara02_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/train/crowds_zara02_train.txt -------------------------------------------------------------------------------- /datasets/train/crowds_zara03_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/train/crowds_zara03_train.txt -------------------------------------------------------------------------------- /datasets/train/students001_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/train/students001_train.txt -------------------------------------------------------------------------------- /datasets/train/students003_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/train/students003_train.txt -------------------------------------------------------------------------------- /datasets/train/uni_examples_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/train/uni_examples_train.txt -------------------------------------------------------------------------------- /datasets/val/biwi_eth_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/val/biwi_eth_val.txt -------------------------------------------------------------------------------- /datasets/val/biwi_hotel_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/val/biwi_hotel_val.txt -------------------------------------------------------------------------------- /datasets/val/crowds_zara01_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/val/crowds_zara01_val.txt -------------------------------------------------------------------------------- /datasets/val/crowds_zara02_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/val/crowds_zara02_val.txt -------------------------------------------------------------------------------- /datasets/val/crowds_zara03_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/val/crowds_zara03_val.txt -------------------------------------------------------------------------------- /datasets/val/students001_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/val/students001_val.txt -------------------------------------------------------------------------------- /datasets/val/students003_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/val/students003_val.txt -------------------------------------------------------------------------------- /datasets/val/uni_examples_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/datasets/val/uni_examples_val.txt -------------------------------------------------------------------------------- /experiments/eth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/experiments/eth.yaml -------------------------------------------------------------------------------- /experiments/hotel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/experiments/hotel.yaml -------------------------------------------------------------------------------- /experiments/univ.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/experiments/univ.yaml -------------------------------------------------------------------------------- /experiments/zara1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/experiments/zara1.yaml -------------------------------------------------------------------------------- /experiments/zara2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/experiments/zara2.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/scripts/logger.py -------------------------------------------------------------------------------- /scripts/makeNavMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/scripts/makeNavMap.py -------------------------------------------------------------------------------- /scripts/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/scripts/sample.py -------------------------------------------------------------------------------- /scripts/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/scripts/train.py -------------------------------------------------------------------------------- /social-lstm/coordinates_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/social-lstm/coordinates_helpers.py -------------------------------------------------------------------------------- /social-lstm/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/social-lstm/losses.py -------------------------------------------------------------------------------- /social-lstm/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/social-lstm/model.py -------------------------------------------------------------------------------- /social-lstm/pooling_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/social-lstm/pooling_layers.py -------------------------------------------------------------------------------- /social-lstm/position_estimates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/social-lstm/position_estimates.py -------------------------------------------------------------------------------- /social-lstm/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/social-lstm/utils/__init__.py -------------------------------------------------------------------------------- /social-lstm/utils/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/social-lstm/utils/dataset.py -------------------------------------------------------------------------------- /social-lstm/utils/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/social-lstm/utils/evaluation.py -------------------------------------------------------------------------------- /social-lstm/utils/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/social-lstm/utils/loader.py -------------------------------------------------------------------------------- /social-lstm/utils/yparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oghma/sns-lstm/HEAD/social-lstm/utils/yparams.py --------------------------------------------------------------------------------