├── .gitignore ├── LICENSE ├── README.md ├── conda_env.yml ├── data-exploration.ipynb ├── demo.ipynb ├── exp1.ipynb ├── exp2.ipynb ├── images ├── 6.png ├── leave.png └── varsity.png ├── sys.png ├── task_descriptions.json ├── tests └── test_data.py └── videoannotator ├── __init__.py ├── config.py ├── data.py ├── dp.py ├── experiments.py ├── io.py └── models.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netflix/videoannotator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netflix/videoannotator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netflix/videoannotator/HEAD/README.md -------------------------------------------------------------------------------- /conda_env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netflix/videoannotator/HEAD/conda_env.yml -------------------------------------------------------------------------------- /data-exploration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netflix/videoannotator/HEAD/data-exploration.ipynb -------------------------------------------------------------------------------- /demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netflix/videoannotator/HEAD/demo.ipynb -------------------------------------------------------------------------------- /exp1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netflix/videoannotator/HEAD/exp1.ipynb -------------------------------------------------------------------------------- /exp2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netflix/videoannotator/HEAD/exp2.ipynb -------------------------------------------------------------------------------- /images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netflix/videoannotator/HEAD/images/6.png -------------------------------------------------------------------------------- /images/leave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netflix/videoannotator/HEAD/images/leave.png -------------------------------------------------------------------------------- /images/varsity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netflix/videoannotator/HEAD/images/varsity.png -------------------------------------------------------------------------------- /sys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netflix/videoannotator/HEAD/sys.png -------------------------------------------------------------------------------- /task_descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netflix/videoannotator/HEAD/task_descriptions.json -------------------------------------------------------------------------------- /tests/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netflix/videoannotator/HEAD/tests/test_data.py -------------------------------------------------------------------------------- /videoannotator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /videoannotator/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netflix/videoannotator/HEAD/videoannotator/config.py -------------------------------------------------------------------------------- /videoannotator/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netflix/videoannotator/HEAD/videoannotator/data.py -------------------------------------------------------------------------------- /videoannotator/dp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netflix/videoannotator/HEAD/videoannotator/dp.py -------------------------------------------------------------------------------- /videoannotator/experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netflix/videoannotator/HEAD/videoannotator/experiments.py -------------------------------------------------------------------------------- /videoannotator/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netflix/videoannotator/HEAD/videoannotator/io.py -------------------------------------------------------------------------------- /videoannotator/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netflix/videoannotator/HEAD/videoannotator/models.py --------------------------------------------------------------------------------