gitextract_6p1lor9m/ ├── LICENSE ├── README.md ├── configs/ │ ├── examples/ │ │ ├── constant_motion/ │ │ │ ├── head6.sh │ │ │ ├── head7.sh │ │ │ ├── kong.sh │ │ │ ├── monkey.sh │ │ │ ├── woman2.sh │ │ │ └── woman5.sh │ │ ├── multi_region/ │ │ │ ├── lawn2.sh │ │ │ └── woman.sh │ │ └── single_region/ │ │ ├── desert.sh │ │ ├── dog.sh │ │ ├── football.sh │ │ ├── forest.sh │ │ ├── head5.sh │ │ ├── lawn.sh │ │ ├── lizard.sh │ │ ├── road.sh │ │ ├── sea.sh │ │ ├── sea2.sh │ │ ├── sky.sh │ │ └── woman4.sh │ └── inference/ │ └── config_test.yaml ├── ctrl_model/ │ ├── diffusion_ctrl.py │ └── svd_ctrl.py ├── main/ │ └── inference/ │ ├── sample_constant_motion.py │ ├── sample_multi_region.py │ └── sample_single_region.py ├── requirements.txt ├── sgm/ │ ├── __init__.py │ ├── inference/ │ │ ├── api.py │ │ └── helpers.py │ ├── lr_scheduler.py │ ├── models/ │ │ ├── __init__.py │ │ ├── autoencoder.py │ │ └── diffusion.py │ ├── modules/ │ │ ├── __init__.py │ │ ├── attention.py │ │ ├── autoencoding/ │ │ │ ├── __init__.py │ │ │ ├── losses/ │ │ │ │ ├── __init__.py │ │ │ │ ├── discriminator_loss.py │ │ │ │ └── lpips.py │ │ │ ├── lpips/ │ │ │ │ ├── __init__.py │ │ │ │ ├── loss/ │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── lpips.py │ │ │ │ ├── model/ │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── model.py │ │ │ │ ├── util.py │ │ │ │ └── vqperceptual.py │ │ │ ├── regularizers/ │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ └── quantize.py │ │ │ └── temporal_ae.py │ │ ├── diffusionmodules/ │ │ │ ├── __init__.py │ │ │ ├── denoiser.py │ │ │ ├── denoiser_scaling.py │ │ │ ├── denoiser_weighting.py │ │ │ ├── discretizer.py │ │ │ ├── guiders.py │ │ │ ├── model.py │ │ │ ├── openaimodel.py │ │ │ ├── sampling.py │ │ │ ├── sampling_utils.py │ │ │ ├── sigma_sampling.py │ │ │ ├── util.py │ │ │ ├── video_model.py │ │ │ └── wrappers.py │ │ ├── distributions/ │ │ │ ├── __init__.py │ │ │ └── distributions.py │ │ ├── ema.py │ │ ├── encoders/ │ │ │ ├── __init__.py │ │ │ └── modules.py │ │ └── video_attention.py │ └── util.py └── utils/ ├── save_video.py ├── tools.py └── visualizer.py