├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── abandoned_bag_detection.gif ├── abandoned_bag_heuristic.py ├── demo.py ├── filter_datasets.py ├── predictor.py ├── requirements.txt ├── run_finetuned_model.sh ├── run_trained_finetuned_model.sh └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roym899/abandoned_bag_detection/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roym899/abandoned_bag_detection/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roym899/abandoned_bag_detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roym899/abandoned_bag_detection/HEAD/README.md -------------------------------------------------------------------------------- /abandoned_bag_detection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roym899/abandoned_bag_detection/HEAD/abandoned_bag_detection.gif -------------------------------------------------------------------------------- /abandoned_bag_heuristic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roym899/abandoned_bag_detection/HEAD/abandoned_bag_heuristic.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roym899/abandoned_bag_detection/HEAD/demo.py -------------------------------------------------------------------------------- /filter_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roym899/abandoned_bag_detection/HEAD/filter_datasets.py -------------------------------------------------------------------------------- /predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roym899/abandoned_bag_detection/HEAD/predictor.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roym899/abandoned_bag_detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_finetuned_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roym899/abandoned_bag_detection/HEAD/run_finetuned_model.sh -------------------------------------------------------------------------------- /run_trained_finetuned_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roym899/abandoned_bag_detection/HEAD/run_trained_finetuned_model.sh -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roym899/abandoned_bag_detection/HEAD/train.py --------------------------------------------------------------------------------