├── .gitignore ├── LICENSE ├── README.md ├── cdfvd ├── __init__.py ├── download_example_videos.sh ├── fvd.py ├── third_party │ ├── VideoMAEv2 │ │ ├── __init__.py │ │ ├── utils.py │ │ ├── videomaev2_finetune.py │ │ └── videomaev2_pretrain.py │ ├── __init__.py │ └── i3d │ │ ├── __init__.py │ │ ├── pytorch_i3d.py │ │ └── utils.py └── utils │ ├── __init__.py │ ├── data_utils.py │ └── metric_utils.py ├── docs ├── .gitignore ├── Makefile ├── requirements.txt └── source │ ├── conf.py │ ├── data_utils.md │ ├── fvd.md │ ├── index.md │ └── metric_utils.md └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/content-debiased-fvd/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/content-debiased-fvd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/content-debiased-fvd/HEAD/README.md -------------------------------------------------------------------------------- /cdfvd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cdfvd/download_example_videos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/content-debiased-fvd/HEAD/cdfvd/download_example_videos.sh -------------------------------------------------------------------------------- /cdfvd/fvd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/content-debiased-fvd/HEAD/cdfvd/fvd.py -------------------------------------------------------------------------------- /cdfvd/third_party/VideoMAEv2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cdfvd/third_party/VideoMAEv2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/content-debiased-fvd/HEAD/cdfvd/third_party/VideoMAEv2/utils.py -------------------------------------------------------------------------------- /cdfvd/third_party/VideoMAEv2/videomaev2_finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/content-debiased-fvd/HEAD/cdfvd/third_party/VideoMAEv2/videomaev2_finetune.py -------------------------------------------------------------------------------- /cdfvd/third_party/VideoMAEv2/videomaev2_pretrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/content-debiased-fvd/HEAD/cdfvd/third_party/VideoMAEv2/videomaev2_pretrain.py -------------------------------------------------------------------------------- /cdfvd/third_party/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cdfvd/third_party/i3d/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cdfvd/third_party/i3d/pytorch_i3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/content-debiased-fvd/HEAD/cdfvd/third_party/i3d/pytorch_i3d.py -------------------------------------------------------------------------------- /cdfvd/third_party/i3d/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/content-debiased-fvd/HEAD/cdfvd/third_party/i3d/utils.py -------------------------------------------------------------------------------- /cdfvd/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cdfvd/utils/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/content-debiased-fvd/HEAD/cdfvd/utils/data_utils.py -------------------------------------------------------------------------------- /cdfvd/utils/metric_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/content-debiased-fvd/HEAD/cdfvd/utils/metric_utils.py -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/content-debiased-fvd/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/content-debiased-fvd/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/content-debiased-fvd/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/data_utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/content-debiased-fvd/HEAD/docs/source/data_utils.md -------------------------------------------------------------------------------- /docs/source/fvd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/content-debiased-fvd/HEAD/docs/source/fvd.md -------------------------------------------------------------------------------- /docs/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/content-debiased-fvd/HEAD/docs/source/index.md -------------------------------------------------------------------------------- /docs/source/metric_utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/content-debiased-fvd/HEAD/docs/source/metric_utils.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/content-debiased-fvd/HEAD/setup.py --------------------------------------------------------------------------------