├── README.md ├── examples ├── keras_demo.ipynb └── lmtd_demo.ipynb ├── lmtd9 ├── .gitignore ├── __init__.py ├── data │ └── database.db ├── database.py ├── evaluation.py ├── file_utils.py └── lmtd9.py └── scripts ├── get_lmtd9_kframes.sh ├── get_lmtd9_resnet152_features.sh └── get_lmtd9_videos.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwehrmann/lmtd/HEAD/README.md -------------------------------------------------------------------------------- /examples/keras_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwehrmann/lmtd/HEAD/examples/keras_demo.ipynb -------------------------------------------------------------------------------- /examples/lmtd_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwehrmann/lmtd/HEAD/examples/lmtd_demo.ipynb -------------------------------------------------------------------------------- /lmtd9/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.ipynb_checkpoints 3 | -------------------------------------------------------------------------------- /lmtd9/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwehrmann/lmtd/HEAD/lmtd9/__init__.py -------------------------------------------------------------------------------- /lmtd9/data/database.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwehrmann/lmtd/HEAD/lmtd9/data/database.db -------------------------------------------------------------------------------- /lmtd9/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwehrmann/lmtd/HEAD/lmtd9/database.py -------------------------------------------------------------------------------- /lmtd9/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwehrmann/lmtd/HEAD/lmtd9/evaluation.py -------------------------------------------------------------------------------- /lmtd9/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwehrmann/lmtd/HEAD/lmtd9/file_utils.py -------------------------------------------------------------------------------- /lmtd9/lmtd9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwehrmann/lmtd/HEAD/lmtd9/lmtd9.py -------------------------------------------------------------------------------- /scripts/get_lmtd9_kframes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwehrmann/lmtd/HEAD/scripts/get_lmtd9_kframes.sh -------------------------------------------------------------------------------- /scripts/get_lmtd9_resnet152_features.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwehrmann/lmtd/HEAD/scripts/get_lmtd9_resnet152_features.sh -------------------------------------------------------------------------------- /scripts/get_lmtd9_videos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwehrmann/lmtd/HEAD/scripts/get_lmtd9_videos.sh --------------------------------------------------------------------------------