├── Bi-LSTM ├── Bi_LSTM.py └── FeatureDataset.py ├── CNN+Bi-LSTM ├── Cnn_Lstm.py └── TensorDataset.py ├── Data Extraction ├── __pycache__ │ ├── frame_extractor.cpython-34.pyc │ └── frame_extractor.cpython-36.pyc ├── feature_extraction.py ├── frame_extractor.py ├── frame_extractor.pyc └── main.py ├── Data ├── Input │ └── desc.txt └── Video │ └── desc.txt ├── Dummy Classifiers └── DummyClassifier.py ├── Model Utils └── ModelUtils.py ├── Pass Tagging Interface ├── __pycache__ │ ├── events_dataset.cpython-37.pyc │ └── last_file_update.cpython-37.pyc ├── events_dataset.py ├── events_tagging_dashboard.py ├── last_file_update.py ├── static │ ├── css │ │ └── table_scroll.css │ ├── icons │ │ ├── pause-24px.svg │ │ └── play_arrow-24px.svg │ └── material-design-icons-master │ │ ├── .gitignore │ │ ├── Gruntfile.js │ │ ├── Gulpfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── css │ │ ├── material-icons.css │ │ ├── material-icons.min.css │ │ └── material-icons.min.css.map │ │ ├── demo │ │ ├── index.html │ │ ├── js │ │ │ ├── data.js │ │ │ └── main.js │ │ └── style │ │ │ ├── main.css │ │ │ └── main.scss │ │ ├── fonts │ │ ├── LICENSE.txt │ │ ├── MaterialIcons-Regular.eot │ │ ├── MaterialIcons-Regular.svg │ │ ├── MaterialIcons-Regular.ttf │ │ ├── MaterialIcons-Regular.woff │ │ ├── MaterialIcons-Regular.woff2 │ │ └── codepoints │ │ ├── index.js │ │ ├── package.json │ │ └── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _path.scss │ │ ├── _rotated-flipped.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ └── material-icons.scss └── templates │ └── events_tagging.html ├── Predicting ├── Model Ini │ └── video_lab_ini.json ├── Model State │ └── model_6.pth ├── Predictions │ └── desc.txt └── video_prediction.py ├── README.md ├── Scheme ├── Training_Process.jpg ├── Training_Process.png ├── bash.jpg └── manual_annotation_application-1.png ├── Training and HyperParam Search ├── Hyperparams Search │ ├── GridSearch.py │ └── grid_search_ini.json └── Training │ ├── Model Metrics │ └── model_metrics.json │ ├── Model Parameters │ └── train_ini.json │ └── TrainModel.py ├── configuration.sh ├── features_extraction.sh ├── predict.sh ├── requirements.txt └── training.sh /Bi-LSTM/Bi_LSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Bi-LSTM/Bi_LSTM.py -------------------------------------------------------------------------------- /Bi-LSTM/FeatureDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Bi-LSTM/FeatureDataset.py -------------------------------------------------------------------------------- /CNN+Bi-LSTM/Cnn_Lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/CNN+Bi-LSTM/Cnn_Lstm.py -------------------------------------------------------------------------------- /CNN+Bi-LSTM/TensorDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/CNN+Bi-LSTM/TensorDataset.py -------------------------------------------------------------------------------- /Data Extraction/__pycache__/frame_extractor.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Data Extraction/__pycache__/frame_extractor.cpython-34.pyc -------------------------------------------------------------------------------- /Data Extraction/__pycache__/frame_extractor.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Data Extraction/__pycache__/frame_extractor.cpython-36.pyc -------------------------------------------------------------------------------- /Data Extraction/feature_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Data Extraction/feature_extraction.py -------------------------------------------------------------------------------- /Data Extraction/frame_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Data Extraction/frame_extractor.py -------------------------------------------------------------------------------- /Data Extraction/frame_extractor.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Data Extraction/frame_extractor.pyc -------------------------------------------------------------------------------- /Data Extraction/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Data Extraction/main.py -------------------------------------------------------------------------------- /Data/Input/desc.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data/Video/desc.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dummy Classifiers/DummyClassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Dummy Classifiers/DummyClassifier.py -------------------------------------------------------------------------------- /Model Utils/ModelUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Model Utils/ModelUtils.py -------------------------------------------------------------------------------- /Pass Tagging Interface/__pycache__/events_dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/__pycache__/events_dataset.cpython-37.pyc -------------------------------------------------------------------------------- /Pass Tagging Interface/__pycache__/last_file_update.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/__pycache__/last_file_update.cpython-37.pyc -------------------------------------------------------------------------------- /Pass Tagging Interface/events_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/events_dataset.py -------------------------------------------------------------------------------- /Pass Tagging Interface/events_tagging_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/events_tagging_dashboard.py -------------------------------------------------------------------------------- /Pass Tagging Interface/last_file_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/last_file_update.py -------------------------------------------------------------------------------- /Pass Tagging Interface/static/css/table_scroll.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/css/table_scroll.css -------------------------------------------------------------------------------- /Pass Tagging Interface/static/icons/pause-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/icons/pause-24px.svg -------------------------------------------------------------------------------- /Pass Tagging Interface/static/icons/play_arrow-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/icons/play_arrow-24px.svg -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/.gitignore -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/Gruntfile.js -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/Gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/Gulpfile.js -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/LICENSE -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/README.md -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/bower.json -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/component.json -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/composer.json -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/css/material-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/css/material-icons.css -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/css/material-icons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/css/material-icons.min.css -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/css/material-icons.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/css/material-icons.min.css.map -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/demo/index.html -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/demo/js/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/demo/js/data.js -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/demo/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/demo/js/main.js -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/demo/style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/demo/style/main.css -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/demo/style/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/demo/style/main.scss -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/fonts/LICENSE.txt -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/fonts/MaterialIcons-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/fonts/MaterialIcons-Regular.eot -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/fonts/MaterialIcons-Regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/fonts/MaterialIcons-Regular.svg -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/fonts/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/fonts/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/fonts/MaterialIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/fonts/MaterialIcons-Regular.woff -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/fonts/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/fonts/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/fonts/codepoints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/fonts/codepoints -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/index.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | STATIC_PATH: __dirname, 3 | }; 4 | -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/package.json -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/scss/_animated.scss -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/scss/_bordered-pulled.scss -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/scss/_core.scss -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/scss/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/scss/_fixed-width.scss -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/scss/_icons.scss -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/scss/_larger.scss -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/scss/_list.scss -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/scss/_mixins.scss -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/scss/_path.scss -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/scss/_rotated-flipped.scss -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/scss/_stacked.scss -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/scss/_variables.scss -------------------------------------------------------------------------------- /Pass Tagging Interface/static/material-design-icons-master/scss/material-icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/static/material-design-icons-master/scss/material-icons.scss -------------------------------------------------------------------------------- /Pass Tagging Interface/templates/events_tagging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Pass Tagging Interface/templates/events_tagging.html -------------------------------------------------------------------------------- /Predicting/Model Ini/video_lab_ini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Predicting/Model Ini/video_lab_ini.json -------------------------------------------------------------------------------- /Predicting/Model State/model_6.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Predicting/Model State/model_6.pth -------------------------------------------------------------------------------- /Predicting/Predictions/desc.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Predicting/video_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Predicting/video_prediction.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/README.md -------------------------------------------------------------------------------- /Scheme/Training_Process.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Scheme/Training_Process.jpg -------------------------------------------------------------------------------- /Scheme/Training_Process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Scheme/Training_Process.png -------------------------------------------------------------------------------- /Scheme/bash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Scheme/bash.jpg -------------------------------------------------------------------------------- /Scheme/manual_annotation_application-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Scheme/manual_annotation_application-1.png -------------------------------------------------------------------------------- /Training and HyperParam Search/Hyperparams Search/GridSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Training and HyperParam Search/Hyperparams Search/GridSearch.py -------------------------------------------------------------------------------- /Training and HyperParam Search/Hyperparams Search/grid_search_ini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Training and HyperParam Search/Hyperparams Search/grid_search_ini.json -------------------------------------------------------------------------------- /Training and HyperParam Search/Training/Model Metrics/model_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Training and HyperParam Search/Training/Model Metrics/model_metrics.json -------------------------------------------------------------------------------- /Training and HyperParam Search/Training/Model Parameters/train_ini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Training and HyperParam Search/Training/Model Parameters/train_ini.json -------------------------------------------------------------------------------- /Training and HyperParam Search/Training/TrainModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/Training and HyperParam Search/Training/TrainModel.py -------------------------------------------------------------------------------- /configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/configuration.sh -------------------------------------------------------------------------------- /features_extraction.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/features_extraction.sh -------------------------------------------------------------------------------- /predict.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/predict.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/requirements.txt -------------------------------------------------------------------------------- /training.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonpappalord/PassNet/HEAD/training.sh --------------------------------------------------------------------------------