├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── configs └── lvcd.yaml ├── examples └── lvcd_test_example_01.json ├── inference ├── model_hack.py ├── sample_func.py └── test │ └── sample_1 │ └── sample_1.mp4 ├── models ├── csvd.py └── layers.py ├── nodes.py ├── requirements.txt └── sgm ├── __init__.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 │ ├── loss.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 └── util.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/__init__.py -------------------------------------------------------------------------------- /configs/lvcd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/configs/lvcd.yaml -------------------------------------------------------------------------------- /examples/lvcd_test_example_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/examples/lvcd_test_example_01.json -------------------------------------------------------------------------------- /inference/model_hack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/inference/model_hack.py -------------------------------------------------------------------------------- /inference/sample_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/inference/sample_func.py -------------------------------------------------------------------------------- /inference/test/sample_1/sample_1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/inference/test/sample_1/sample_1.mp4 -------------------------------------------------------------------------------- /models/csvd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/models/csvd.py -------------------------------------------------------------------------------- /models/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/models/layers.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/nodes.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/requirements.txt -------------------------------------------------------------------------------- /sgm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/__init__.py -------------------------------------------------------------------------------- /sgm/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/models/__init__.py -------------------------------------------------------------------------------- /sgm/models/autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/models/autoencoder.py -------------------------------------------------------------------------------- /sgm/models/diffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/models/diffusion.py -------------------------------------------------------------------------------- /sgm/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/__init__.py -------------------------------------------------------------------------------- /sgm/modules/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/attention.py -------------------------------------------------------------------------------- /sgm/modules/autoencoding/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sgm/modules/autoencoding/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/autoencoding/losses/__init__.py -------------------------------------------------------------------------------- /sgm/modules/autoencoding/losses/discriminator_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/autoencoding/losses/discriminator_loss.py -------------------------------------------------------------------------------- /sgm/modules/autoencoding/losses/lpips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/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/kijai/ComfyUI-LVCDWrapper/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/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/autoencoding/lpips/loss/lpips.py -------------------------------------------------------------------------------- /sgm/modules/autoencoding/lpips/model/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/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/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/autoencoding/lpips/model/model.py -------------------------------------------------------------------------------- /sgm/modules/autoencoding/lpips/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/autoencoding/lpips/util.py -------------------------------------------------------------------------------- /sgm/modules/autoencoding/lpips/vqperceptual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/autoencoding/lpips/vqperceptual.py -------------------------------------------------------------------------------- /sgm/modules/autoencoding/regularizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/autoencoding/regularizers/__init__.py -------------------------------------------------------------------------------- /sgm/modules/autoencoding/regularizers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/autoencoding/regularizers/base.py -------------------------------------------------------------------------------- /sgm/modules/autoencoding/regularizers/quantize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/autoencoding/regularizers/quantize.py -------------------------------------------------------------------------------- /sgm/modules/autoencoding/temporal_ae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/autoencoding/temporal_ae.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/denoiser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/diffusionmodules/denoiser.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/denoiser_scaling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/diffusionmodules/denoiser_scaling.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/denoiser_weighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/diffusionmodules/denoiser_weighting.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/discretizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/diffusionmodules/discretizer.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/guiders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/diffusionmodules/guiders.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/diffusionmodules/loss.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/loss_weighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/diffusionmodules/loss_weighting.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/diffusionmodules/model.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/openaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/diffusionmodules/openaimodel.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/diffusionmodules/sampling.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/sampling_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/diffusionmodules/sampling_utils.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/sigma_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/diffusionmodules/sigma_sampling.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/diffusionmodules/util.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/video_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/diffusionmodules/video_model.py -------------------------------------------------------------------------------- /sgm/modules/diffusionmodules/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/diffusionmodules/wrappers.py -------------------------------------------------------------------------------- /sgm/modules/distributions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sgm/modules/distributions/distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/distributions/distributions.py -------------------------------------------------------------------------------- /sgm/modules/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/ema.py -------------------------------------------------------------------------------- /sgm/modules/encoders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sgm/modules/encoders/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/encoders/modules.py -------------------------------------------------------------------------------- /sgm/modules/video_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/modules/video_attention.py -------------------------------------------------------------------------------- /sgm/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-LVCDWrapper/HEAD/sgm/util.py --------------------------------------------------------------------------------