├── README.md ├── cases ├── 5.jpg ├── 55.jpg ├── 6.jpg ├── 66.jpg ├── 7.jpg ├── 77.jpg ├── 8.jpg ├── 88.jpg ├── gen_5.gif ├── gen_5.mp4 ├── gen_6.gif ├── gen_7.gif └── static.png ├── cogvideox_interpolation ├── __pycache__ │ ├── datasets.cpython-310.pyc │ └── pipeline.cpython-310.pyc ├── datasets.py └── pipeline.py ├── finetune.py ├── finetune.sh ├── infer.py └── requirement.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feizc/CogvideX-Interpolation/HEAD/README.md -------------------------------------------------------------------------------- /cases/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feizc/CogvideX-Interpolation/HEAD/cases/5.jpg -------------------------------------------------------------------------------- /cases/55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feizc/CogvideX-Interpolation/HEAD/cases/55.jpg -------------------------------------------------------------------------------- /cases/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feizc/CogvideX-Interpolation/HEAD/cases/6.jpg -------------------------------------------------------------------------------- /cases/66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feizc/CogvideX-Interpolation/HEAD/cases/66.jpg -------------------------------------------------------------------------------- /cases/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feizc/CogvideX-Interpolation/HEAD/cases/7.jpg -------------------------------------------------------------------------------- /cases/77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feizc/CogvideX-Interpolation/HEAD/cases/77.jpg -------------------------------------------------------------------------------- /cases/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feizc/CogvideX-Interpolation/HEAD/cases/8.jpg -------------------------------------------------------------------------------- /cases/88.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feizc/CogvideX-Interpolation/HEAD/cases/88.jpg -------------------------------------------------------------------------------- /cases/gen_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feizc/CogvideX-Interpolation/HEAD/cases/gen_5.gif -------------------------------------------------------------------------------- /cases/gen_5.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feizc/CogvideX-Interpolation/HEAD/cases/gen_5.mp4 -------------------------------------------------------------------------------- /cases/gen_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feizc/CogvideX-Interpolation/HEAD/cases/gen_6.gif -------------------------------------------------------------------------------- /cases/gen_7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feizc/CogvideX-Interpolation/HEAD/cases/gen_7.gif -------------------------------------------------------------------------------- /cases/static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feizc/CogvideX-Interpolation/HEAD/cases/static.png -------------------------------------------------------------------------------- /cogvideox_interpolation/__pycache__/datasets.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feizc/CogvideX-Interpolation/HEAD/cogvideox_interpolation/__pycache__/datasets.cpython-310.pyc -------------------------------------------------------------------------------- /cogvideox_interpolation/__pycache__/pipeline.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feizc/CogvideX-Interpolation/HEAD/cogvideox_interpolation/__pycache__/pipeline.cpython-310.pyc -------------------------------------------------------------------------------- /cogvideox_interpolation/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feizc/CogvideX-Interpolation/HEAD/cogvideox_interpolation/datasets.py -------------------------------------------------------------------------------- /cogvideox_interpolation/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feizc/CogvideX-Interpolation/HEAD/cogvideox_interpolation/pipeline.py -------------------------------------------------------------------------------- /finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feizc/CogvideX-Interpolation/HEAD/finetune.py -------------------------------------------------------------------------------- /finetune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feizc/CogvideX-Interpolation/HEAD/finetune.sh -------------------------------------------------------------------------------- /infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feizc/CogvideX-Interpolation/HEAD/infer.py -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feizc/CogvideX-Interpolation/HEAD/requirement.txt --------------------------------------------------------------------------------