diffusers 0.34.0__py3-none-any.whl → 0.35.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- diffusers/__init__.py +98 -1
- diffusers/callbacks.py +35 -0
- diffusers/commands/custom_blocks.py +134 -0
- diffusers/commands/diffusers_cli.py +2 -0
- diffusers/commands/fp16_safetensors.py +1 -1
- diffusers/configuration_utils.py +11 -2
- diffusers/dependency_versions_table.py +3 -3
- diffusers/guiders/__init__.py +41 -0
- diffusers/guiders/adaptive_projected_guidance.py +188 -0
- diffusers/guiders/auto_guidance.py +190 -0
- diffusers/guiders/classifier_free_guidance.py +141 -0
- diffusers/guiders/classifier_free_zero_star_guidance.py +152 -0
- diffusers/guiders/frequency_decoupled_guidance.py +327 -0
- diffusers/guiders/guider_utils.py +309 -0
- diffusers/guiders/perturbed_attention_guidance.py +271 -0
- diffusers/guiders/skip_layer_guidance.py +262 -0
- diffusers/guiders/smoothed_energy_guidance.py +251 -0
- diffusers/guiders/tangential_classifier_free_guidance.py +143 -0
- diffusers/hooks/__init__.py +17 -0
- diffusers/hooks/_common.py +56 -0
- diffusers/hooks/_helpers.py +293 -0
- diffusers/hooks/faster_cache.py +7 -6
- diffusers/hooks/first_block_cache.py +259 -0
- diffusers/hooks/group_offloading.py +292 -286
- diffusers/hooks/hooks.py +56 -1
- diffusers/hooks/layer_skip.py +263 -0
- diffusers/hooks/layerwise_casting.py +2 -7
- diffusers/hooks/pyramid_attention_broadcast.py +14 -11
- diffusers/hooks/smoothed_energy_guidance_utils.py +167 -0
- diffusers/hooks/utils.py +43 -0
- diffusers/loaders/__init__.py +6 -0
- diffusers/loaders/ip_adapter.py +255 -4
- diffusers/loaders/lora_base.py +63 -30
- diffusers/loaders/lora_conversion_utils.py +434 -53
- diffusers/loaders/lora_pipeline.py +834 -37
- diffusers/loaders/peft.py +28 -5
- diffusers/loaders/single_file_model.py +44 -11
- diffusers/loaders/single_file_utils.py +170 -2
- diffusers/loaders/transformer_flux.py +9 -10
- diffusers/loaders/transformer_sd3.py +6 -1
- diffusers/loaders/unet.py +22 -5
- diffusers/loaders/unet_loader_utils.py +5 -2
- diffusers/models/__init__.py +8 -0
- diffusers/models/attention.py +484 -3
- diffusers/models/attention_dispatch.py +1218 -0
- diffusers/models/attention_processor.py +105 -663
- diffusers/models/auto_model.py +2 -2
- diffusers/models/autoencoders/__init__.py +1 -0
- diffusers/models/autoencoders/autoencoder_dc.py +14 -1
- diffusers/models/autoencoders/autoencoder_kl.py +1 -1
- diffusers/models/autoencoders/autoencoder_kl_cosmos.py +3 -1
- diffusers/models/autoencoders/autoencoder_kl_qwenimage.py +1070 -0
- diffusers/models/autoencoders/autoencoder_kl_wan.py +370 -40
- diffusers/models/cache_utils.py +31 -9
- diffusers/models/controlnets/controlnet_flux.py +5 -5
- diffusers/models/controlnets/controlnet_union.py +4 -4
- diffusers/models/embeddings.py +26 -34
- diffusers/models/model_loading_utils.py +233 -1
- diffusers/models/modeling_flax_utils.py +1 -2
- diffusers/models/modeling_utils.py +159 -94
- diffusers/models/transformers/__init__.py +2 -0
- diffusers/models/transformers/transformer_chroma.py +16 -117
- diffusers/models/transformers/transformer_cogview4.py +36 -2
- diffusers/models/transformers/transformer_cosmos.py +11 -4
- diffusers/models/transformers/transformer_flux.py +372 -132
- diffusers/models/transformers/transformer_hunyuan_video.py +6 -0
- diffusers/models/transformers/transformer_ltx.py +104 -23
- diffusers/models/transformers/transformer_qwenimage.py +645 -0
- diffusers/models/transformers/transformer_skyreels_v2.py +607 -0
- diffusers/models/transformers/transformer_wan.py +298 -85
- diffusers/models/transformers/transformer_wan_vace.py +15 -21
- diffusers/models/unets/unet_2d_condition.py +2 -1
- diffusers/modular_pipelines/__init__.py +83 -0
- diffusers/modular_pipelines/components_manager.py +1068 -0
- diffusers/modular_pipelines/flux/__init__.py +66 -0
- diffusers/modular_pipelines/flux/before_denoise.py +689 -0
- diffusers/modular_pipelines/flux/decoders.py +109 -0
- diffusers/modular_pipelines/flux/denoise.py +227 -0
- diffusers/modular_pipelines/flux/encoders.py +412 -0
- diffusers/modular_pipelines/flux/modular_blocks.py +181 -0
- diffusers/modular_pipelines/flux/modular_pipeline.py +59 -0
- diffusers/modular_pipelines/modular_pipeline.py +2446 -0
- diffusers/modular_pipelines/modular_pipeline_utils.py +672 -0
- diffusers/modular_pipelines/node_utils.py +665 -0
- diffusers/modular_pipelines/stable_diffusion_xl/__init__.py +77 -0
- diffusers/modular_pipelines/stable_diffusion_xl/before_denoise.py +1874 -0
- diffusers/modular_pipelines/stable_diffusion_xl/decoders.py +208 -0
- diffusers/modular_pipelines/stable_diffusion_xl/denoise.py +771 -0
- diffusers/modular_pipelines/stable_diffusion_xl/encoders.py +887 -0
- diffusers/modular_pipelines/stable_diffusion_xl/modular_blocks.py +380 -0
- diffusers/modular_pipelines/stable_diffusion_xl/modular_pipeline.py +365 -0
- diffusers/modular_pipelines/wan/__init__.py +66 -0
- diffusers/modular_pipelines/wan/before_denoise.py +365 -0
- diffusers/modular_pipelines/wan/decoders.py +105 -0
- diffusers/modular_pipelines/wan/denoise.py +261 -0
- diffusers/modular_pipelines/wan/encoders.py +242 -0
- diffusers/modular_pipelines/wan/modular_blocks.py +144 -0
- diffusers/modular_pipelines/wan/modular_pipeline.py +90 -0
- diffusers/pipelines/__init__.py +31 -0
- diffusers/pipelines/audioldm2/pipeline_audioldm2.py +2 -3
- diffusers/pipelines/auto_pipeline.py +17 -13
- diffusers/pipelines/chroma/pipeline_chroma.py +5 -5
- diffusers/pipelines/chroma/pipeline_chroma_img2img.py +5 -5
- diffusers/pipelines/cogvideo/pipeline_cogvideox.py +9 -8
- diffusers/pipelines/cogvideo/pipeline_cogvideox_fun_control.py +9 -8
- diffusers/pipelines/cogvideo/pipeline_cogvideox_image2video.py +10 -9
- diffusers/pipelines/cogvideo/pipeline_cogvideox_video2video.py +9 -8
- diffusers/pipelines/cogview4/pipeline_cogview4.py +16 -15
- diffusers/pipelines/controlnet/pipeline_controlnet_blip_diffusion.py +3 -2
- diffusers/pipelines/controlnet/pipeline_controlnet_union_inpaint_sd_xl.py +212 -93
- diffusers/pipelines/controlnet/pipeline_controlnet_union_sd_xl.py +7 -3
- diffusers/pipelines/controlnet/pipeline_controlnet_union_sd_xl_img2img.py +194 -92
- diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_cycle_diffusion.py +1 -1
- diffusers/pipelines/dit/pipeline_dit.py +3 -1
- diffusers/pipelines/flux/__init__.py +4 -0
- diffusers/pipelines/flux/pipeline_flux.py +34 -26
- diffusers/pipelines/flux/pipeline_flux_control.py +8 -8
- diffusers/pipelines/flux/pipeline_flux_control_img2img.py +1 -1
- diffusers/pipelines/flux/pipeline_flux_control_inpaint.py +1 -1
- diffusers/pipelines/flux/pipeline_flux_controlnet.py +1 -1
- diffusers/pipelines/flux/pipeline_flux_controlnet_image_to_image.py +1 -1
- diffusers/pipelines/flux/pipeline_flux_controlnet_inpainting.py +1 -1
- diffusers/pipelines/flux/pipeline_flux_fill.py +1 -1
- diffusers/pipelines/flux/pipeline_flux_img2img.py +1 -1
- diffusers/pipelines/flux/pipeline_flux_inpaint.py +1 -1
- diffusers/pipelines/flux/pipeline_flux_kontext.py +1134 -0
- diffusers/pipelines/flux/pipeline_flux_kontext_inpaint.py +1460 -0
- diffusers/pipelines/flux/pipeline_flux_prior_redux.py +1 -1
- diffusers/pipelines/flux/pipeline_output.py +6 -4
- diffusers/pipelines/hidream_image/pipeline_hidream_image.py +5 -5
- diffusers/pipelines/hunyuan_video/pipeline_hunyuan_video.py +25 -24
- diffusers/pipelines/ltx/pipeline_ltx.py +13 -12
- diffusers/pipelines/ltx/pipeline_ltx_condition.py +10 -9
- diffusers/pipelines/ltx/pipeline_ltx_image2video.py +13 -12
- diffusers/pipelines/mochi/pipeline_mochi.py +9 -8
- diffusers/pipelines/pipeline_flax_utils.py +2 -2
- diffusers/pipelines/pipeline_loading_utils.py +24 -2
- diffusers/pipelines/pipeline_utils.py +22 -15
- diffusers/pipelines/pixart_alpha/pipeline_pixart_alpha.py +3 -1
- diffusers/pipelines/pixart_alpha/pipeline_pixart_sigma.py +20 -0
- diffusers/pipelines/qwenimage/__init__.py +55 -0
- diffusers/pipelines/qwenimage/pipeline_output.py +21 -0
- diffusers/pipelines/qwenimage/pipeline_qwenimage.py +726 -0
- diffusers/pipelines/qwenimage/pipeline_qwenimage_edit.py +882 -0
- diffusers/pipelines/qwenimage/pipeline_qwenimage_img2img.py +829 -0
- diffusers/pipelines/qwenimage/pipeline_qwenimage_inpaint.py +1015 -0
- diffusers/pipelines/sana/pipeline_sana_sprint.py +5 -5
- diffusers/pipelines/skyreels_v2/__init__.py +59 -0
- diffusers/pipelines/skyreels_v2/pipeline_output.py +20 -0
- diffusers/pipelines/skyreels_v2/pipeline_skyreels_v2.py +610 -0
- diffusers/pipelines/skyreels_v2/pipeline_skyreels_v2_diffusion_forcing.py +978 -0
- diffusers/pipelines/skyreels_v2/pipeline_skyreels_v2_diffusion_forcing_i2v.py +1059 -0
- diffusers/pipelines/skyreels_v2/pipeline_skyreels_v2_diffusion_forcing_v2v.py +1063 -0
- diffusers/pipelines/skyreels_v2/pipeline_skyreels_v2_i2v.py +745 -0
- diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion.py +2 -1
- diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion_inpaint.py +1 -1
- diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion_upscale.py +1 -1
- diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion.py +2 -1
- diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3.py +6 -5
- diffusers/pipelines/wan/pipeline_wan.py +78 -20
- diffusers/pipelines/wan/pipeline_wan_i2v.py +112 -32
- diffusers/pipelines/wan/pipeline_wan_vace.py +1 -2
- diffusers/quantizers/__init__.py +1 -177
- diffusers/quantizers/base.py +11 -0
- diffusers/quantizers/gguf/utils.py +92 -3
- diffusers/quantizers/pipe_quant_config.py +202 -0
- diffusers/quantizers/torchao/torchao_quantizer.py +26 -0
- diffusers/schedulers/scheduling_deis_multistep.py +8 -1
- diffusers/schedulers/scheduling_dpmsolver_multistep.py +6 -0
- diffusers/schedulers/scheduling_dpmsolver_singlestep.py +6 -0
- diffusers/schedulers/scheduling_scm.py +0 -1
- diffusers/schedulers/scheduling_unipc_multistep.py +10 -1
- diffusers/schedulers/scheduling_utils.py +2 -2
- diffusers/schedulers/scheduling_utils_flax.py +1 -1
- diffusers/training_utils.py +78 -0
- diffusers/utils/__init__.py +10 -0
- diffusers/utils/constants.py +4 -0
- diffusers/utils/dummy_pt_objects.py +312 -0
- diffusers/utils/dummy_torch_and_transformers_objects.py +255 -0
- diffusers/utils/dynamic_modules_utils.py +84 -25
- diffusers/utils/hub_utils.py +33 -17
- diffusers/utils/import_utils.py +70 -0
- diffusers/utils/peft_utils.py +11 -8
- diffusers/utils/testing_utils.py +136 -10
- diffusers/utils/torch_utils.py +18 -0
- {diffusers-0.34.0.dist-info → diffusers-0.35.0.dist-info}/METADATA +6 -6
- {diffusers-0.34.0.dist-info → diffusers-0.35.0.dist-info}/RECORD +191 -127
- {diffusers-0.34.0.dist-info → diffusers-0.35.0.dist-info}/LICENSE +0 -0
- {diffusers-0.34.0.dist-info → diffusers-0.35.0.dist-info}/WHEEL +0 -0
- {diffusers-0.34.0.dist-info → diffusers-0.35.0.dist-info}/entry_points.txt +0 -0
- {diffusers-0.34.0.dist-info → diffusers-0.35.0.dist-info}/top_level.txt +0 -0
@@ -1,82 +1,102 @@
|
|
1
|
-
diffusers/__init__.py,sha256=
|
2
|
-
diffusers/callbacks.py,sha256=
|
3
|
-
diffusers/configuration_utils.py,sha256=
|
1
|
+
diffusers/__init__.py,sha256=roQeK8hnoA8Q0qJIV1Qrcfpcu-29_xDziRskP9zZS6E,50085
|
2
|
+
diffusers/callbacks.py,sha256=9NgQ7QkUncjVR8pbCHEd-PYvf5xKD-QRDmOoAjyzoXY,10282
|
3
|
+
diffusers/configuration_utils.py,sha256=sf1KSxuGJSPo9beQvEXt8PolG0OVXdYF9WDRYssDGug,34942
|
4
4
|
diffusers/dependency_versions_check.py,sha256=PcT_deWuvIKrNkjkCnQKi0ZTWCl77tHC02lhttbqQHM,1271
|
5
|
-
diffusers/dependency_versions_table.py,sha256=
|
5
|
+
diffusers/dependency_versions_table.py,sha256=bncDZx3ZD6Zk863bEQjrq9DuL9KCDEYg93F16orogl0,1766
|
6
6
|
diffusers/image_processor.py,sha256=6qop7filTHdq3L-ZGVWmJMn0-0s4Bg7W-AaAFBNdO0Q,52868
|
7
7
|
diffusers/optimization.py,sha256=CAFI9pabb3C2KD3y_LCr3o_dBISPU_dfDKODtzbkdvs,14741
|
8
8
|
diffusers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
|
-
diffusers/training_utils.py,sha256=
|
9
|
+
diffusers/training_utils.py,sha256=xrMx2prpYWAt5ZyAYxss28t_xVLO-9uin0o02_eeL50,29621
|
10
10
|
diffusers/video_processor.py,sha256=jKcIhqCs4EUcEbKEF23u0TJs1nfZrPwdXKr-YzrZ3O0,5398
|
11
11
|
diffusers/commands/__init__.py,sha256=KQXlWjcjH6qmwD5B6be8kpniSOPbyWZPTghdXrNquXU,920
|
12
|
-
diffusers/commands/
|
12
|
+
diffusers/commands/custom_blocks.py,sha256=zSoGD6xNWEaJdroYHIWHyetEErTOBZILxUOWTe-wDHs,5242
|
13
|
+
diffusers/commands/diffusers_cli.py,sha256=NPeI0w_qB50bKhsITxGENNdQA7bXp5mck7IXMSagxXw,1425
|
13
14
|
diffusers/commands/env.py,sha256=IZ2e2id8ZjNQ-BNEG3qt58TyEsM6Qs337kL5KdZmqZ0,6224
|
14
|
-
diffusers/commands/fp16_safetensors.py,sha256=
|
15
|
+
diffusers/commands/fp16_safetensors.py,sha256=ZSecWvNNT4VLVnKKBNfGgH58HEqf14hVGZbM589kwrs,5415
|
15
16
|
diffusers/experimental/__init__.py,sha256=0C9ExG0XYiGZuzFJkZuJ53K6Ix5ylF2kWe4PGASchtY,38
|
16
17
|
diffusers/experimental/rl/__init__.py,sha256=Gcoznw9rYjfMvswH0seXekKYDAAN1YXXxZ-RWMdzvrE,57
|
17
18
|
diffusers/experimental/rl/value_guided_sampling.py,sha256=a1F7YC--u1OgoGC8WGgi2pDUhYBI6XYnF2-RUzPD3dI,6033
|
18
|
-
diffusers/
|
19
|
-
diffusers/
|
20
|
-
diffusers/
|
21
|
-
diffusers/
|
22
|
-
diffusers/
|
23
|
-
diffusers/
|
24
|
-
diffusers/
|
25
|
-
diffusers/
|
26
|
-
diffusers/
|
27
|
-
diffusers/
|
28
|
-
diffusers/
|
29
|
-
diffusers/
|
19
|
+
diffusers/guiders/__init__.py,sha256=eJD483D9pOC96HoGCCp1RXo-lW-lb3aTY893Z2UIPXM,1647
|
20
|
+
diffusers/guiders/adaptive_projected_guidance.py,sha256=xKUS4-B8mI7vFRckHN8YKoVQZa0n4l2ymu1p4nDIxMA,7466
|
21
|
+
diffusers/guiders/auto_guidance.py,sha256=XMFZMbou9YmbixvY9xgS7PYqSdBOUUk3IUj4EihKfEs,8821
|
22
|
+
diffusers/guiders/classifier_free_guidance.py,sha256=Jz2_G66U3CssWYhIdGbcCH6YsfrzMG1xlBhp1z7-1Eo,6401
|
23
|
+
diffusers/guiders/classifier_free_zero_star_guidance.py,sha256=2WjWnYkt0NPTond63UOPs4ItDjpFi4h5f9cxcdZ7Kes,6458
|
24
|
+
diffusers/guiders/frequency_decoupled_guidance.py,sha256=C5T2F3IHsyQHJ-Kcu3E0dD3gE5IbGSZAxW7PYJepFIM,16875
|
25
|
+
diffusers/guiders/guider_utils.py,sha256=f3pT6SzfTJapiAyPV75Am8ZZSQFTDD8wT6w1JpFztIM,14898
|
26
|
+
diffusers/guiders/perturbed_attention_guidance.py,sha256=tfHKwmxAdaYHDHJnzUXeHM-CbBzuULgMod1krt4GHes,13303
|
27
|
+
diffusers/guiders/skip_layer_guidance.py,sha256=PuiURv_J_xkqJAKL_wa5fqA3607j2qr2eZr3WobSkbo,12855
|
28
|
+
diffusers/guiders/smoothed_energy_guidance.py,sha256=paMqC7OaiWrpeU0i8BgAr_d0WoSm1NO-Ustf7M8W5Vg,12391
|
29
|
+
diffusers/guiders/tangential_classifier_free_guidance.py,sha256=0sDrh4D928pgxB5zkQW57HTXO-hxj96wNk68NQskTgE,5665
|
30
|
+
diffusers/hooks/__init__.py,sha256=641xb0eYsaV_telHK4UlvCjQX-hJQxLraKckMwuBuuE,1267
|
31
|
+
diffusers/hooks/_common.py,sha256=5RaEdKFVQsVUzYvC0IDcgzSYrhgRPSBmVS3lGofpXEk,2118
|
32
|
+
diffusers/hooks/_helpers.py,sha256=e_hA6tGdSuqIbQTeeXvh0OqI4NBDPykUEfrAxDcVJas,10640
|
33
|
+
diffusers/hooks/faster_cache.py,sha256=grbt8SqMn5gW6cd4t2lgs7ZkKeAzZEAH92d7GPAx8rw,35059
|
34
|
+
diffusers/hooks/first_block_cache.py,sha256=a1gPnVo1CwsORPuxNXoYFUgLvhU2vUusfgyL_LWH2M4,11314
|
35
|
+
diffusers/hooks/group_offloading.py,sha256=SGi5bhhyvTe2rYhTYhjxEgK0K3TbjqZyYE5VdJwRq2U,42617
|
36
|
+
diffusers/hooks/hooks.py,sha256=g5HMY3CKe0VA-CLzRc50TyxVL6PSiXFUGMXuX8p7PgI,11120
|
37
|
+
diffusers/hooks/layer_skip.py,sha256=5Rt4m55qOdrW7FLaoz6egaivf6vtU6jD1ztP1wiHQHw,11938
|
38
|
+
diffusers/hooks/layerwise_casting.py,sha256=-qprS9wLEEzlIFqdsRzbvud7lLMEmP0h8SDJLmCGnN0,10459
|
39
|
+
diffusers/hooks/pyramid_attention_broadcast.py,sha256=v5ZnvHF0vWh1xKks25nsb01y2SvbSI-xggurmbMIVS8,15586
|
40
|
+
diffusers/hooks/smoothed_energy_guidance_utils.py,sha256=8kwsooCrOSnMhYbWGkOwDthc6wEugNuiYOSW4CK_tEk,7428
|
41
|
+
diffusers/hooks/utils.py,sha256=tAfigFPYu7mo-poB3xO8-BhzUeSt8UvF_2tywegCwAA,1848
|
42
|
+
diffusers/loaders/__init__.py,sha256=gN8qMqOocLyE4-IxHvA3nAdjz6raYHJ8_wu-uaAk4Cg,5522
|
43
|
+
diffusers/loaders/ip_adapter.py,sha256=K4w-Nizr6YNOq4ZOyH3oTo3CdUIj432cTF7X_nWVgpI,57233
|
44
|
+
diffusers/loaders/lora_base.py,sha256=i0w4XeOOHUsz09xvgTosXTOWGkUQDnsqoucRUvVoGXM,45056
|
45
|
+
diffusers/loaders/lora_conversion_utils.py,sha256=Kul7roxt44iltmjPBVCrmJfNjwvH6rgOGSbiMR0dzkw,110182
|
46
|
+
diffusers/loaders/lora_pipeline.py,sha256=J8QBsHKkuWVMuzTptfnADtkmOgnSTjudxMs_ImJK5uI,326664
|
47
|
+
diffusers/loaders/peft.py,sha256=J7IG4xkWYsJMp1i5MTENmuS8XcqGje4cjFTMFhsjiuA,38939
|
30
48
|
diffusers/loaders/single_file.py,sha256=NyDO7tx2ASAENP5rXsWKxpOD320L24wl4QqpPixYYLE,25003
|
31
|
-
diffusers/loaders/single_file_model.py,sha256=
|
32
|
-
diffusers/loaders/single_file_utils.py,sha256=
|
49
|
+
diffusers/loaders/single_file_model.py,sha256=Id2RtAyYR4YHoVqYUtqcGNbZAVRAIMp15spCYWgnGGk,21816
|
50
|
+
diffusers/loaders/single_file_utils.py,sha256=cfK8g_JLQ0FjmtxxJbIcdrHtbnpOnpPqvnrdG75Aawo,163852
|
33
51
|
diffusers/loaders/textual_inversion.py,sha256=Yh4Mw-3EAUWaQpDXptIMuNbyAYhNRir-irqoHSPvOx8,26925
|
34
|
-
diffusers/loaders/transformer_flux.py,sha256=
|
35
|
-
diffusers/loaders/transformer_sd3.py,sha256=
|
36
|
-
diffusers/loaders/unet.py,sha256=
|
37
|
-
diffusers/loaders/unet_loader_utils.py,sha256=
|
52
|
+
diffusers/loaders/transformer_flux.py,sha256=XakxzS3znQhzp-l-PjOtmQ-DCKw6cElMXvMRdedREAc,8021
|
53
|
+
diffusers/loaders/transformer_sd3.py,sha256=sUqwRuIPyvBvOYfe6DqxoB8B43dlJB8_099bRUt2Yys,8636
|
54
|
+
diffusers/loaders/unet.py,sha256=V77VNn2W46FDcc30-Dbf1_p6_thy5MWLa6x18uUZEUY,45810
|
55
|
+
diffusers/loaders/unet_loader_utils.py,sha256=uXO9JUWxhpQq_JzFEi2QohxySdJ3e57AqBYqkzkRIk4,6271
|
38
56
|
diffusers/loaders/utils.py,sha256=tknQHwXnDlc7piArCSDZjFFdgJI3DY6qfffsZlIxLnY,2423
|
39
|
-
diffusers/models/__init__.py,sha256=
|
57
|
+
diffusers/models/__init__.py,sha256=EYlrNtK3-O_PuQqkxi1pJ2JmOPZ0eIpX6Q2HKBl_z-w,11175
|
40
58
|
diffusers/models/activations.py,sha256=qxdn6OROfUvxyxgpm6M2VDKeJxH6mDsUI_xP4S3iw6s,6511
|
41
59
|
diffusers/models/adapter.py,sha256=NDnqBqD53fg2fWWHt-LUHDyhuH6J-4R7PoStr2ggp-4,24507
|
42
|
-
diffusers/models/attention.py,sha256=
|
60
|
+
diffusers/models/attention.py,sha256=wxrklJ6tDweVrTFEJ2oCbcUIfdRha4irPQ602wNTEMo,73123
|
61
|
+
diffusers/models/attention_dispatch.py,sha256=e7Bm5EWvvdPw0CT-NDvndHD1QahIOmGB9u2-g-rrahM,42265
|
43
62
|
diffusers/models/attention_flax.py,sha256=NJTCmsALDnRScOy2EG7r6fZGXaNrJGBVTHQxAluWZEs,20392
|
44
|
-
diffusers/models/attention_processor.py,sha256=
|
45
|
-
diffusers/models/auto_model.py,sha256=
|
46
|
-
diffusers/models/cache_utils.py,sha256=
|
63
|
+
diffusers/models/attention_processor.py,sha256=1WrbKRIhcciXVorgI126bFQJuaQXbeYZbVY8b1bJ35A,239691
|
64
|
+
diffusers/models/auto_model.py,sha256=6H0dnsr9atn-kgsEjnjLVpS6f3kzFDXCLhKUusxXdQE,11147
|
65
|
+
diffusers/models/cache_utils.py,sha256=h4QDKKM_rQoSmO-Hu4nmpijj1WmVfqiOtcMYv3zj8KM,5196
|
47
66
|
diffusers/models/controlnet.py,sha256=RG8RSUtkCk77Dxw6e1nc2o6vdikTVKtskxgALI7ijsg,5774
|
48
67
|
diffusers/models/controlnet_flux.py,sha256=bVej9TQJhszOMJOtHqzh2kwK1PLseuwiGSYdbT6b7f4,3442
|
49
68
|
diffusers/models/controlnet_sd3.py,sha256=5cPugxXJrWroX4bjIG_DQGMlOWiFlwl2sMZz6pTSLTc,3377
|
50
69
|
diffusers/models/controlnet_sparsectrl.py,sha256=ewfJCGXU-bvthUH2OP93RtMI3zZFNfnioYs8YSa-tmo,5904
|
51
70
|
diffusers/models/downsampling.py,sha256=ss0au04TEj_eMz1vCgi20a1ZGoUEOLgC1zxeQGTN85s,15829
|
52
|
-
diffusers/models/embeddings.py,sha256=
|
71
|
+
diffusers/models/embeddings.py,sha256=2ugs0Nw39LIvoouGfwqQLj54wdBWUMdR29GS9cg8rME,103702
|
53
72
|
diffusers/models/embeddings_flax.py,sha256=FMuPD4wNU0wUXOaih81VcFjkKgOg4lyWi7hYIlmnYT4,4361
|
54
73
|
diffusers/models/lora.py,sha256=kSZzH-taCGJCSH9PHYEcS1M1LXUGUpIti-taQxRRnS4,18851
|
55
|
-
diffusers/models/model_loading_utils.py,sha256=
|
74
|
+
diffusers/models/model_loading_utils.py,sha256=Io5Pspe89GsTpgTRHRrIJVlxrtS83b6RKB-9WT3mXVk,30305
|
56
75
|
diffusers/models/modeling_flax_pytorch_utils.py,sha256=f-j9Y-AhcrRp9UvLldjZOHPYBluMC5BXwxmAi6gS1rA,5332
|
57
|
-
diffusers/models/modeling_flax_utils.py,sha256=
|
76
|
+
diffusers/models/modeling_flax_utils.py,sha256=AK52uROOQKfTXRsEJx41kFRm6GzQGFFtwlKUYgDYQHg,26923
|
58
77
|
diffusers/models/modeling_outputs.py,sha256=XH3sJO34MRW6UuWqqKo05mVqxGSBFRazpap_-YLwO2I,1042
|
59
78
|
diffusers/models/modeling_pytorch_flax_utils.py,sha256=Hz5IoBV0vygRekVw8OZc9Jji22gyuEZ84uAWzXpYLvs,6973
|
60
|
-
diffusers/models/modeling_utils.py,sha256=
|
79
|
+
diffusers/models/modeling_utils.py,sha256=IlQSZYWyxrVpYqJQstp9suVrbRWNjoe0s23QskQbM1U,89143
|
61
80
|
diffusers/models/normalization.py,sha256=Hke3BXA1GYAVBKrkJi7X8A0DLT6_NqP2dv2Q7lZFTRU,24616
|
62
81
|
diffusers/models/resnet.py,sha256=DIFQHFSh8F0NcrAGjvxaca1fK8ZoArlpTtkTTLm50VU,32254
|
63
82
|
diffusers/models/resnet_flax.py,sha256=aXKT-L0yMwFZz-xhSsbLsB5n7M7bNOE2se6RJhPI9Tk,4021
|
64
83
|
diffusers/models/upsampling.py,sha256=7oUwSN_b8Wsl3nTuxWgZyXiIid5FOBnTpdeGwS64Xfk,19573
|
65
84
|
diffusers/models/vae_flax.py,sha256=862gk7zaRCWBHNY1ZDIRJl7rnoHLWJBJyt6wN4anZ4w,31950
|
66
85
|
diffusers/models/vq_model.py,sha256=J6dVRtVAQNUtHbl5LY5KjHYYsab55AbuoATHQttDGX4,1524
|
67
|
-
diffusers/models/autoencoders/__init__.py,sha256=
|
86
|
+
diffusers/models/autoencoders/__init__.py,sha256=XrImN0hDzMiQm1ZLLP-btcgfXCPsBtGhBixp-pKPjv4,915
|
68
87
|
diffusers/models/autoencoders/autoencoder_asym_kl.py,sha256=_67adzZxCMsV8N7s0JzOCSOz4_Kewb49c0CuA2KZS-I,7788
|
69
|
-
diffusers/models/autoencoders/autoencoder_dc.py,sha256=
|
70
|
-
diffusers/models/autoencoders/autoencoder_kl.py,sha256=
|
88
|
+
diffusers/models/autoencoders/autoencoder_dc.py,sha256=Eb1ZB9ZwxEz9pA8gCpxV3fMri1XOwD-vLMUsPFL3Kv8,31200
|
89
|
+
diffusers/models/autoencoders/autoencoder_kl.py,sha256=HqX20_Jze8ZUKp1e376MfLXgboboWfRXQtm6SvS9Sks,25078
|
71
90
|
diffusers/models/autoencoders/autoencoder_kl_allegro.py,sha256=N1tLNJjqtCOGPQREU647RA5LdUsl4fgK2Uiii-mYx2c,45152
|
72
91
|
diffusers/models/autoencoders/autoencoder_kl_cogvideox.py,sha256=YDCPc0NugDpHkw4JKBkrNHd0sOgxBbM0QXgovnAToTU,60406
|
73
|
-
diffusers/models/autoencoders/autoencoder_kl_cosmos.py,sha256=
|
92
|
+
diffusers/models/autoencoders/autoencoder_kl_cosmos.py,sha256=3DgbRsgpkFXR5NkHDgbE8qje6n5mBQW7WdNMTr5nqMo,53736
|
74
93
|
diffusers/models/autoencoders/autoencoder_kl_hunyuan_video.py,sha256=T4ijgoUTrJou5DMnUBkaCnPA7pMZuxutTSHxE31Y3zk,45481
|
75
94
|
diffusers/models/autoencoders/autoencoder_kl_ltx.py,sha256=GQEIy5muXUndwYRH4jlCFUQanbgiUCHLNaEnVcL286g,64433
|
76
95
|
diffusers/models/autoencoders/autoencoder_kl_magvit.py,sha256=6jrWs8thq0DERB2zOsGBIQHPtFFyjYuuekFYM-fhE9I,45098
|
77
96
|
diffusers/models/autoencoders/autoencoder_kl_mochi.py,sha256=EJBSXMnIE4clpodfDKy4tffZbQkC15iYGmlZRowDQHA,46811
|
97
|
+
diffusers/models/autoencoders/autoencoder_kl_qwenimage.py,sha256=HVVhOCD61jEmBufZL9jS5cTHqJPAlnbKYUymrp6joaE,42061
|
78
98
|
diffusers/models/autoencoders/autoencoder_kl_temporal_decoder.py,sha256=qJ52TwMtQQz7QtczEsFLKXVceS7RLDRSvMMZI-RsjIY,14778
|
79
|
-
diffusers/models/autoencoders/autoencoder_kl_wan.py,sha256=
|
99
|
+
diffusers/models/autoencoders/autoencoder_kl_wan.py,sha256=K0q55xoiHsxTjRlrjdO_MSlyzCr_7lzDrhwJsk_-xXE,52618
|
80
100
|
diffusers/models/autoencoders/autoencoder_oobleck.py,sha256=HV30_00e21-mts-JdT9K9Q-s8Uerk_cMD9_OX9uaNtU,17085
|
81
101
|
diffusers/models/autoencoders/autoencoder_tiny.py,sha256=6kLUGAR0fDx7fwy5BiRLaUzkqJg9VQFKUJyisloxF4M,15853
|
82
102
|
diffusers/models/autoencoders/consistency_decoder_vae.py,sha256=3uvrzIR2vEgj0etcRvUiBw8YmCQ5RfQ6RdhX4LcCoeM,19761
|
@@ -85,16 +105,16 @@ diffusers/models/autoencoders/vq_model.py,sha256=wCvrranGbiCR8s4Qhq5qNSy_1BP9PGW
|
|
85
105
|
diffusers/models/controlnets/__init__.py,sha256=oKACrY23NZqmM0Hbl-S_nUuDFyQ4NesJMoKBYPzeK0Y,1058
|
86
106
|
diffusers/models/controlnets/controlnet.py,sha256=dzIASI0h_bNeSjRi3BQTW2K4Jbo8-eQfJ7F5PeOzpsA,43149
|
87
107
|
diffusers/models/controlnets/controlnet_flax.py,sha256=DekqQPnow0gSWDCUlIwcP6ezT16ppiYUGFVn1Ixi0zM,16715
|
88
|
-
diffusers/models/controlnets/controlnet_flux.py,sha256=
|
108
|
+
diffusers/models/controlnets/controlnet_flux.py,sha256=FMqOWrl5HBeI597mgxgJlxmeKmdwDAi3OcQrrFsJXd8,22924
|
89
109
|
diffusers/models/controlnets/controlnet_hunyuan.py,sha256=UCyQL-GtHIQEeEu6bP04eIm-DDhsqG92I3hAJJE_m2g,16928
|
90
110
|
diffusers/models/controlnets/controlnet_sana.py,sha256=2rYVE1EJAE-BavlAWtkkX4zcVk3nrP_BJkG8ewfOYXc,12519
|
91
111
|
diffusers/models/controlnets/controlnet_sd3.py,sha256=E-r-_y2M3sN3sT4rQBm3CYKcTNrYTEvnIVUDqpjzj7c,23227
|
92
112
|
diffusers/models/controlnets/controlnet_sparsectrl.py,sha256=ui450jzQEfI-OUU90nrmb1Oud4lcTmw7aiVMLtF3uTE,38357
|
93
|
-
diffusers/models/controlnets/controlnet_union.py,sha256=
|
113
|
+
diffusers/models/controlnets/controlnet_union.py,sha256=R28jfGxWR6dvMP1jEnIvR-rxQMLYuEgl2douGk2JUxU,41724
|
94
114
|
diffusers/models/controlnets/controlnet_xs.py,sha256=aF13vgEAeCf1UygSzuiktKzA_OrGXPiycRg3YzHKOHg,85416
|
95
115
|
diffusers/models/controlnets/multicontrolnet.py,sha256=VoccQ64iwREXC04DseYLZjub2bdph9y8tBdga4br1XM,9332
|
96
116
|
diffusers/models/controlnets/multicontrolnet_union.py,sha256=o_5BMCsvXUehw7Jni0Fn6e_qNm_66XnAyN4Ull4txrE,10164
|
97
|
-
diffusers/models/transformers/__init__.py,sha256=
|
117
|
+
diffusers/models/transformers/__init__.py,sha256=UR6wS27CwqCs4m8M8qrSlhhuFjICMfumR1-RDto_0Os,2214
|
98
118
|
diffusers/models/transformers/auraflow_transformer_2d.py,sha256=Lnk2i4c0Ay3SZZXiRHIsTvL-IuTyxIhZvyYMK2X0unU,23439
|
99
119
|
diffusers/models/transformers/cogvideox_transformer_3d.py,sha256=gCZBGA7R2kFhf0m-nLxg3eISapfABKxVmzWN09J5rCA,22827
|
100
120
|
diffusers/models/transformers/consisid_transformer_3d.py,sha256=ZT4plc4SnCJZczuKVhFTjws_3gPU6kCxm0-lIwAQA14,36023
|
@@ -110,30 +130,32 @@ diffusers/models/transformers/stable_audio_transformer.py,sha256=ikFDgj4O5rEk2Nx
|
|
110
130
|
diffusers/models/transformers/t5_film_transformer.py,sha256=YicaHEHbkOkh7HLjzj8jzIjLA9MobcolI_3ZyCKETCE,16040
|
111
131
|
diffusers/models/transformers/transformer_2d.py,sha256=9yiEGNq4poMiHaWIh3OfsfB2dsRKlcIqgTNDW_mV3vY,28305
|
112
132
|
diffusers/models/transformers/transformer_allegro.py,sha256=b8fdklklJlmepbUgEwpn83L8AvmhycZao17_-sK2Ehg,17186
|
113
|
-
diffusers/models/transformers/transformer_chroma.py,sha256=
|
133
|
+
diffusers/models/transformers/transformer_chroma.py,sha256=WeHJGwxRS5Ups2ZiN7FDwfSJ7LWj86Wws0nTNl9GAg4,27051
|
114
134
|
diffusers/models/transformers/transformer_cogview3plus.py,sha256=shbvxhjREErZRCl2T16JZC2gnm39PIG6zgyAgMTDNLo,15811
|
115
|
-
diffusers/models/transformers/transformer_cogview4.py,sha256=
|
116
|
-
diffusers/models/transformers/transformer_cosmos.py,sha256=
|
135
|
+
diffusers/models/transformers/transformer_cogview4.py,sha256=8kx6SBHAEws9wS640NAD1wzUndJG9UDrS57-YSWVFcc,34934
|
136
|
+
diffusers/models/transformers/transformer_cosmos.py,sha256=H3Rcw5je76ASarLHSxZ3iD4hLXLT675V1Aw42PFXW4A,24561
|
117
137
|
diffusers/models/transformers/transformer_easyanimate.py,sha256=Z5innEWRbaOVoC16o-h-uobbYI6tPqzFG-S2H_Dohgo,22001
|
118
|
-
diffusers/models/transformers/transformer_flux.py,sha256=
|
138
|
+
diffusers/models/transformers/transformer_flux.py,sha256=TLEdwpt-9u-sDUpuo14T91CwzMsPIBdFrOOURuwo4z4,33319
|
119
139
|
diffusers/models/transformers/transformer_hidream_image.py,sha256=ciuyPRprws2K77apFzuLHmDZADOJ3AzAwsVze3FmR_E,39322
|
120
|
-
diffusers/models/transformers/transformer_hunyuan_video.py,sha256=
|
140
|
+
diffusers/models/transformers/transformer_hunyuan_video.py,sha256=DMVzgTdQv0jrSiJA_qnt4eOcbRfDC_K1W4O9vvrWphw,47084
|
121
141
|
diffusers/models/transformers/transformer_hunyuan_video_framepack.py,sha256=p9RgBqN5SWWqQU_wvEmaPZ2W5sCsYZoiGblqFKg6GpM,18698
|
122
|
-
diffusers/models/transformers/transformer_ltx.py,sha256=
|
142
|
+
diffusers/models/transformers/transformer_ltx.py,sha256=7znlVN1UPdXBR91OXN_zyiwHt895XF71gCocV-BWpVc,22162
|
123
143
|
diffusers/models/transformers/transformer_lumina2.py,sha256=ACu9X7vatGMoiKSZKkEOcbEQjIvZwmqZ6nmHaSkD9Wo,22075
|
124
144
|
diffusers/models/transformers/transformer_mochi.py,sha256=FbNpuQR3MrH7I7CU8tJ_8Nf00Q2VB5hNUpqwuYXS50Y,18521
|
125
145
|
diffusers/models/transformers/transformer_omnigen.py,sha256=nxmuNqRXRG51Mw2G8BNu-DZrRKWMDc3G99DFgPS9yZA,20029
|
146
|
+
diffusers/models/transformers/transformer_qwenimage.py,sha256=Jzhx2Pf8odX8bRQLhPN0tn6STAfc3OpZUfVOxSMFEoY,27644
|
126
147
|
diffusers/models/transformers/transformer_sd3.py,sha256=2Aw1Di240iPngdlg_TZewlgi4WT2fGAOpB5XFa3RmO0,19232
|
148
|
+
diffusers/models/transformers/transformer_skyreels_v2.py,sha256=PpHVausTXRFhm1gQJy_AFdzjtBb3NNThd2oqoPp4pAw,25733
|
127
149
|
diffusers/models/transformers/transformer_temporal.py,sha256=GMn5WUbWWX7ZvyqVhO12g6bID7dnrMndYrDN-UZEI0Q,16812
|
128
|
-
diffusers/models/transformers/transformer_wan.py,sha256=
|
129
|
-
diffusers/models/transformers/transformer_wan_vace.py,sha256=
|
150
|
+
diffusers/models/transformers/transformer_wan.py,sha256=Y3e_j2CUZ0fce9yrkL7rYmDdAazigulkqeYEZEY1Mec,28852
|
151
|
+
diffusers/models/transformers/transformer_wan_vace.py,sha256=KISLOLoYGRlPusyLOJEzjYdckFxFm_adv7b7Jg6jqYM,16477
|
130
152
|
diffusers/models/unets/__init__.py,sha256=srYFA7zEcDY7LxyUB2jz3TdRgsLz8elrWCpT6Y4YXuU,695
|
131
153
|
diffusers/models/unets/unet_1d.py,sha256=tmSBsH3cPzNj9xCQt1zrV2lApufLEB2xiFTcXulE1Wo,10853
|
132
154
|
diffusers/models/unets/unet_1d_blocks.py,sha256=LIuM8MwkcJ0n8wYwS6FBGYSMfl9wYv0-TbQ6FHO6A7k,26829
|
133
155
|
diffusers/models/unets/unet_2d.py,sha256=ue2Xbgmra55kSf6D7sq4b_ZCDr4ZmarrZiGWT4qNNXk,16905
|
134
156
|
diffusers/models/unets/unet_2d_blocks.py,sha256=r7e-UDzbBRdbx4Iusu-fNGmSm70Vf2YkaDRihltn12w,141758
|
135
157
|
diffusers/models/unets/unet_2d_blocks_flax.py,sha256=RWQ-c2gOHFD99nbtWN2TTGvO2khRWNJ6BoQYDg-hqjs,15624
|
136
|
-
diffusers/models/unets/unet_2d_condition.py,sha256=
|
158
|
+
diffusers/models/unets/unet_2d_condition.py,sha256=oe5lCBbRYXw2elVTd-rU9hFMjNFZMRxUcxt2Pu0m5Jw,67092
|
137
159
|
diffusers/models/unets/unet_2d_condition_flax.py,sha256=62kO3PaPNfcPvWbOIL4nws7m_SZ2j4_GMAA1lXVPR4I,22289
|
138
160
|
diffusers/models/unets/unet_3d_blocks.py,sha256=OyEIov5NMa_T9kIWzcMoMfmKZVcgDRbe6vH1Wb4ar9o,51676
|
139
161
|
diffusers/models/unets/unet_3d_condition.py,sha256=_OscxwREczYttMFghevnaGu-LnIZLlV63LiS8HszdkU,34379
|
@@ -143,14 +165,40 @@ diffusers/models/unets/unet_motion_model.py,sha256=5ct4afFiyEQzq-GhDHbO1HcV0rj-Y
|
|
143
165
|
diffusers/models/unets/unet_spatio_temporal_condition.py,sha256=LsBj9J6nltqs2vrkIt-OT4weL1GUxJMmcNx3wTMM-vY,23259
|
144
166
|
diffusers/models/unets/unet_stable_cascade.py,sha256=6fgr1ksDUhAe54xd_4uRHEqbeGzlVnd7R80GyKAG9_4,27229
|
145
167
|
diffusers/models/unets/uvit_2d.py,sha256=0cV3yDVyC1KA9bAMnhcHGGVbT7n9bFl09gX61bcQLeo,17227
|
146
|
-
diffusers/
|
147
|
-
diffusers/
|
168
|
+
diffusers/modular_pipelines/__init__.py,sha256=4IB38VWi4wcXPv0oagT637HSal4GKlN0ejTZhKA9h9g,2774
|
169
|
+
diffusers/modular_pipelines/components_manager.py,sha256=41Ehc9nGxmv_hD_zTxL29TsvZG8-6TPxvHblMSwgBTE,45700
|
170
|
+
diffusers/modular_pipelines/modular_pipeline.py,sha256=urxlWlwVJCWefgEyRZzfN2KJ-pzPzrydrrwdt-lPuIs,107173
|
171
|
+
diffusers/modular_pipelines/modular_pipeline_utils.py,sha256=Y71ovPdYL7IG6fYgUuH7OtFvCh2VIf1vHfrEraBmB4w,26565
|
172
|
+
diffusers/modular_pipelines/node_utils.py,sha256=xKQ2dOtOBnK0IX0q-E9ctE3riYZe84yHtsimej4Werc,25446
|
173
|
+
diffusers/modular_pipelines/flux/__init__.py,sha256=1XBMNhPwmkcCMVSEv-wHwBqNncx9u7Ps_Rf6h9HEVhk,1952
|
174
|
+
diffusers/modular_pipelines/flux/before_denoise.py,sha256=De5S0XHaJWpTGBp5UvrIr8xl_FuiSaO1DYeFFZUKA9I,29142
|
175
|
+
diffusers/modular_pipelines/flux/decoders.py,sha256=Ka4PjOTvFzjWJllgDBJ4wJECxJc6821laHYtw4L2O6s,3911
|
176
|
+
diffusers/modular_pipelines/flux/denoise.py,sha256=L4vAJTh7FaP1CQKBmMRN4Tih8FZyatL6GwmdGxBszKo,8311
|
177
|
+
diffusers/modular_pipelines/flux/encoders.py,sha256=PcV_SMsxl35RPTmBA4sJ3eM-Y3F6tNeTiWO9L1RAnKM,17217
|
178
|
+
diffusers/modular_pipelines/flux/modular_blocks.py,sha256=sp-kAoUEqhTZLfKAl3XBQEWPgDtNVZeHM3_-EAQ7Mgs,6438
|
179
|
+
diffusers/modular_pipelines/flux/modular_pipeline.py,sha256=j6k3Ket-QV7DIqqkKrpZZMYleRV_0rxVxwycLikPOok,1861
|
180
|
+
diffusers/modular_pipelines/stable_diffusion_xl/__init__.py,sha256=LT9U7_-Vk8WOY3K0yZhNOUQ4iebUwZgbT66xX8s1IIE,2437
|
181
|
+
diffusers/modular_pipelines/stable_diffusion_xl/before_denoise.py,sha256=ZAgh-9jqws7-MESw7gLvLlUyAomeqqc0uqaYi2Eck8Y,85999
|
182
|
+
diffusers/modular_pipelines/stable_diffusion_xl/decoders.py,sha256=myNOrC4W9jf9Y7qyClDhiOSKjUGofpWkP2SJ8e39sRY,8195
|
183
|
+
diffusers/modular_pipelines/stable_diffusion_xl/denoise.py,sha256=ZhMEVquHgq9ufTzBSlvHRaYFNLXOv14ipZx-89rMClo,34677
|
184
|
+
diffusers/modular_pipelines/stable_diffusion_xl/encoders.py,sha256=1b3s0gKWk3H_oOl3UhDnUnymQekENVQ3bLZQHP4Ddfw,41281
|
185
|
+
diffusers/modular_pipelines/stable_diffusion_xl/modular_blocks.py,sha256=izE2hG5f9_gvWAHWWdlFooCI5fiG_wN95cpJd-5iXpI,16760
|
186
|
+
diffusers/modular_pipelines/stable_diffusion_xl/modular_pipeline.py,sha256=LsipRIxSFwyg9zsrt_xicQ_yT5lprGhe4MQXJhT2U1U,15628
|
187
|
+
diffusers/modular_pipelines/wan/__init__.py,sha256=ViOGSde0Xrpum0IfynOVGmGiqmugG2C2mvb3g7O3jUw,1939
|
188
|
+
diffusers/modular_pipelines/wan/before_denoise.py,sha256=Lo8ebuHn_k_b67rKYxGkZPcKblrHJWqJdLKExWbqsS8,15571
|
189
|
+
diffusers/modular_pipelines/wan/decoders.py,sha256=K1HdAeRQ4ohEQVZhRdEGiwuXcwgF3lweBtujfWdtiaQ,3632
|
190
|
+
diffusers/modular_pipelines/wan/denoise.py,sha256=xmI6fHZTzA2rxYH1cg-tUbsSqVbEHjbIVTrcc0Qxj8g,10130
|
191
|
+
diffusers/modular_pipelines/wan/encoders.py,sha256=sNuIiu2uuDQc0Pf6BtrLlrXOZtmblH2fFe9uzW26Nrk,9496
|
192
|
+
diffusers/modular_pipelines/wan/modular_blocks.py,sha256=-DTbXRWMcVY5D5OxubKi9LsWa6p_M0dpBfaTb9oi0Dw,4219
|
193
|
+
diffusers/modular_pipelines/wan/modular_pipeline.py,sha256=bqwQclVfRe8lval62b9gGQSJgupTsuWLf2Xs_OH_MOg,2721
|
194
|
+
diffusers/pipelines/__init__.py,sha256=xHqA-fv-UIjv_2lyfjnLVtWWNtJsJ1qfiRjHpz6k-lc,34347
|
195
|
+
diffusers/pipelines/auto_pipeline.py,sha256=Un7C_kIIUpwyqmevasaAWyDSL0f-x7EBYfBue3hQv5s,58379
|
148
196
|
diffusers/pipelines/free_init_utils.py,sha256=SHrGV68cii9sYCKZLbIdBEOB5tANOVbN9vv7KznOlII,7699
|
149
197
|
diffusers/pipelines/free_noise_utils.py,sha256=SlcvpUInyDDOOq7CkzXsjbcsC3Z7nY_JBzy6MJorHc4,29691
|
150
198
|
diffusers/pipelines/onnx_utils.py,sha256=oTRc_iLHEKpf_IGFw_ka1bloAI-XUa6_ASMLW2LAH4w,8810
|
151
|
-
diffusers/pipelines/pipeline_flax_utils.py,sha256=
|
152
|
-
diffusers/pipelines/pipeline_loading_utils.py,sha256=
|
153
|
-
diffusers/pipelines/pipeline_utils.py,sha256=
|
199
|
+
diffusers/pipelines/pipeline_flax_utils.py,sha256=u8wFa0wdJ3CCCVpZdSLCAPDambSNGNLcyArEhiLwuAM,27026
|
200
|
+
diffusers/pipelines/pipeline_loading_utils.py,sha256=RDbQqtx4F2Oog8b7jYC3vm-GfSZpa1UAUBQQVnfe_G4,48069
|
201
|
+
diffusers/pipelines/pipeline_utils.py,sha256=u-KRiPcVriYKHvEL_dT3PvmlBDCQBiqmFUVnexXx8oE,105794
|
154
202
|
diffusers/pipelines/transformers_loading_utils.py,sha256=98wKUHN89Q1nmmat046hgQxLDlnZNj9Ww4TLB5W52pQ,5281
|
155
203
|
diffusers/pipelines/allegro/__init__.py,sha256=T1MLZgDf8Fhh6YunF8a4Ta6NNIqneWsJIvmBhiy1ABM,1290
|
156
204
|
diffusers/pipelines/allegro/pipeline_allegro.py,sha256=6h-lqIRh_nktZAZeorkOdeMwuaS5UCXskIAVrxhQ9nw,44067
|
@@ -171,7 +219,7 @@ diffusers/pipelines/audioldm/__init__.py,sha256=HMUjKqEf7OAtgIeV2CQoGIoDE6oY7b26
|
|
171
219
|
diffusers/pipelines/audioldm/pipeline_audioldm.py,sha256=R4WZVEilSXA339bzZWMFzcpVDnf8cn1L1Vd-CGlNNqQ,26375
|
172
220
|
diffusers/pipelines/audioldm2/__init__.py,sha256=gR7gTyh-YGI4uxTCPnz_LnCGbErpFGtNMEzM_CQdqgE,1605
|
173
221
|
diffusers/pipelines/audioldm2/modeling_audioldm2.py,sha256=SpKP4UVjYRznsInmq4gvobBnX2uTlA4wILzyWRHWdY0,70483
|
174
|
-
diffusers/pipelines/audioldm2/pipeline_audioldm2.py,sha256=
|
222
|
+
diffusers/pipelines/audioldm2/pipeline_audioldm2.py,sha256=v4RIc2FCqd4-5CMN0qvCt0RI3u7sZL1UbLPhsC2bfUo,54782
|
175
223
|
diffusers/pipelines/aura_flow/__init__.py,sha256=TOGRbwqwr7j1XIVGAxIBwAp4lM2zt21C_hYm5dFb76o,1296
|
176
224
|
diffusers/pipelines/aura_flow/pipeline_aura_flow.py,sha256=c2d06A6gdkM09Hciw0An8Hfu5y44bDmggyDptFTe_wU,33217
|
177
225
|
diffusers/pipelines/blip_diffusion/__init__.py,sha256=v_PoaUspuKZG54FdKtITSccYo6eIhMnO0d6n7Pf3JJU,697
|
@@ -180,20 +228,20 @@ diffusers/pipelines/blip_diffusion/modeling_blip2.py,sha256=eBrI0_E7mBN0uctDOHVd
|
|
180
228
|
diffusers/pipelines/blip_diffusion/modeling_ctx_clip.py,sha256=53ggZ2e0gs0Oh7UwpKvSXdrcr70IlYkAUNB-hnkpMYk,9002
|
181
229
|
diffusers/pipelines/blip_diffusion/pipeline_blip_diffusion.py,sha256=mxCrWForS6kYGJ8wkg9Im_Nic0gVwQb2KpfNUdQfM9A,15322
|
182
230
|
diffusers/pipelines/chroma/__init__.py,sha256=iRH8V4N01bnqzev2gozrhjVu1cRhLAn61RNFCBxFzgg,1611
|
183
|
-
diffusers/pipelines/chroma/pipeline_chroma.py,sha256=
|
184
|
-
diffusers/pipelines/chroma/pipeline_chroma_img2img.py,sha256=
|
231
|
+
diffusers/pipelines/chroma/pipeline_chroma.py,sha256=vZ_gr6H4SfZvQFvf2PXl8nMWIXytBlHgQnsBnkWDEQM,44725
|
232
|
+
diffusers/pipelines/chroma/pipeline_chroma_img2img.py,sha256=5-IUqdPIftFAxos3DehF3URoyqE5c9JCDPHZ1hdmwDU,49186
|
185
233
|
diffusers/pipelines/chroma/pipeline_output.py,sha256=_LYDjLRSV0vIaNBSwddFVpWwbNGPQ6E5GkNAccpaOQo,600
|
186
234
|
diffusers/pipelines/cogvideo/__init__.py,sha256=84bmJbrCvjUtEXFgyCKvX5N4HNtAWorMjQTNvWPh8ZU,1816
|
187
|
-
diffusers/pipelines/cogvideo/pipeline_cogvideox.py,sha256=
|
188
|
-
diffusers/pipelines/cogvideo/pipeline_cogvideox_fun_control.py,sha256=
|
189
|
-
diffusers/pipelines/cogvideo/pipeline_cogvideox_image2video.py,sha256=
|
190
|
-
diffusers/pipelines/cogvideo/pipeline_cogvideox_video2video.py,sha256=
|
235
|
+
diffusers/pipelines/cogvideo/pipeline_cogvideox.py,sha256=PCG3T12DYLo1udFzAee4JLegxOq5zsUksREuJtz6OIk,37786
|
236
|
+
diffusers/pipelines/cogvideo/pipeline_cogvideox_fun_control.py,sha256=g10TK41Y_awT48_7JpR3hEI5TQi_6eUiyO8n-EsTMks,40347
|
237
|
+
diffusers/pipelines/cogvideo/pipeline_cogvideox_image2video.py,sha256=lFtN9WK2gRd08ofJGhVBQskcrMw4Y8VQZNKt_gwb2xU,42794
|
238
|
+
diffusers/pipelines/cogvideo/pipeline_cogvideox_video2video.py,sha256=W7875-7mgzPNo9HCyX59H-GB3i7bL_lH35ehYVHhTEs,41401
|
191
239
|
diffusers/pipelines/cogvideo/pipeline_output.py,sha256=QOyumhJJERjm7moyxnYzU_X27hvN9p99MIkjT_Vf1x0,616
|
192
240
|
diffusers/pipelines/cogview3/__init__.py,sha256=ophRMlB8W7AocUEWUJLbmK1o4yJpHEfKvwyDceyMu00,1497
|
193
241
|
diffusers/pipelines/cogview3/pipeline_cogview3plus.py,sha256=oCX9IvHfGfY7UbeYWa8jc1-q7xiVhUDjuYNPfzZUV7E,33881
|
194
242
|
diffusers/pipelines/cogview3/pipeline_output.py,sha256=qU187W2KZY8KloD6E5EOpkbgJOYrsQFSGHyNHKHqwxs,594
|
195
243
|
diffusers/pipelines/cogview4/__init__.py,sha256=DSW0f5XIu2bcirGYm6FE9lhyxADbV5nbiayq1x2ttJg,1633
|
196
|
-
diffusers/pipelines/cogview4/pipeline_cogview4.py,sha256=
|
244
|
+
diffusers/pipelines/cogview4/pipeline_cogview4.py,sha256=lSjIa73H96hO4iShFmPV9w8IKQbhvL1WOWcOHgbGdXo,33869
|
197
245
|
diffusers/pipelines/cogview4/pipeline_cogview4_control.py,sha256=oqZJ5XbE3RblxqH5VzIbMpT1AnnQJV-krevmRc4CXyY,35345
|
198
246
|
diffusers/pipelines/cogview4/pipeline_output.py,sha256=l3XZTqGTse6epEQn_VZsGyRAyQF9TpfYRaQrqO5O_Dw,594
|
199
247
|
diffusers/pipelines/consisid/__init__.py,sha256=wi4mmbsztby5LLgmrtDhz857JWT_4Jbc2sRzRyL0EpY,1367
|
@@ -205,15 +253,15 @@ diffusers/pipelines/consistency_models/pipeline_consistency_models.py,sha256=-Ql
|
|
205
253
|
diffusers/pipelines/controlnet/__init__.py,sha256=pqndp8HbyQ2D45STcpMp37nO5M4SagpfwADCCOC_2CU,4057
|
206
254
|
diffusers/pipelines/controlnet/multicontrolnet.py,sha256=-sluVPEM3oDV_dscvtnklZf3S_KsbRK98-V1fwGKUtg,684
|
207
255
|
diffusers/pipelines/controlnet/pipeline_controlnet.py,sha256=ctdh4Nt3TzEHSi8Hsa5xUz4FDvLK7AIFEw_lxUk4fgk,69320
|
208
|
-
diffusers/pipelines/controlnet/pipeline_controlnet_blip_diffusion.py,sha256=
|
256
|
+
diffusers/pipelines/controlnet/pipeline_controlnet_blip_diffusion.py,sha256=_1FGKD5-_1KUhVZ_lu2O4TXAAAqmzM7sFhpxqcx-YZU,17685
|
209
257
|
diffusers/pipelines/controlnet/pipeline_controlnet_img2img.py,sha256=vr7XO-3CfGRVeLlS4QUAtqyekPZYrWVb0pyTXfcHwn8,67610
|
210
258
|
diffusers/pipelines/controlnet/pipeline_controlnet_inpaint.py,sha256=JxW2wNkNUUY4HiI3IhivKwvG7qEDSgJ3kKk_ILS5YBQ,76660
|
211
259
|
diffusers/pipelines/controlnet/pipeline_controlnet_inpaint_sd_xl.py,sha256=DsTeSK8OqT9racfudAHSSyPttoXAewKF2hL3hJcgDlA,95313
|
212
260
|
diffusers/pipelines/controlnet/pipeline_controlnet_sd_xl.py,sha256=5yUeJMSfgbQ-po-5ljpfPPeCQwK_m_UEc5Gv1ZiJOs4,82765
|
213
261
|
diffusers/pipelines/controlnet/pipeline_controlnet_sd_xl_img2img.py,sha256=lBQ72LPNhz7JB6zLRhkDTsMGOH_OwdCN24iFaoysqGA,87279
|
214
|
-
diffusers/pipelines/controlnet/pipeline_controlnet_union_inpaint_sd_xl.py,sha256=
|
215
|
-
diffusers/pipelines/controlnet/pipeline_controlnet_union_sd_xl.py,sha256=
|
216
|
-
diffusers/pipelines/controlnet/pipeline_controlnet_union_sd_xl_img2img.py,sha256=
|
262
|
+
diffusers/pipelines/controlnet/pipeline_controlnet_union_inpaint_sd_xl.py,sha256=LL8iV9nrpsgkUM0j6V-pJdBal_9ujbtwkQsgsH_E21Q,97699
|
263
|
+
diffusers/pipelines/controlnet/pipeline_controlnet_union_sd_xl.py,sha256=dnMxGNuTTGQthZ6MsAAR20PALwKIoaDGH6E7yN0sNJQ,83410
|
264
|
+
diffusers/pipelines/controlnet/pipeline_controlnet_union_sd_xl_img2img.py,sha256=_wfBXwWerLSYvegxq0HoUoT8Ur8fK36cSItuLjEWySI,88822
|
217
265
|
diffusers/pipelines/controlnet/pipeline_flax_controlnet.py,sha256=gJ54OTBKXNYMk1wPzaaiE7a60F_mp9S4me7DAElgIsQ,22771
|
218
266
|
diffusers/pipelines/controlnet_hunyuandit/__init__.py,sha256=LvB-TNhPTnUIdinVZfxzUX40RFWvNWxrjAzsDDiLBfM,1344
|
219
267
|
diffusers/pipelines/controlnet_hunyuandit/pipeline_hunyuandit_controlnet.py,sha256=JmU_qrB_oPBVnu0hnrc5HEgtRCSfWicIZQwSwUFEdRg,51005
|
@@ -269,7 +317,7 @@ diffusers/pipelines/deprecated/spectrogram_diffusion/midi_utils.py,sha256=UY5j5r
|
|
269
317
|
diffusers/pipelines/deprecated/spectrogram_diffusion/notes_encoder.py,sha256=1dphTvTIpodYsic9Rn9DpX9MOchZW_PjyS626MIWw1A,2923
|
270
318
|
diffusers/pipelines/deprecated/spectrogram_diffusion/pipeline_spectrogram_diffusion.py,sha256=DaKLh1UdQ0jlwo92eU--Js5lL9A027akOx7UaDT5vXs,11528
|
271
319
|
diffusers/pipelines/deprecated/stable_diffusion_variants/__init__.py,sha256=mnIQupN59oc3JmKGaQZia7MO92E08wswJrP9QITzWQs,2111
|
272
|
-
diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_cycle_diffusion.py,sha256=
|
320
|
+
diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_cycle_diffusion.py,sha256=uZxwoXZLZE4Kd1Qlb9jPvKwhhd_s7EiHYTBHnVS53NY,48035
|
273
321
|
diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_onnx_stable_diffusion_inpaint_legacy.py,sha256=d2dTEqsup3V20i9dI8EM1ROGJlBMSrbVLecptK1tBnY,27841
|
274
322
|
diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_inpaint_legacy.py,sha256=cr9owvhcPbRtB85QQbJ8CK4hVqdJ__TeacljBe6BunI,42556
|
275
323
|
diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_model_editing.py,sha256=CDlbEGKY8M5ZOEwSexMxyq0Re_0PfVwzaFmV8OoFjkQ,41530
|
@@ -286,32 +334,34 @@ diffusers/pipelines/deprecated/versatile_diffusion/pipeline_versatile_diffusion_
|
|
286
334
|
diffusers/pipelines/deprecated/vq_diffusion/__init__.py,sha256=CD0X20a3_61pBaOzDxgU_33PLjxN1W8V46TCAwykUgE,1650
|
287
335
|
diffusers/pipelines/deprecated/vq_diffusion/pipeline_vq_diffusion.py,sha256=6El_KY-vwVUvYF3LGiwk6K5q5UjwhgT9J9cBw_V5Jv0,15444
|
288
336
|
diffusers/pipelines/dit/__init__.py,sha256=w6yUFMbGzaUGPKpLfEfvHlYmrKD0UErczwsHDaDtLuQ,408
|
289
|
-
diffusers/pipelines/dit/pipeline_dit.py,sha256=
|
337
|
+
diffusers/pipelines/dit/pipeline_dit.py,sha256=w1Oy-XIXHe_Z1kpHbFBC4rTTEht__PSPeQiAQJgT65A,10476
|
290
338
|
diffusers/pipelines/easyanimate/__init__.py,sha256=CeJHlQus6mhlN2rmFk1LA44ygm4jYJVEyMYWMckcxZI,1634
|
291
339
|
diffusers/pipelines/easyanimate/pipeline_easyanimate.py,sha256=iNg09pgsMUdZzkvgqxbq5olN0fZBt87jK6Yhiws1xII,35903
|
292
340
|
diffusers/pipelines/easyanimate/pipeline_easyanimate_control.py,sha256=evNzX0HHy9HO83ob-yTALTAlDm_ZUyx62-Z92wzKiH8,46131
|
293
341
|
diffusers/pipelines/easyanimate/pipeline_easyanimate_inpaint.py,sha256=9OZA8OnhHqaRtxyZFX7SUbrlA6VRMFwPpa7pRYggXdY,58526
|
294
342
|
diffusers/pipelines/easyanimate/pipeline_output.py,sha256=cpEvM-GStcMexQOQnPunDqrCOHP_Fk4aNxMvUHYeuxQ,621
|
295
|
-
diffusers/pipelines/flux/__init__.py,sha256=
|
343
|
+
diffusers/pipelines/flux/__init__.py,sha256=heCaE43tK4Ss6WrvDTWtglW9rLHf2AGzPqVpxGcQTH4,3445
|
296
344
|
diffusers/pipelines/flux/modeling_flux.py,sha256=46xvV8iCF77ifCJFPQ9tjtvNxBorVnBrQZw_eHRBujQ,1549
|
297
|
-
diffusers/pipelines/flux/pipeline_flux.py,sha256=
|
298
|
-
diffusers/pipelines/flux/pipeline_flux_control.py,sha256=
|
299
|
-
diffusers/pipelines/flux/pipeline_flux_control_img2img.py,sha256=
|
300
|
-
diffusers/pipelines/flux/pipeline_flux_control_inpaint.py,sha256=
|
301
|
-
diffusers/pipelines/flux/pipeline_flux_controlnet.py,sha256=
|
302
|
-
diffusers/pipelines/flux/pipeline_flux_controlnet_image_to_image.py,sha256=
|
303
|
-
diffusers/pipelines/flux/pipeline_flux_controlnet_inpainting.py,sha256
|
304
|
-
diffusers/pipelines/flux/pipeline_flux_fill.py,sha256=
|
305
|
-
diffusers/pipelines/flux/pipeline_flux_img2img.py,sha256=
|
306
|
-
diffusers/pipelines/flux/pipeline_flux_inpaint.py,sha256=
|
307
|
-
diffusers/pipelines/flux/
|
308
|
-
diffusers/pipelines/flux/
|
345
|
+
diffusers/pipelines/flux/pipeline_flux.py,sha256=ZQsELxzY_ECGx82qw0JTTobWojOqgaXsuxUU5VOsIJg,47573
|
346
|
+
diffusers/pipelines/flux/pipeline_flux_control.py,sha256=4-hD6GpMKdMMIhFVE3jcMaMD6x9ImRcUkkhURfFmB-4,40609
|
347
|
+
diffusers/pipelines/flux/pipeline_flux_control_img2img.py,sha256=dcG8jzQXpbP0bl0Mm_wxqGmSCMALaH0Ho7QMIQqdyLI,44578
|
348
|
+
diffusers/pipelines/flux/pipeline_flux_control_inpaint.py,sha256=oinQB31pcb74kXLj9D6RqxYJ_dNoywA_FduI74ZpHls,53672
|
349
|
+
diffusers/pipelines/flux/pipeline_flux_controlnet.py,sha256=rM6ncrReHwg2zUibGq_Umz1PN-LoNgwSRXEE4z_GuG8,57932
|
350
|
+
diffusers/pipelines/flux/pipeline_flux_controlnet_image_to_image.py,sha256=J9XwduDfZEleOUgauZto7ISspbRtC2YSaDBJyXtSh9Q,46514
|
351
|
+
diffusers/pipelines/flux/pipeline_flux_controlnet_inpainting.py,sha256=Ij6mzyJVsulsSNu9PdmVzALRSKbJK3NpddTQUqMu3So,55542
|
352
|
+
diffusers/pipelines/flux/pipeline_flux_fill.py,sha256=fkeIDQd3fCCA2NOQgKG_1nGmJsH0Yd0DVWPNBtm3omI,49414
|
353
|
+
diffusers/pipelines/flux/pipeline_flux_img2img.py,sha256=07SiiP4HAoi8ZW-vDb4PnwoN-O8lhZNEErbOQXAIpeE,52273
|
354
|
+
diffusers/pipelines/flux/pipeline_flux_inpaint.py,sha256=bjYwxu92s_nYxHDrJEwYpPz_Pi3LQp9k_GfSdnU8lss,59258
|
355
|
+
diffusers/pipelines/flux/pipeline_flux_kontext.py,sha256=IHqqqKPVsX5d7gE0l_r7lRywIq10zoN6ozQnd4uhr1M,55083
|
356
|
+
diffusers/pipelines/flux/pipeline_flux_kontext_inpaint.py,sha256=wsDjkNl5qipVuhuCtTZ2SLfMmPKD1rrnqEscgu5Dl2I,71831
|
357
|
+
diffusers/pipelines/flux/pipeline_flux_prior_redux.py,sha256=BoAMvn_7x9kVq28Vrnfzyzb70hB5d2VYnKbP--02bgI,21825
|
358
|
+
diffusers/pipelines/flux/pipeline_output.py,sha256=dzK14BDdSxbuSabI1nIU9IB5IWtxhVDV1EO0bZvKciU,1283
|
309
359
|
diffusers/pipelines/hidream_image/__init__.py,sha256=SeMI0Ae_K8guNBe8doZIX_vJndXz6jWFWhCqtH1s5I0,1499
|
310
|
-
diffusers/pipelines/hidream_image/pipeline_hidream_image.py,sha256=
|
360
|
+
diffusers/pipelines/hidream_image/pipeline_hidream_image.py,sha256=DeuisvM2S1pe2S13A-mgnqGmYT7cOVIh0tKuTL9rqno,51321
|
311
361
|
diffusers/pipelines/hidream_image/pipeline_output.py,sha256=nfVKQcyZW-RIHpoVd5XUBzP_ekbWvk6xVikTuPbASgU,1229
|
312
362
|
diffusers/pipelines/hunyuan_video/__init__.py,sha256=2IhKqUmvwUZpkBWZI1HBbsq15U-_YEC3aSwiNDMogDE,1878
|
313
363
|
diffusers/pipelines/hunyuan_video/pipeline_hunyuan_skyreels_image2video.py,sha256=8Z7MjSkajuroRhVI4Vlno578R_eOuMRkxatgk2lR-VU,38826
|
314
|
-
diffusers/pipelines/hunyuan_video/pipeline_hunyuan_video.py,sha256=
|
364
|
+
diffusers/pipelines/hunyuan_video/pipeline_hunyuan_video.py,sha256=OseIyBQ_6LOpbD781Co1sbB5VKYgx5xHLL586oLRNaQ,35583
|
315
365
|
diffusers/pipelines/hunyuan_video/pipeline_hunyuan_video_framepack.py,sha256=MKjgjLDy9OEDN32vKWyfqZ7WlHObgpi3s_bpVVSLeG0,53966
|
316
366
|
diffusers/pipelines/hunyuan_video/pipeline_hunyuan_video_image2video.py,sha256=yzvQhYFGcHXa0sfP9sKxRCwN0HfsOjIgouK2qJWOF4w,46321
|
317
367
|
diffusers/pipelines/hunyuan_video/pipeline_output.py,sha256=xSreG3mREfUvF_dfDzWDLF2pSdqNiUp47whS-tVl7xI,1417
|
@@ -359,9 +409,9 @@ diffusers/pipelines/ledits_pp/pipeline_leditspp_stable_diffusion_xl.py,sha256=Tg
|
|
359
409
|
diffusers/pipelines/ledits_pp/pipeline_output.py,sha256=xiAplyxGWB6uCHIdryai6UP7ghtFuXhES52ZYpO3k8A,1579
|
360
410
|
diffusers/pipelines/ltx/__init__.py,sha256=6STasTKI0b2ALlgCUi9GMmb_aScZzLWcfKKZxdHWOqo,1878
|
361
411
|
diffusers/pipelines/ltx/modeling_latent_upsampler.py,sha256=2Fj74GY82S8By8l2mHKq1DIGaYUZQzUSI3Nf_1s00rA,7482
|
362
|
-
diffusers/pipelines/ltx/pipeline_ltx.py,sha256=
|
363
|
-
diffusers/pipelines/ltx/pipeline_ltx_condition.py,sha256=
|
364
|
-
diffusers/pipelines/ltx/pipeline_ltx_image2video.py,sha256=
|
412
|
+
diffusers/pipelines/ltx/pipeline_ltx.py,sha256=8LH738HOGbpoX0rrgPB4Pyxe7w7jZZJNJTNYbBqZ5a8,40965
|
413
|
+
diffusers/pipelines/ltx/pipeline_ltx_condition.py,sha256=GJR0nrji-wyFlodAfW4FOU_rlHpPFc24CxrjfnYXyeg,62433
|
414
|
+
diffusers/pipelines/ltx/pipeline_ltx_image2video.py,sha256=_-lE5wJYicbcs_D3dOMfnsURAtGKUpm1F3tge1JyMSM,45807
|
365
415
|
diffusers/pipelines/ltx/pipeline_ltx_latent_upsample.py,sha256=6g5DXLlkMm4U3V4aWjHsGvBpHeO96Y9FSMIrWYlQNJk,11813
|
366
416
|
diffusers/pipelines/ltx/pipeline_output.py,sha256=amPUfWP2XV5Qgb0BpfVIbC6L3vIHCMpTWdqgr5nfrvw,605
|
367
417
|
diffusers/pipelines/lumina/__init__.py,sha256=AzWsnxikODkQnCxliBN7eDi83TxcSihxfehfLYxRPD4,1336
|
@@ -374,7 +424,7 @@ diffusers/pipelines/marigold/pipeline_marigold_depth.py,sha256=IQqLiRvuSqFmwr37J
|
|
374
424
|
diffusers/pipelines/marigold/pipeline_marigold_intrinsics.py,sha256=MADfO3Yzh30E5usYZSsf7EurYG3tIar01cy39chDsRY,35861
|
375
425
|
diffusers/pipelines/marigold/pipeline_marigold_normals.py,sha256=osc4gL7CVCH5IH530Vej6Q06EGSbDXTeaaAIJBh_oao,34791
|
376
426
|
diffusers/pipelines/mochi/__init__.py,sha256=8yDkp3YgOvbC4VhO4Tfin2myNxRlWiX1Mi8rY_UvAh4,1282
|
377
|
-
diffusers/pipelines/mochi/pipeline_mochi.py,sha256=
|
427
|
+
diffusers/pipelines/mochi/pipeline_mochi.py,sha256=CCITjIzarrhyGrPV8C4toGRYs1mt9Or2WdsKOU0XSZs,35691
|
378
428
|
diffusers/pipelines/mochi/pipeline_output.py,sha256=RyFrgJRzyCNzbHurysrFsN4wtZLdcax8wTarxhUq-50,609
|
379
429
|
diffusers/pipelines/musicldm/__init__.py,sha256=l1I5QzvTwMOOltJkcwpTb6nNcr93bWiP_ErHbDdwz6Y,1411
|
380
430
|
diffusers/pipelines/musicldm/pipeline_musicldm.py,sha256=h5Li1cDVFDi-lOwL5i_fPXy-BfuqfC9kkYXCMEiYK08,30670
|
@@ -406,13 +456,19 @@ diffusers/pipelines/paint_by_example/pipeline_paint_by_example.py,sha256=3PrO9c5
|
|
406
456
|
diffusers/pipelines/pia/__init__.py,sha256=md5F8G279iZg4WGSmLP7N8apWkuHkfssjLQFzv6c2zI,1299
|
407
457
|
diffusers/pipelines/pia/pipeline_pia.py,sha256=TxnQBCeUWggseAABRyspi13LDs2zdyn1GbEOy7SJKlA,46525
|
408
458
|
diffusers/pipelines/pixart_alpha/__init__.py,sha256=QxcTJF9ryOIejEHQVw3bZAYHn2dah-WPT5pZudE8XxU,1595
|
409
|
-
diffusers/pipelines/pixart_alpha/pipeline_pixart_alpha.py,sha256=
|
410
|
-
diffusers/pipelines/pixart_alpha/pipeline_pixart_sigma.py,sha256=
|
459
|
+
diffusers/pipelines/pixart_alpha/pipeline_pixart_alpha.py,sha256=O7asSDGmb7lAHlneFFNlS2HCuA5u9RfA8trqnu5-8QY,45035
|
460
|
+
diffusers/pipelines/pixart_alpha/pipeline_pixart_sigma.py,sha256=V0zzovrP3DC-J7zVIC5oQEpKRlNx_M2M_xTw3M3UB9E,42610
|
461
|
+
diffusers/pipelines/qwenimage/__init__.py,sha256=0Bh0rr7S-9V3uA3fm0cZhpi1ASTuChOdTHlq2s2Rv-A,2044
|
462
|
+
diffusers/pipelines/qwenimage/pipeline_output.py,sha256=TbhkYg7Uq10TNp_mIDvm7imSEh8LK0hFpQ018gCVaYk,603
|
463
|
+
diffusers/pipelines/qwenimage/pipeline_qwenimage.py,sha256=Tqsf8Ax8SKRChYtr7wjL2936miNfp5oqfdUZA9K1xpE,34535
|
464
|
+
diffusers/pipelines/qwenimage/pipeline_qwenimage_edit.py,sha256=Z_poI8G1RLq_Jv6s-PHi_N1Rs3Scd5co9K7J-Q96enE,41536
|
465
|
+
diffusers/pipelines/qwenimage/pipeline_qwenimage_img2img.py,sha256=FMYy0J8vN_E7Hpcg0bXmvmotJuBiOU7TfwJPoN5185A,40812
|
466
|
+
diffusers/pipelines/qwenimage/pipeline_qwenimage_inpaint.py,sha256=wGbXWHnRfmtU0SEPV34y9CTSEpus1OVP7UNbItiBuBs,49677
|
411
467
|
diffusers/pipelines/sana/__init__.py,sha256=qkgbJxOAEH4gmyQ4FX4USnOd-PPEDkZGjZ3QO0ID0pA,1719
|
412
468
|
diffusers/pipelines/sana/pipeline_output.py,sha256=ErM82CTECCPbaLIpJsEzwl0r_hGNi29IbxKcsJ1mEMM,586
|
413
469
|
diffusers/pipelines/sana/pipeline_sana.py,sha256=Y7W4MXlppwU04EWCeE6tkRI31tAystB8mnGiYRdWZ1U,47262
|
414
470
|
diffusers/pipelines/sana/pipeline_sana_controlnet.py,sha256=SkMUSXUPVX-Md9mBqtwacqoPWB92ibART5CUE2IPAFo,51742
|
415
|
-
diffusers/pipelines/sana/pipeline_sana_sprint.py,sha256=
|
471
|
+
diffusers/pipelines/sana/pipeline_sana_sprint.py,sha256=xoLc8_MNB9i9GNlfMLkBeC8CSHOPClzHuDLi8UNJQow,41272
|
416
472
|
diffusers/pipelines/sana/pipeline_sana_sprint_img2img.py,sha256=X_PURGwytjQh5S_XRLQEqKE1zERVtHAFNITa775_qE8,45583
|
417
473
|
diffusers/pipelines/semantic_stable_diffusion/__init__.py,sha256=4jDvmgpXRVXGeSAcfGN90iQoJJBBRgE7NXzBE_8AYxM,1443
|
418
474
|
diffusers/pipelines/semantic_stable_diffusion/pipeline_output.py,sha256=YBxNQ2JiY3jYW-GB44nzNZxeADAswMQBJfnr2tBX0eY,822
|
@@ -422,6 +478,13 @@ diffusers/pipelines/shap_e/camera.py,sha256=oIKN8kcD6gqpeQWABRDfkdm3wW0MXFCZJSW_
|
|
422
478
|
diffusers/pipelines/shap_e/pipeline_shap_e.py,sha256=YG8TDX2t_2TVseeyS7Rotxorh2prpJsp8ol4ucUxM48,13398
|
423
479
|
diffusers/pipelines/shap_e/pipeline_shap_e_img2img.py,sha256=uCfAsOKkrI85NPR3X1lhfK_10D2IhfOVkDrUJBmxpps,13205
|
424
480
|
diffusers/pipelines/shap_e/renderer.py,sha256=Wx9GqWWLUmZjOIXdMgPKGyotodqyrdNzbKIkBrmY9ck,39153
|
481
|
+
diffusers/pipelines/skyreels_v2/__init__.py,sha256=kFPdII5Tf0XcyqwcbomlbZn7iHnoSFFM6GwLcBm_hQ4,2159
|
482
|
+
diffusers/pipelines/skyreels_v2/pipeline_output.py,sha256=77lDilL2Ozorg4mVku784Nbo2bPNSnD3ABnDNO_G1Qs,619
|
483
|
+
diffusers/pipelines/skyreels_v2/pipeline_skyreels_v2.py,sha256=FoI2u0eqSLPtcWpozndl92XB1FImBV34zGyBXYXZ2ew,27095
|
484
|
+
diffusers/pipelines/skyreels_v2/pipeline_skyreels_v2_diffusion_forcing.py,sha256=5eWoF4E5qvo-__9lmh4lzEgdzV4NH4-sguuCvx7WiyY,48174
|
485
|
+
diffusers/pipelines/skyreels_v2/pipeline_skyreels_v2_diffusion_forcing_i2v.py,sha256=Gj8ets0nc8pNUuWz9hPWn7B6dx9x1UG_knuGsqAVQo8,52504
|
486
|
+
diffusers/pipelines/skyreels_v2/pipeline_skyreels_v2_diffusion_forcing_v2v.py,sha256=C-eqaYwUq2hpKm4qTmZeA2ILDmQPS-nDk_idmTfbHXI,51976
|
487
|
+
diffusers/pipelines/skyreels_v2/pipeline_skyreels_v2_i2v.py,sha256=UoN3okxSq1yqGAcWXxo7nmZqzs0fnYu048gG7-_QknY,34383
|
425
488
|
diffusers/pipelines/stable_audio/__init__.py,sha256=R8Tuxx2LsaWWR0lncRJ0faKOmAdaQ0ilvftdBC_07Eo,1561
|
426
489
|
diffusers/pipelines/stable_audio/modeling_stable_audio.py,sha256=vakcN7KjC2PjVWoYbpZSiqW7Fnd63LpvgmYtmoXfSyE,6127
|
427
490
|
diffusers/pipelines/stable_audio/pipeline_stable_audio.py,sha256=aph9UJQsqVQs2EJzl2iu6jSY65Nk7TTen7sSd6FWij0,35613
|
@@ -435,12 +498,12 @@ diffusers/pipelines/stable_diffusion/convert_from_ckpt.py,sha256=7AkKESPubz4W7bY
|
|
435
498
|
diffusers/pipelines/stable_diffusion/pipeline_flax_stable_diffusion.py,sha256=3SsX3YOJJbZ5El0cLf1jf-9M83ZMenIf7NXiaQA86ho,20756
|
436
499
|
diffusers/pipelines/stable_diffusion/pipeline_flax_stable_diffusion_img2img.py,sha256=G6V7Okambalqs8-Agpa0iREwSyc_9GZH5-iRhYP_No8,22554
|
437
500
|
diffusers/pipelines/stable_diffusion/pipeline_flax_stable_diffusion_inpaint.py,sha256=7F-z40HNgb0a6a_dV_T46nj6ZqSmBDSlsGMPClEPd7U,26130
|
438
|
-
diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion.py,sha256=
|
501
|
+
diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion.py,sha256=OPd07D2kw71M_Vhc2x00lbRySVg-PkgWwVo5NFjmonM,24415
|
439
502
|
diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion_img2img.py,sha256=J-FbiSOueXBLk153qyUUgAcaAzVLHdHTzXwJIi7BPbc,28552
|
440
|
-
diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion_inpaint.py,sha256=
|
441
|
-
diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion_upscale.py,sha256=
|
503
|
+
diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion_inpaint.py,sha256=RNQZgQpFtRvz8deh7lVKBy9LpPb-9k6aeyBWhiPmSpE,29158
|
504
|
+
diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion_upscale.py,sha256=KLf1yeCe3e5X3eiFiFMvhK9vQrb6FqglDss_JcBvgWc,27938
|
442
505
|
diffusers/pipelines/stable_diffusion/pipeline_output.py,sha256=Io-12AumvYjBOKP4Qq1BJ2rak5pKdtMO-ACcorY6hFE,1496
|
443
|
-
diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion.py,sha256=
|
506
|
+
diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion.py,sha256=dGYgGQHmhmcWQ0Sp-1hZbZ0lPlJMmt2tOElO5rwffgg,55721
|
444
507
|
diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_depth2img.py,sha256=sO7DpfNobnuAal0kDM3mD3z2fe5GRlyTHG7u2x_rZIY,44509
|
445
508
|
diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_image_variation.py,sha256=XNLerrOA1__emc2DHlPt7-16pxJR_plP3usFH4_DVGQ,22720
|
446
509
|
diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_img2img.py,sha256=Th3gTxeKNQnAHjnPF2DgAB7dKHzLsWNZ6yoGw1XO094,59513
|
@@ -455,7 +518,7 @@ diffusers/pipelines/stable_diffusion/safety_checker_flax.py,sha256=RhHxBbrcBrEos
|
|
455
518
|
diffusers/pipelines/stable_diffusion/stable_unclip_image_normalizer.py,sha256=wgtRMD_dzwanDdbqHTqlc_Ro_1q51SnotP8uqyC7Yr8,1890
|
456
519
|
diffusers/pipelines/stable_diffusion_3/__init__.py,sha256=4JrcTgfij4mGbSSnCaHSqRRNhCUry8-HH3zQaUIq3DE,1922
|
457
520
|
diffusers/pipelines/stable_diffusion_3/pipeline_output.py,sha256=empNHoFAmdz6__yOCX2kuJqZtVdtoGAvVmH5mW42-3s,610
|
458
|
-
diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3.py,sha256=
|
521
|
+
diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3.py,sha256=7QxYKoF6bbYU715AGWgw7Nq5JyJq4KPyPlafHgmSnYg,56862
|
459
522
|
diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3_img2img.py,sha256=HDuLdQDpuWnxvSBk_ATg5qcKjbyo7j2RbgkTmD3c-Bc,57765
|
460
523
|
diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3_inpaint.py,sha256=KvElHFo4l47wHmXx4GpK9EH-J-6PhNGqwMylnZB07FQ,69805
|
461
524
|
diffusers/pipelines/stable_diffusion_attend_and_excite/__init__.py,sha256=VpZ5FPx9ACTOT4qiEqun2QYeUtx9Rp0YVDwqhYe28QM,1390
|
@@ -511,9 +574,9 @@ diffusers/pipelines/visualcloze/pipeline_visualcloze_generation.py,sha256=16iiLT
|
|
511
574
|
diffusers/pipelines/visualcloze/visualcloze_utils.py,sha256=4DPWGxtCkC51lPoQTMe3Xlv5Lx8RKo5Uoo6tnDAwr-Y,10864
|
512
575
|
diffusers/pipelines/wan/__init__.py,sha256=SOHLX5iUuab80gLF9ZYo54pzFWj0hiSoZU4hgWesuuQ,1677
|
513
576
|
diffusers/pipelines/wan/pipeline_output.py,sha256=EjM_BX0gQD1hQ78lbUM40OtvwPqTtncuQdvP5YMBjvE,605
|
514
|
-
diffusers/pipelines/wan/pipeline_wan.py,sha256=
|
515
|
-
diffusers/pipelines/wan/pipeline_wan_i2v.py,sha256=
|
516
|
-
diffusers/pipelines/wan/pipeline_wan_vace.py,sha256=
|
577
|
+
diffusers/pipelines/wan/pipeline_wan.py,sha256=f_Jk-wjV1aoYUZGZqiT1m4REFfpwtlAzBojhqCTcPgw,30860
|
578
|
+
diffusers/pipelines/wan/pipeline_wan_i2v.py,sha256=kZeLAKxLjYK1hyUzuvCx2x1VKRcvMg1Beia6f1c0XHE,39605
|
579
|
+
diffusers/pipelines/wan/pipeline_wan_vace.py,sha256=zIi7mR0awzfP92IPP9_vJSDVyxoifEEku4iT1Y2zO4M,48300
|
517
580
|
diffusers/pipelines/wan/pipeline_wan_video2video.py,sha256=tHloW45GFTDBzE1fggRUZDPKqv2ZznT55-5yQ5jdKAE,33331
|
518
581
|
diffusers/pipelines/wuerstchen/__init__.py,sha256=JSCoPCwV_rBJiCy4jbILRoAgQSITS4-j77qOPmzy284,2100
|
519
582
|
diffusers/pipelines/wuerstchen/modeling_paella_vq_model.py,sha256=lmTIqLgXK7PXwZw3cGBHpEYn0oCZMtFSGsrGrXHkLTI,6925
|
@@ -523,21 +586,22 @@ diffusers/pipelines/wuerstchen/modeling_wuerstchen_prior.py,sha256=VhlC4cLgRwe0r
|
|
523
586
|
diffusers/pipelines/wuerstchen/pipeline_wuerstchen.py,sha256=yujVa8eLz7_NHdbrqhPCg02gR0cz_soxAZQXCA0wHeM,20832
|
524
587
|
diffusers/pipelines/wuerstchen/pipeline_wuerstchen_combined.py,sha256=zP-zrPDO0_DMT0BRN_kjkiuw2O9eO0f3uOYfvnvGtyo,16686
|
525
588
|
diffusers/pipelines/wuerstchen/pipeline_wuerstchen_prior.py,sha256=d4iA2SSyMsLm6RhHCZliks58a2D55kLXuvB5nMAKPcg,24127
|
526
|
-
diffusers/quantizers/__init__.py,sha256=
|
589
|
+
diffusers/quantizers/__init__.py,sha256=WRPgr_dguadpWwogTAFbdSFgr6ER-DwHtquZVPAONhY,744
|
527
590
|
diffusers/quantizers/auto.py,sha256=_rlfK4_5XQuP3Af0ArlPPWgq3E0_gwxv6z-nSQZTls8,5789
|
528
|
-
diffusers/quantizers/base.py,sha256=
|
591
|
+
diffusers/quantizers/base.py,sha256=CJj86jYkY4U2X_R5AWeFJexr3yJBe1vpqHdLdZDb8R4,10337
|
592
|
+
diffusers/quantizers/pipe_quant_config.py,sha256=2Ob9sGUIOwFw9M_xaIFL3WfewLoWLRuNIT70YbHalM0,9284
|
529
593
|
diffusers/quantizers/quantization_config.py,sha256=vkZTAdtuV0vG0L_HOHURI-Qm91Deb__SEdmFPtvP2EE,32541
|
530
594
|
diffusers/quantizers/bitsandbytes/__init__.py,sha256=ILCM6ZopnzrhM_fW1oh4J_YCNsaEQAptcoTuSVgXab8,170
|
531
595
|
diffusers/quantizers/bitsandbytes/bnb_quantizer.py,sha256=hPg52A4NwlYqW1u5M0lhccXeW-sUGAHH0ipzdI7Etj0,26268
|
532
596
|
diffusers/quantizers/bitsandbytes/utils.py,sha256=48clXsL2q2NQ41n4dcCAhXsRNxyrkGgXYoJUUfHmHlY,13690
|
533
597
|
diffusers/quantizers/gguf/__init__.py,sha256=2bxvfZbFr4xqm953cZaGJMgSCRiGJAWwbwKxNRQIEs4,42
|
534
598
|
diffusers/quantizers/gguf/gguf_quantizer.py,sha256=AP6kUgk9bDh-gBuvLqWhUfaMgrpTF7O_VWEI6QDAfUM,6023
|
535
|
-
diffusers/quantizers/gguf/utils.py,sha256=
|
599
|
+
diffusers/quantizers/gguf/utils.py,sha256=kt-_efSo5tMFuKxzWxCJd28WacG6usGad1Z6n48nvZI,19870
|
536
600
|
diffusers/quantizers/quanto/__init__.py,sha256=ynS7j_VTG-QtimbyxHAaihUmi6eVqEDxA5dnKGjeS5M,46
|
537
601
|
diffusers/quantizers/quanto/quanto_quantizer.py,sha256=nB7c2FHGzZUseLaiwTBKLSUftmLO7kZSOJGvk5I4hGw,6336
|
538
602
|
diffusers/quantizers/quanto/utils.py,sha256=6-EaqWTbhb0dkuJ0C8XRDIpMmowPVjJ_C4rPaNNHMkc,2448
|
539
603
|
diffusers/quantizers/torchao/__init__.py,sha256=tJimVpSGQsz3owo3yzh2SuCg7NQfiMnrHkAHyYHkmGA,662
|
540
|
-
diffusers/quantizers/torchao/torchao_quantizer.py,sha256=
|
604
|
+
diffusers/quantizers/torchao/torchao_quantizer.py,sha256=wdMIJeG8iBV6vQ9ZFc-tyGztlLPESD5sUpN2Ep8QmF4,15629
|
541
605
|
diffusers/schedulers/__init__.py,sha256=HYxAaUCP3JSJXKm4FVJBGxqqwyqqgdDooE0YupPh7V4,11182
|
542
606
|
diffusers/schedulers/scheduling_amused.py,sha256=pioDeoYfXWP2CnAiI3-lczDdfSbkfXRC9m9REN_kmvI,6590
|
543
607
|
diffusers/schedulers/scheduling_consistency_decoder.py,sha256=IKNAkeVZIxTPk_hS6QBvFbkjv_h8yWbtU3FmIUSXKVI,6817
|
@@ -552,13 +616,13 @@ diffusers/schedulers/scheduling_ddpm.py,sha256=g9KnAlLfVxUN0uZRcUsLmwSe9MmjSuY_x
|
|
552
616
|
diffusers/schedulers/scheduling_ddpm_flax.py,sha256=IxYvg6SH17czD-N8zHdvuhGxpCI7JePypvJfOTQsLjk,12574
|
553
617
|
diffusers/schedulers/scheduling_ddpm_parallel.py,sha256=2yoo64zf6I0RIAJ9aPDpfnbk7qv9t5GEYuHlgXy_Sog,31041
|
554
618
|
diffusers/schedulers/scheduling_ddpm_wuerstchen.py,sha256=w7feuL53AY_363GyU1PWVGXfDHcyzJSbWOOtcXaJrAE,8938
|
555
|
-
diffusers/schedulers/scheduling_deis_multistep.py,sha256=
|
619
|
+
diffusers/schedulers/scheduling_deis_multistep.py,sha256=Mgo5mSJKqyzyFsxqXF4oYbTuCG1HWKGQUpGafWK-OFM,40024
|
556
620
|
diffusers/schedulers/scheduling_dpm_cogvideox.py,sha256=QQ_3P5LLDrQvltlSuXYVkFl7AHSPXvlwBy_GnrJj2CA,23347
|
557
|
-
diffusers/schedulers/scheduling_dpmsolver_multistep.py,sha256=
|
621
|
+
diffusers/schedulers/scheduling_dpmsolver_multistep.py,sha256=nlbQ2bARV-R-HgtTxwEnjyzSZg9vrazkiMh3M32Xceo,55638
|
558
622
|
diffusers/schedulers/scheduling_dpmsolver_multistep_flax.py,sha256=UEiHAqI4HWvItbfTqEy90pmDtrig51Owx3I-m66jwc8,28849
|
559
623
|
diffusers/schedulers/scheduling_dpmsolver_multistep_inverse.py,sha256=fSTExThSvMHA9nbNCq096KkXSGUkJwKeVMDsybvn860,48871
|
560
624
|
diffusers/schedulers/scheduling_dpmsolver_sde.py,sha256=MV6XfmTZhUyJed1uJv4S857Wxlz5gZrV1-R4MEdQDig,29491
|
561
|
-
diffusers/schedulers/scheduling_dpmsolver_singlestep.py,sha256=
|
625
|
+
diffusers/schedulers/scheduling_dpmsolver_singlestep.py,sha256=fw0nHyLiQX0Ad22j9KYCxodyhh4gVLjFZSSjnY3CpTk,54561
|
562
626
|
diffusers/schedulers/scheduling_edm_dpmsolver_multistep.py,sha256=0b8CYA_EQ0C2CL1AonsiyN6AC5hTBmUi0Venz9vFe90,31915
|
563
627
|
diffusers/schedulers/scheduling_edm_euler.py,sha256=lU2uJnAOgIyi2IEr5NI396G049J2Fejm30OpltCEru0,19500
|
564
628
|
diffusers/schedulers/scheduling_euler_ancestral_discrete.py,sha256=Z5Azbf97q3XIriLTXtPq92coqTUHHZ3gTST-2aRr5Vg,21098
|
@@ -579,21 +643,21 @@ diffusers/schedulers/scheduling_pndm.py,sha256=n8P3-s6I6LKA6pU0yZfs6CoopFvArDerM
|
|
579
643
|
diffusers/schedulers/scheduling_pndm_flax.py,sha256=o2EiaUcOeeoJKsj4uABXrs3QUH_MwrgQrXCihEXay7U,21555
|
580
644
|
diffusers/schedulers/scheduling_repaint.py,sha256=M1dddhIGRnQgnRPMxbOR1m2jgrsBkZo-fPpiSvKbT70,15762
|
581
645
|
diffusers/schedulers/scheduling_sasolver.py,sha256=7dYuwAbKLsbr0gjGLwwusqzEhM1eBLa770sC9mNFQMI,55116
|
582
|
-
diffusers/schedulers/scheduling_scm.py,sha256=
|
646
|
+
diffusers/schedulers/scheduling_scm.py,sha256=XjQHUhxXPn3weIzWiALHrNXsAYB2IpbQMybYyxC0ZGY,11352
|
583
647
|
diffusers/schedulers/scheduling_sde_ve.py,sha256=_y-9IBk2yxbz1iwTKngBJipWSkiFrdk8ky9LDkLvYo4,13321
|
584
648
|
diffusers/schedulers/scheduling_sde_ve_flax.py,sha256=6flCFfSIiGpAwEZK_UhjKmWjzsIXOD5UAORrpkIAbgM,12142
|
585
649
|
diffusers/schedulers/scheduling_tcd.py,sha256=tiAvTdewr6CtMe2wn4z7_-iUDcVCvWdK27aiMxq5kJM,34749
|
586
650
|
diffusers/schedulers/scheduling_unclip.py,sha256=T7HJXANwbhVCo5FaFkvmEuUl6geBDuz-DxVm5s81Z7o,15056
|
587
|
-
diffusers/schedulers/scheduling_unipc_multistep.py,sha256=
|
588
|
-
diffusers/schedulers/scheduling_utils.py,sha256=
|
589
|
-
diffusers/schedulers/scheduling_utils_flax.py,sha256=
|
651
|
+
diffusers/schedulers/scheduling_unipc_multistep.py,sha256=8NM10_P8tWpUvXHAJAFYbDtcGvuZc0Y9y4DBx3lQrSQ,47161
|
652
|
+
diffusers/schedulers/scheduling_utils.py,sha256=DnK4OertlJjh55gb6Ii9jnlEWMFHRF2uvZROrP8xDJU,8700
|
653
|
+
diffusers/schedulers/scheduling_utils_flax.py,sha256=zMIiPr4IpKuhEIwmVroaUyfLTWeMVRUQLQIDr5Vn5HM,12145
|
590
654
|
diffusers/schedulers/scheduling_vq_diffusion.py,sha256=xkYjAqC_dF5kfazvKnct6V0Rg19GdBe9Qq2AHlNYi2Y,22954
|
591
655
|
diffusers/schedulers/deprecated/__init__.py,sha256=3QlQ4gSBFu4zUkY3S5KLxd9sukbxLv8Aj4eO0Rymaq0,1349
|
592
656
|
diffusers/schedulers/deprecated/scheduling_karras_ve.py,sha256=CrJZjLD0QQ1mY_cE80aIDDMLzh9U6sn1iS2eEuCZFCc,9724
|
593
657
|
diffusers/schedulers/deprecated/scheduling_sde_vp.py,sha256=4TK-8FOzNWnvlSrFIaOjhPVdNk57zeTDQYjtBdDgr3k,4294
|
594
|
-
diffusers/utils/__init__.py,sha256=
|
658
|
+
diffusers/utils/__init__.py,sha256=gDW4lZcfxdmdJn3Ggjiz9O5Pgh9G_KqoJd3elJMlbro,4885
|
595
659
|
diffusers/utils/accelerate_utils.py,sha256=ZkopOK29_6QrrdkIPidHnO078B8BtzzFSts3ul2cP8Q,1839
|
596
|
-
diffusers/utils/constants.py,sha256=
|
660
|
+
diffusers/utils/constants.py,sha256=w4ZB5GWKlzBD4Dt8Y2iLfD8g6We_Qdp94HHXlhgm45E,3616
|
597
661
|
diffusers/utils/deprecation_utils.py,sha256=WWegSa1ZBX2DNfFp-L2wQuKAyGqXsc275Eua0vw7Z8o,2103
|
598
662
|
diffusers/utils/doc_utils.py,sha256=3x-UhJrm7eNcJiQAYnYefoH7Q-V2qPmc04TzbEr25-o,1348
|
599
663
|
diffusers/utils/dummy_bitsandbytes_objects.py,sha256=7uoVirIvcuylaDyUas94Wc9AAKJMJS3GEv-in3bEqJA,527
|
@@ -603,7 +667,7 @@ diffusers/utils/dummy_gguf_objects.py,sha256=H0SYZuOON9cFlkyYSTcUJJk4skYjgjIu-wD
|
|
603
667
|
diffusers/utils/dummy_note_seq_objects.py,sha256=DffX40mDzWTMCyYhKudgIeBhtqTSpiSkVzcAMRue8dY,506
|
604
668
|
diffusers/utils/dummy_onnx_objects.py,sha256=4Z61m3P9NUwbebsK58wAKs6y32Id6UaiSRyeHXo3ecA,493
|
605
669
|
diffusers/utils/dummy_optimum_quanto_objects.py,sha256=_k-3g7WAYcJO0-38rJrHX7aIAzkkICtj2ISiggVFiz8,529
|
606
|
-
diffusers/utils/dummy_pt_objects.py,sha256=
|
670
|
+
diffusers/utils/dummy_pt_objects.py,sha256=TFXNAssckoyrMZqxNeZ4hQZSKzR_lI_0BDjnGZiPK84,60656
|
607
671
|
diffusers/utils/dummy_torch_and_librosa_objects.py,sha256=JUfqU2n3tSKHyWbjSXrpdW_jr-YbMxAvAhLlPa2_Rxs,948
|
608
672
|
diffusers/utils/dummy_torch_and_scipy_objects.py,sha256=zOLdmqbtma5nakkdYgoErISV28yaztmBLI3wrC2Z_bU,537
|
609
673
|
diffusers/utils/dummy_torch_and_torchsde_objects.py,sha256=EJiExfXva8tnRJEn-VaCkcII31WnPr2HqdTh3PBQ-jk,985
|
@@ -611,29 +675,29 @@ diffusers/utils/dummy_torch_and_transformers_and_k_diffusion_objects.py,sha256=I
|
|
611
675
|
diffusers/utils/dummy_torch_and_transformers_and_onnx_objects.py,sha256=SiKni7YZ-pmZrurHU3-lhbDGKOGCCVxSK3GJbrARqgU,3023
|
612
676
|
diffusers/utils/dummy_torch_and_transformers_and_opencv_objects.py,sha256=Hvskt_HEoCkRikDyiYWQ95CsSv0fX7jYqxDxjJuNIZc,601
|
613
677
|
diffusers/utils/dummy_torch_and_transformers_and_sentencepiece_objects.py,sha256=rauUQkG4sLSyBVeEbfp5fhJFJUGqw273oXbN_KC8NIM,1637
|
614
|
-
diffusers/utils/dummy_torch_and_transformers_objects.py,sha256=
|
678
|
+
diffusers/utils/dummy_torch_and_transformers_objects.py,sha256=hN67GPTfyf33pmkCr-3gNRbkWSqcPxp0PdCx5JSGHz8,97373
|
615
679
|
diffusers/utils/dummy_torchao_objects.py,sha256=XiJAoV11rr_7aSgkb0vgYkdZOGjM1ouTuQZ4YrXzJ4g,502
|
616
680
|
diffusers/utils/dummy_transformers_and_torch_and_note_seq_objects.py,sha256=z-JrPgPo2dWv-buMytUqBd6QqEx8Uha6M1cKa6gR4Dc,621
|
617
|
-
diffusers/utils/dynamic_modules_utils.py,sha256=
|
681
|
+
diffusers/utils/dynamic_modules_utils.py,sha256=4jaBiBdtjTyQ7kBQnU8LPqiQ2J-KNVh63OupxsdDdQw,23090
|
618
682
|
diffusers/utils/export_utils.py,sha256=YIleDkRb3-m7a2NryRlnvSXLBbjjpkEfR7U5z-cUdO4,7749
|
619
|
-
diffusers/utils/hub_utils.py,sha256=
|
620
|
-
diffusers/utils/import_utils.py,sha256=
|
683
|
+
diffusers/utils/hub_utils.py,sha256=5dOVO3JSqIhuFHsylW0764nwGqTsykOSl51KvmbAias,24506
|
684
|
+
diffusers/utils/import_utils.py,sha256=kTYEYflkZ6vy7GCphDrlOs0c0vGd18Hp2zSoZt9aJuk,33552
|
621
685
|
diffusers/utils/loading_utils.py,sha256=6Qgm5vRGICI7daRewJOKGSBob4tGaoBOApAHhF5waPY,5300
|
622
686
|
diffusers/utils/logging.py,sha256=cFr8Bo_UydpL0NEeIwx7CHMUwyTWaFrZztY__nPfP3s,9470
|
623
687
|
diffusers/utils/model_card_template.md,sha256=ZhGhzjnMT2oPLbHnC0UYRNEpVC-okH-MLKjvkYsh-Ds,550
|
624
688
|
diffusers/utils/outputs.py,sha256=-bBcKV7uRT5nwB8QnqEN83yk4HhoJ9ToA729sFN3A9E,5030
|
625
|
-
diffusers/utils/peft_utils.py,sha256=
|
689
|
+
diffusers/utils/peft_utils.py,sha256=UtEtf0M_me6mHzibna7LsYH5cwNQj90NMeMou231Hto,14271
|
626
690
|
diffusers/utils/pil_utils.py,sha256=mNv1FfHvtdW-lpOemxwe-dNoSfSF_sptgpYELP-bA20,1979
|
627
691
|
diffusers/utils/remote_utils.py,sha256=DHtS6_2ggX45YltaE9i_o5mb5gJd-VnGjr7UJ18wg2Q,16117
|
628
692
|
diffusers/utils/source_code_parsing_utils.py,sha256=Mk4KHfymwXHYmV2zZdVsDSn-VJ97HvUV6fGfYSuYn8g,1863
|
629
693
|
diffusers/utils/state_dict_utils.py,sha256=ygt17dCeHowH5QxwQldJHZpc0sS_E-aCuzpjKmAZ3HA,14470
|
630
|
-
diffusers/utils/testing_utils.py,sha256=
|
631
|
-
diffusers/utils/torch_utils.py,sha256=
|
694
|
+
diffusers/utils/testing_utils.py,sha256=LSFTPVApvPOK9EHJYmgrUSRXzyYuHXFmEWHzvgF-wfw,56324
|
695
|
+
diffusers/utils/torch_utils.py,sha256=ogvNvRfOryc5riP-Ph_nopGEsuZtmIszMIDPrkSgnAY,7775
|
632
696
|
diffusers/utils/typing_utils.py,sha256=yeuCJmb1t5n5rG1JRPJo33KO7tg_m9ZwSXQcPKiKyFA,3400
|
633
697
|
diffusers/utils/versions.py,sha256=-e7XW1TzZ-tsRo9PMQHp-hNGYHuVDFzLtwg3uAJzqdI,4333
|
634
|
-
diffusers-0.
|
635
|
-
diffusers-0.
|
636
|
-
diffusers-0.
|
637
|
-
diffusers-0.
|
638
|
-
diffusers-0.
|
639
|
-
diffusers-0.
|
698
|
+
diffusers-0.35.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
699
|
+
diffusers-0.35.0.dist-info/METADATA,sha256=OuiQ94khN0Tc_VWQTWZcD2rJilMltLaf6V5fQUevC0I,20120
|
700
|
+
diffusers-0.35.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
701
|
+
diffusers-0.35.0.dist-info/entry_points.txt,sha256=_1bvshKV_6_b63_FAkcUs9W6tUKGeIoQ3SHEZsovEWs,72
|
702
|
+
diffusers-0.35.0.dist-info/top_level.txt,sha256=axJl2884vMSvhzrFrSoht36QXA_6gZN9cKtg4xOO72o,10
|
703
|
+
diffusers-0.35.0.dist-info/RECORD,,
|