├── README.md ├── assets └── introduction.png ├── example_scripts ├── sd_animatelcm.py ├── sd_lavie.py └── sd_zeroscope.py ├── pipelines ├── lavie_models │ ├── __init__.py │ ├── attention.py │ ├── clip.py │ ├── resnet.py │ ├── temporal_attention.py │ ├── transformer_3d.py │ ├── unet.py │ ├── unet_blocks.py │ └── utils.py └── videoelevator_pipeline.py ├── requirements.txt └── utils ├── convert_from_ckpt.py ├── filter_utils.py └── lora.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/VideoElevator/HEAD/README.md -------------------------------------------------------------------------------- /assets/introduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/VideoElevator/HEAD/assets/introduction.png -------------------------------------------------------------------------------- /example_scripts/sd_animatelcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/VideoElevator/HEAD/example_scripts/sd_animatelcm.py -------------------------------------------------------------------------------- /example_scripts/sd_lavie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/VideoElevator/HEAD/example_scripts/sd_lavie.py -------------------------------------------------------------------------------- /example_scripts/sd_zeroscope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/VideoElevator/HEAD/example_scripts/sd_zeroscope.py -------------------------------------------------------------------------------- /pipelines/lavie_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/VideoElevator/HEAD/pipelines/lavie_models/__init__.py -------------------------------------------------------------------------------- /pipelines/lavie_models/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/VideoElevator/HEAD/pipelines/lavie_models/attention.py -------------------------------------------------------------------------------- /pipelines/lavie_models/clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/VideoElevator/HEAD/pipelines/lavie_models/clip.py -------------------------------------------------------------------------------- /pipelines/lavie_models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/VideoElevator/HEAD/pipelines/lavie_models/resnet.py -------------------------------------------------------------------------------- /pipelines/lavie_models/temporal_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/VideoElevator/HEAD/pipelines/lavie_models/temporal_attention.py -------------------------------------------------------------------------------- /pipelines/lavie_models/transformer_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/VideoElevator/HEAD/pipelines/lavie_models/transformer_3d.py -------------------------------------------------------------------------------- /pipelines/lavie_models/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/VideoElevator/HEAD/pipelines/lavie_models/unet.py -------------------------------------------------------------------------------- /pipelines/lavie_models/unet_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/VideoElevator/HEAD/pipelines/lavie_models/unet_blocks.py -------------------------------------------------------------------------------- /pipelines/lavie_models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/VideoElevator/HEAD/pipelines/lavie_models/utils.py -------------------------------------------------------------------------------- /pipelines/videoelevator_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/VideoElevator/HEAD/pipelines/videoelevator_pipeline.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/VideoElevator/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/convert_from_ckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/VideoElevator/HEAD/utils/convert_from_ckpt.py -------------------------------------------------------------------------------- /utils/filter_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/VideoElevator/HEAD/utils/filter_utils.py -------------------------------------------------------------------------------- /utils/lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/VideoElevator/HEAD/utils/lora.py --------------------------------------------------------------------------------