├── LICENSE ├── README.md ├── app.py ├── examples ├── 635499.jpg └── 752538.jpg ├── intro_teaser.png ├── modules ├── attention_processors.py ├── sparse_control_encoder.py ├── transformer_temporal.py └── unet_spatio_temporal_condition_edit.py ├── pipelines └── pipeline_framepainter.py ├── requirements.txt └── utils ├── attention_utils.py └── scheduling_euler_discrete_karras_fix.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/FramePainter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/FramePainter/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/FramePainter/HEAD/app.py -------------------------------------------------------------------------------- /examples/635499.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/FramePainter/HEAD/examples/635499.jpg -------------------------------------------------------------------------------- /examples/752538.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/FramePainter/HEAD/examples/752538.jpg -------------------------------------------------------------------------------- /intro_teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/FramePainter/HEAD/intro_teaser.png -------------------------------------------------------------------------------- /modules/attention_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/FramePainter/HEAD/modules/attention_processors.py -------------------------------------------------------------------------------- /modules/sparse_control_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/FramePainter/HEAD/modules/sparse_control_encoder.py -------------------------------------------------------------------------------- /modules/transformer_temporal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/FramePainter/HEAD/modules/transformer_temporal.py -------------------------------------------------------------------------------- /modules/unet_spatio_temporal_condition_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/FramePainter/HEAD/modules/unet_spatio_temporal_condition_edit.py -------------------------------------------------------------------------------- /pipelines/pipeline_framepainter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/FramePainter/HEAD/pipelines/pipeline_framepainter.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/FramePainter/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/attention_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/FramePainter/HEAD/utils/attention_utils.py -------------------------------------------------------------------------------- /utils/scheduling_euler_discrete_karras_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBYBZhang/FramePainter/HEAD/utils/scheduling_euler_discrete_karras_fix.py --------------------------------------------------------------------------------