├── .gitignore ├── LICENSE ├── PFA_rapport.pdf ├── README.md ├── convlstm.py ├── dataset.py ├── learner.py ├── loss.py ├── lstm.py ├── mail_lstm.py ├── main.py └── pip3 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamza-t/Real-world-Anomaly-Detection-in-Surveillance-Videos-with-CNN-RNN/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamza-t/Real-world-Anomaly-Detection-in-Surveillance-Videos-with-CNN-RNN/HEAD/LICENSE -------------------------------------------------------------------------------- /PFA_rapport.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamza-t/Real-world-Anomaly-Detection-in-Surveillance-Videos-with-CNN-RNN/HEAD/PFA_rapport.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamza-t/Real-world-Anomaly-Detection-in-Surveillance-Videos-with-CNN-RNN/HEAD/README.md -------------------------------------------------------------------------------- /convlstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamza-t/Real-world-Anomaly-Detection-in-Surveillance-Videos-with-CNN-RNN/HEAD/convlstm.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamza-t/Real-world-Anomaly-Detection-in-Surveillance-Videos-with-CNN-RNN/HEAD/dataset.py -------------------------------------------------------------------------------- /learner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamza-t/Real-world-Anomaly-Detection-in-Surveillance-Videos-with-CNN-RNN/HEAD/learner.py -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamza-t/Real-world-Anomaly-Detection-in-Surveillance-Videos-with-CNN-RNN/HEAD/loss.py -------------------------------------------------------------------------------- /lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamza-t/Real-world-Anomaly-Detection-in-Surveillance-Videos-with-CNN-RNN/HEAD/lstm.py -------------------------------------------------------------------------------- /mail_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamza-t/Real-world-Anomaly-Detection-in-Surveillance-Videos-with-CNN-RNN/HEAD/mail_lstm.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamza-t/Real-world-Anomaly-Detection-in-Surveillance-Videos-with-CNN-RNN/HEAD/main.py -------------------------------------------------------------------------------- /pip3: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------