gitextract_80y_vnv1/ ├── .dockerignore ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── labeler.yml │ └── workflows/ │ ├── ci.yml │ └── label.yml ├── .gitignore ├── LICENSE ├── README.md ├── REFERENCES.md ├── backend.Dockerfile ├── dataset/ │ ├── test_videodatainfo_2017.json │ ├── videodatainfo_2017.json │ └── videos/ │ └── README.md ├── dataset_cache/ │ └── README.md ├── docker-compose.yml ├── docker_build.sh ├── docker_hub.sh ├── docker_test.sh ├── early_tests.sh ├── environment.yml ├── frontend.Dockerfile ├── keep_alive.sh ├── requirements.txt ├── src/ │ ├── __init__.py │ ├── backend/ │ │ ├── CombinedResults/ │ │ │ ├── calculate_score_results.sh │ │ │ ├── calculate_total_score_json.py │ │ │ ├── find_total_sentences_unique.py │ │ │ └── summary.sh │ │ ├── __init__.py │ │ ├── data.py │ │ ├── framework.py │ │ ├── model.py │ │ ├── parser.py │ │ ├── plotepochlog.py │ │ ├── pred.sh │ │ ├── preprocess.py │ │ ├── run.sh │ │ ├── test_on_trained.sh │ │ ├── train.py │ │ ├── utils.py │ │ ├── videohandler.py │ │ ├── vocab.py │ │ └── vpreprocess.py │ ├── common/ │ │ ├── __init__.py │ │ ├── config.py │ │ ├── logger.py │ │ ├── rpc.py │ │ └── status.py │ ├── config.json │ ├── config_docker.json │ ├── frontend/ │ │ ├── __init__.py │ │ ├── app.py │ │ └── templates/ │ │ ├── get_ids.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── play.html │ │ ├── predict.html │ │ └── publicindex.html │ ├── run_tests.sh │ └── tests/ │ ├── __init__.py │ └── data/ │ ├── __init__.py │ ├── fetcher.py │ ├── test_fetcher.py │ └── videos/ │ └── .content ├── tests/ │ └── e2e/ │ ├── __init__.py │ └── test_external.py └── uploads/ └── touched