├── .gitignore ├── README.md ├── __init__.py ├── app.py ├── assets ├── base_wf.png ├── original.mp4 └── svd.mp4 ├── configs └── inference │ ├── config_motionctrl_cmcm.yaml │ └── motionctrl_run.sh ├── doc ├── showcase_svd.md └── tutorial.md ├── examples └── camera_poses │ ├── test.txt │ ├── test_camera_018f7907401f2fef.json │ ├── test_camera_088b93f15ca8745d.json │ ├── test_camera_1424acd0007d40b5.json │ ├── test_camera_D.json │ ├── test_camera_I.json │ ├── test_camera_I_0.2x.json │ ├── test_camera_I_0.4x.json │ ├── test_camera_I_1.0x.json │ ├── test_camera_I_2.0x.json │ ├── test_camera_L.json │ ├── test_camera_O.json │ ├── test_camera_O_0.2x.json │ ├── test_camera_O_0.4x.json │ ├── test_camera_O_1.0x.json │ ├── test_camera_O_2.0x.json │ ├── test_camera_R.json │ ├── test_camera_Round-RI-120.json │ ├── test_camera_Round-RI.json │ ├── test_camera_Round-RI_90.json │ ├── test_camera_Round-ZoomIn.json │ ├── test_camera_SPIN-ACW-60.json │ ├── test_camera_SPIN-CW-60.json │ ├── test_camera_U.json │ ├── test_camera_b133a504fc90a2d1.json │ ├── test_camera_d9642c8efc01481d.json │ └── test_camera_d971457c81bca597.json ├── gradio_utils ├── __pycache__ │ ├── camera_utils.cpython-310.pyc │ ├── flow_utils.cpython-310.pyc │ ├── motionctrl_cmcm_gradio.cpython-310.pyc │ ├── traj_utils.cpython-310.pyc │ └── utils.cpython-310.pyc ├── camera_utils.py ├── flow_utils.py ├── motionctrl_cmcm_gradio.py ├── traj_utils.py └── utils.py ├── main.py ├── main └── inference │ └── motionctrl_cmcm.py ├── nodes.py ├── pytest.ini ├── requirements.txt ├── scripts ├── __init__.py ├── demo │ ├── __init__.py │ ├── detect.py │ ├── discretization.py │ ├── sampling.py │ ├── streamlit_helpers.py │ └── video_sampling.py ├── sampling │ ├── configs │ │ ├── svd.yaml │ │ ├── svd_image_decoder.yaml │ │ ├── svd_xt.yaml │ │ └── svd_xt_image_decoder.yaml │ └── simple_video_sample.py ├── tests │ └── attention.py └── util │ ├── __init__.py │ └── detection │ ├── __init__.py │ ├── nsfw_and_watermark_dectection.py │ ├── p_head_v1.npz │ └── w_head_v1.npz ├── sgm ├── __init__.py ├── __pycache__ │ └── __init__.cpython-310.pyc ├── data_org │ ├── __init__.py │ ├── cifar10.py │ ├── dataset.py │ └── mnist.py ├── inference │ ├── api.py │ └── helpers.py ├── lr_scheduler.py ├── models │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ └── autoencoder.cpython-310.pyc │ ├── 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 │ │ ├── loss_weighting.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 ├── motionctrl │ ├── camera_motion_control.py │ └── modified_svd.py └── util.py ├── workflow.json └── workflow_video.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/__init__.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/app.py -------------------------------------------------------------------------------- /assets/base_wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/assets/base_wf.png -------------------------------------------------------------------------------- /assets/original.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/assets/original.mp4 -------------------------------------------------------------------------------- /assets/svd.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/assets/svd.mp4 -------------------------------------------------------------------------------- /configs/inference/config_motionctrl_cmcm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/configs/inference/config_motionctrl_cmcm.yaml -------------------------------------------------------------------------------- /configs/inference/motionctrl_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/configs/inference/motionctrl_run.sh -------------------------------------------------------------------------------- /doc/showcase_svd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/doc/showcase_svd.md -------------------------------------------------------------------------------- /doc/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/doc/tutorial.md -------------------------------------------------------------------------------- /examples/camera_poses/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test.txt -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_018f7907401f2fef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_018f7907401f2fef.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_088b93f15ca8745d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_088b93f15ca8745d.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_1424acd0007d40b5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_1424acd0007d40b5.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_D.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_I.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_I.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_I_0.2x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_I_0.2x.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_I_0.4x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_I_0.4x.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_I_1.0x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_I_1.0x.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_I_2.0x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_I_2.0x.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_L.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_L.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_O.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_O.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_O_0.2x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_O_0.2x.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_O_0.4x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_O_0.4x.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_O_1.0x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_O_1.0x.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_O_2.0x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_O_2.0x.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_R.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_R.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_Round-RI-120.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_Round-RI-120.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_Round-RI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_Round-RI.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_Round-RI_90.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_Round-RI_90.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_Round-ZoomIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_Round-ZoomIn.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_SPIN-ACW-60.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_SPIN-ACW-60.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_SPIN-CW-60.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_SPIN-CW-60.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_U.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_U.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_b133a504fc90a2d1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_b133a504fc90a2d1.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_d9642c8efc01481d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_d9642c8efc01481d.json -------------------------------------------------------------------------------- /examples/camera_poses/test_camera_d971457c81bca597.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/examples/camera_poses/test_camera_d971457c81bca597.json -------------------------------------------------------------------------------- /gradio_utils/__pycache__/camera_utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/gradio_utils/__pycache__/camera_utils.cpython-310.pyc -------------------------------------------------------------------------------- /gradio_utils/__pycache__/flow_utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/gradio_utils/__pycache__/flow_utils.cpython-310.pyc -------------------------------------------------------------------------------- /gradio_utils/__pycache__/motionctrl_cmcm_gradio.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/gradio_utils/__pycache__/motionctrl_cmcm_gradio.cpython-310.pyc -------------------------------------------------------------------------------- /gradio_utils/__pycache__/traj_utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/gradio_utils/__pycache__/traj_utils.cpython-310.pyc -------------------------------------------------------------------------------- /gradio_utils/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/gradio_utils/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /gradio_utils/camera_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/gradio_utils/camera_utils.py -------------------------------------------------------------------------------- /gradio_utils/flow_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/gradio_utils/flow_utils.py -------------------------------------------------------------------------------- /gradio_utils/motionctrl_cmcm_gradio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/gradio_utils/motionctrl_cmcm_gradio.py -------------------------------------------------------------------------------- /gradio_utils/traj_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/gradio_utils/traj_utils.py -------------------------------------------------------------------------------- /gradio_utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/gradio_utils/utils.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/main.py -------------------------------------------------------------------------------- /main/inference/motionctrl_cmcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/main/inference/motionctrl_cmcm.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/nodes.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/demo/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/scripts/demo/detect.py -------------------------------------------------------------------------------- /scripts/demo/discretization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/scripts/demo/discretization.py -------------------------------------------------------------------------------- /scripts/demo/sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/scripts/demo/sampling.py -------------------------------------------------------------------------------- /scripts/demo/streamlit_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/scripts/demo/streamlit_helpers.py -------------------------------------------------------------------------------- /scripts/demo/video_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/scripts/demo/video_sampling.py -------------------------------------------------------------------------------- /scripts/sampling/configs/svd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/scripts/sampling/configs/svd.yaml -------------------------------------------------------------------------------- /scripts/sampling/configs/svd_image_decoder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/scripts/sampling/configs/svd_image_decoder.yaml -------------------------------------------------------------------------------- /scripts/sampling/configs/svd_xt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/scripts/sampling/configs/svd_xt.yaml -------------------------------------------------------------------------------- /scripts/sampling/configs/svd_xt_image_decoder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/scripts/sampling/configs/svd_xt_image_decoder.yaml -------------------------------------------------------------------------------- /scripts/sampling/simple_video_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/scripts/sampling/simple_video_sample.py -------------------------------------------------------------------------------- /scripts/tests/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/scripts/tests/attention.py -------------------------------------------------------------------------------- /scripts/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/util/detection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/util/detection/nsfw_and_watermark_dectection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/scripts/util/detection/nsfw_and_watermark_dectection.py -------------------------------------------------------------------------------- /scripts/util/detection/p_head_v1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/scripts/util/detection/p_head_v1.npz -------------------------------------------------------------------------------- /scripts/util/detection/w_head_v1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/scripts/util/detection/w_head_v1.npz -------------------------------------------------------------------------------- /sgm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/__init__.py -------------------------------------------------------------------------------- /sgm/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /sgm/data_org/__init__.py: -------------------------------------------------------------------------------- 1 | from .dataset import StableDataModuleFromConfig 2 | -------------------------------------------------------------------------------- /sgm/data_org/cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/data_org/cifar10.py -------------------------------------------------------------------------------- /sgm/data_org/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/data_org/dataset.py -------------------------------------------------------------------------------- /sgm/data_org/mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/data_org/mnist.py -------------------------------------------------------------------------------- /sgm/inference/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/inference/api.py -------------------------------------------------------------------------------- /sgm/inference/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/inference/helpers.py -------------------------------------------------------------------------------- /sgm/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/lr_scheduler.py -------------------------------------------------------------------------------- /sgm/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/models/__init__.py -------------------------------------------------------------------------------- /sgm/models/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/models/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /sgm/models/__pycache__/autoencoder.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/models/__pycache__/autoencoder.cpython-310.pyc -------------------------------------------------------------------------------- /sgm/models/autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/models/autoencoder.py -------------------------------------------------------------------------------- /sgm/models/diffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/models/diffusion.py -------------------------------------------------------------------------------- /sgm/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/__init__.py -------------------------------------------------------------------------------- /sgm/modules/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/attention.py -------------------------------------------------------------------------------- /sgm/modules/autoencoding/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sgm/modules/autoencoding/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/autoencoding/losses/__init__.py -------------------------------------------------------------------------------- /sgm/modules/autoencoding/losses/discriminator_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/autoencoding/losses/discriminator_loss.py -------------------------------------------------------------------------------- /sgm/modules/autoencoding/losses/lpips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/autoencoding/losses/lpips.py -------------------------------------------------------------------------------- /sgm/modules/autoencoding/lpips/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sgm/modules/autoencoding/lpips/loss/.gitignore: -------------------------------------------------------------------------------- 1 | vgg.pth -------------------------------------------------------------------------------- /sgm/modules/autoencoding/lpips/loss/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/autoencoding/lpips/loss/LICENSE -------------------------------------------------------------------------------- /sgm/modules/autoencoding/lpips/loss/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sgm/modules/autoencoding/lpips/loss/lpips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/autoencoding/lpips/loss/lpips.py -------------------------------------------------------------------------------- /sgm/modules/autoencoding/lpips/model/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/autoencoding/lpips/model/LICENSE -------------------------------------------------------------------------------- /sgm/modules/autoencoding/lpips/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sgm/modules/autoencoding/lpips/model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/autoencoding/lpips/model/model.py -------------------------------------------------------------------------------- /sgm/modules/autoencoding/lpips/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/autoencoding/lpips/util.py -------------------------------------------------------------------------------- /sgm/modules/autoencoding/lpips/vqperceptual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/autoencoding/lpips/vqperceptual.py -------------------------------------------------------------------------------- /sgm/modules/autoencoding/regularizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/autoencoding/regularizers/__init__.py -------------------------------------------------------------------------------- /sgm/modules/autoencoding/regularizers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/autoencoding/regularizers/base.py -------------------------------------------------------------------------------- /sgm/modules/autoencoding/regularizers/quantize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/autoencoding/regularizers/quantize.py -------------------------------------------------------------------------------- /sgm/modules/autoencoding/temporal_ae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/autoencoding/temporal_ae.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/denoiser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/diffusionmodules/denoiser.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/denoiser_scaling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/diffusionmodules/denoiser_scaling.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/denoiser_weighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/diffusionmodules/denoiser_weighting.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/discretizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/diffusionmodules/discretizer.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/guiders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/diffusionmodules/guiders.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/loss_weighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/diffusionmodules/loss_weighting.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/diffusionmodules/model.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/openaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/diffusionmodules/openaimodel.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/diffusionmodules/sampling.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/sampling_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/diffusionmodules/sampling_utils.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/sigma_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/diffusionmodules/sigma_sampling.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/diffusionmodules/util.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/video_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/diffusionmodules/video_model.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/diffusionmodules/wrappers.py -------------------------------------------------------------------------------- /sgm/modules/distributions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sgm/modules/distributions/distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/distributions/distributions.py -------------------------------------------------------------------------------- /sgm/modules/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/ema.py -------------------------------------------------------------------------------- /sgm/modules/encoders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sgm/modules/encoders/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/encoders/modules.py -------------------------------------------------------------------------------- /sgm/modules/video_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/modules/video_attention.py -------------------------------------------------------------------------------- /sgm/motionctrl/camera_motion_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/motionctrl/camera_motion_control.py -------------------------------------------------------------------------------- /sgm/motionctrl/modified_svd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/motionctrl/modified_svd.py -------------------------------------------------------------------------------- /sgm/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/sgm/util.py -------------------------------------------------------------------------------- /workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/workflow.json -------------------------------------------------------------------------------- /workflow_video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojie/ComfyUI-MotionCtrl-SVD/HEAD/workflow_video.json --------------------------------------------------------------------------------