├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── requirements.txt └── token_bench ├── fvd.py ├── metrics_cli.py └── video ├── list.txt └── preprocessing_script.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/TokenBench/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/TokenBench/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/TokenBench/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/TokenBench/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/TokenBench/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/TokenBench/HEAD/requirements.txt -------------------------------------------------------------------------------- /token_bench/fvd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/TokenBench/HEAD/token_bench/fvd.py -------------------------------------------------------------------------------- /token_bench/metrics_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/TokenBench/HEAD/token_bench/metrics_cli.py -------------------------------------------------------------------------------- /token_bench/video/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/TokenBench/HEAD/token_bench/video/list.txt -------------------------------------------------------------------------------- /token_bench/video/preprocessing_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/TokenBench/HEAD/token_bench/video/preprocessing_script.py --------------------------------------------------------------------------------