├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __init__.py ├── compute_features.py ├── const_vel_train_test.py ├── eval_forecasting_helper.py ├── images ├── lane_change.png ├── map_for_reference_1.png ├── map_for_reference_2.png └── right_straight.png ├── logger.py ├── lstm_train_test.py ├── nn_train_test.py ├── requirements.txt └── utils ├── baseline_config.py ├── baseline_utils.py ├── lstm_utils.py ├── map_features_utils.py ├── nn_utils.py └── social_features_utils.py /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagjeet-singh/argoverse-forecasting/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagjeet-singh/argoverse-forecasting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagjeet-singh/argoverse-forecasting/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | """Argoverse Motion Forecasting Baselines.""" 2 | -------------------------------------------------------------------------------- /compute_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagjeet-singh/argoverse-forecasting/HEAD/compute_features.py -------------------------------------------------------------------------------- /const_vel_train_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagjeet-singh/argoverse-forecasting/HEAD/const_vel_train_test.py -------------------------------------------------------------------------------- /eval_forecasting_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagjeet-singh/argoverse-forecasting/HEAD/eval_forecasting_helper.py -------------------------------------------------------------------------------- /images/lane_change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagjeet-singh/argoverse-forecasting/HEAD/images/lane_change.png -------------------------------------------------------------------------------- /images/map_for_reference_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagjeet-singh/argoverse-forecasting/HEAD/images/map_for_reference_1.png -------------------------------------------------------------------------------- /images/map_for_reference_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagjeet-singh/argoverse-forecasting/HEAD/images/map_for_reference_2.png -------------------------------------------------------------------------------- /images/right_straight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagjeet-singh/argoverse-forecasting/HEAD/images/right_straight.png -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagjeet-singh/argoverse-forecasting/HEAD/logger.py -------------------------------------------------------------------------------- /lstm_train_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagjeet-singh/argoverse-forecasting/HEAD/lstm_train_test.py -------------------------------------------------------------------------------- /nn_train_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagjeet-singh/argoverse-forecasting/HEAD/nn_train_test.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagjeet-singh/argoverse-forecasting/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/baseline_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagjeet-singh/argoverse-forecasting/HEAD/utils/baseline_config.py -------------------------------------------------------------------------------- /utils/baseline_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagjeet-singh/argoverse-forecasting/HEAD/utils/baseline_utils.py -------------------------------------------------------------------------------- /utils/lstm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagjeet-singh/argoverse-forecasting/HEAD/utils/lstm_utils.py -------------------------------------------------------------------------------- /utils/map_features_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagjeet-singh/argoverse-forecasting/HEAD/utils/map_features_utils.py -------------------------------------------------------------------------------- /utils/nn_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagjeet-singh/argoverse-forecasting/HEAD/utils/nn_utils.py -------------------------------------------------------------------------------- /utils/social_features_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagjeet-singh/argoverse-forecasting/HEAD/utils/social_features_utils.py --------------------------------------------------------------------------------