diffusers 0.28.2__py3-none-any.whl → 0.29.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.
Files changed (118) hide show
  1. diffusers/__init__.py +9 -1
  2. diffusers/commands/env.py +1 -5
  3. diffusers/dependency_versions_table.py +1 -1
  4. diffusers/image_processor.py +2 -1
  5. diffusers/loaders/__init__.py +2 -2
  6. diffusers/loaders/lora.py +406 -140
  7. diffusers/loaders/lora_conversion_utils.py +7 -1
  8. diffusers/loaders/single_file.py +1 -1
  9. diffusers/loaders/single_file_model.py +5 -0
  10. diffusers/loaders/single_file_utils.py +242 -2
  11. diffusers/loaders/unet.py +307 -272
  12. diffusers/models/__init__.py +5 -3
  13. diffusers/models/attention.py +125 -1
  14. diffusers/models/attention_processor.py +169 -1
  15. diffusers/models/autoencoders/__init__.py +1 -0
  16. diffusers/models/autoencoders/autoencoder_asym_kl.py +1 -1
  17. diffusers/models/autoencoders/autoencoder_kl.py +17 -6
  18. diffusers/models/autoencoders/autoencoder_kl_temporal_decoder.py +4 -2
  19. diffusers/models/autoencoders/consistency_decoder_vae.py +9 -9
  20. diffusers/models/autoencoders/vq_model.py +182 -0
  21. diffusers/models/controlnet_xs.py +6 -6
  22. diffusers/models/embeddings.py +112 -84
  23. diffusers/models/model_loading_utils.py +55 -0
  24. diffusers/models/modeling_utils.py +128 -17
  25. diffusers/models/normalization.py +11 -6
  26. diffusers/models/transformers/__init__.py +1 -0
  27. diffusers/models/transformers/dual_transformer_2d.py +5 -4
  28. diffusers/models/transformers/hunyuan_transformer_2d.py +149 -2
  29. diffusers/models/transformers/prior_transformer.py +5 -5
  30. diffusers/models/transformers/transformer_2d.py +2 -2
  31. diffusers/models/transformers/transformer_sd3.py +344 -0
  32. diffusers/models/transformers/transformer_temporal.py +12 -10
  33. diffusers/models/unets/unet_1d.py +3 -3
  34. diffusers/models/unets/unet_2d.py +3 -3
  35. diffusers/models/unets/unet_2d_condition.py +4 -15
  36. diffusers/models/unets/unet_3d_condition.py +5 -17
  37. diffusers/models/unets/unet_i2vgen_xl.py +4 -4
  38. diffusers/models/unets/unet_motion_model.py +4 -4
  39. diffusers/models/unets/unet_spatio_temporal_condition.py +3 -3
  40. diffusers/models/vq_model.py +8 -165
  41. diffusers/pipelines/__init__.py +2 -0
  42. diffusers/pipelines/animatediff/pipeline_animatediff.py +4 -3
  43. diffusers/pipelines/animatediff/pipeline_animatediff_video2video.py +4 -3
  44. diffusers/pipelines/controlnet/pipeline_controlnet.py +4 -3
  45. diffusers/pipelines/controlnet/pipeline_controlnet_img2img.py +4 -3
  46. diffusers/pipelines/controlnet/pipeline_controlnet_inpaint.py +4 -3
  47. diffusers/pipelines/controlnet_xs/pipeline_controlnet_xs.py +4 -3
  48. diffusers/pipelines/deepfloyd_if/watermark.py +1 -1
  49. diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_cycle_diffusion.py +4 -3
  50. diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_inpaint_legacy.py +4 -3
  51. diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_model_editing.py +4 -3
  52. diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_paradigms.py +4 -3
  53. diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_pix2pix_zero.py +4 -3
  54. diffusers/pipelines/hunyuandit/pipeline_hunyuandit.py +24 -5
  55. diffusers/pipelines/latent_consistency_models/pipeline_latent_consistency_img2img.py +4 -3
  56. diffusers/pipelines/latent_consistency_models/pipeline_latent_consistency_text2img.py +4 -3
  57. diffusers/pipelines/marigold/marigold_image_processing.py +35 -20
  58. diffusers/pipelines/pia/pipeline_pia.py +4 -3
  59. diffusers/pipelines/pixart_alpha/pipeline_pixart_alpha.py +1 -1
  60. diffusers/pipelines/pixart_alpha/pipeline_pixart_sigma.py +1 -1
  61. diffusers/pipelines/semantic_stable_diffusion/pipeline_semantic_stable_diffusion.py +17 -17
  62. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion.py +4 -3
  63. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_depth2img.py +5 -4
  64. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_img2img.py +4 -3
  65. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_inpaint.py +4 -3
  66. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_upscale.py +4 -3
  67. diffusers/pipelines/stable_diffusion/pipeline_stable_unclip.py +4 -3
  68. diffusers/pipelines/stable_diffusion/pipeline_stable_unclip_img2img.py +7 -6
  69. diffusers/pipelines/stable_diffusion_3/__init__.py +52 -0
  70. diffusers/pipelines/stable_diffusion_3/pipeline_output.py +21 -0
  71. diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3.py +886 -0
  72. diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3_img2img.py +923 -0
  73. diffusers/pipelines/stable_diffusion_attend_and_excite/pipeline_stable_diffusion_attend_and_excite.py +4 -3
  74. diffusers/pipelines/stable_diffusion_diffedit/pipeline_stable_diffusion_diffedit.py +10 -11
  75. diffusers/pipelines/stable_diffusion_gligen/pipeline_stable_diffusion_gligen.py +4 -3
  76. diffusers/pipelines/stable_diffusion_gligen/pipeline_stable_diffusion_gligen_text_image.py +4 -3
  77. diffusers/pipelines/stable_diffusion_k_diffusion/pipeline_stable_diffusion_k_diffusion.py +4 -3
  78. diffusers/pipelines/stable_diffusion_ldm3d/pipeline_stable_diffusion_ldm3d.py +4 -3
  79. diffusers/pipelines/stable_diffusion_panorama/pipeline_stable_diffusion_panorama.py +4 -3
  80. diffusers/pipelines/stable_diffusion_sag/pipeline_stable_diffusion_sag.py +4 -3
  81. diffusers/pipelines/t2i_adapter/pipeline_stable_diffusion_adapter.py +4 -3
  82. diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_synth.py +4 -3
  83. diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_synth_img2img.py +4 -3
  84. diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_zero.py +4 -3
  85. diffusers/pipelines/unidiffuser/modeling_uvit.py +1 -1
  86. diffusers/pipelines/unidiffuser/pipeline_unidiffuser.py +4 -3
  87. diffusers/schedulers/__init__.py +2 -0
  88. diffusers/schedulers/scheduling_dpmsolver_sde.py +2 -2
  89. diffusers/schedulers/scheduling_edm_dpmsolver_multistep.py +2 -3
  90. diffusers/schedulers/scheduling_edm_euler.py +2 -4
  91. diffusers/schedulers/scheduling_flow_match_euler_discrete.py +287 -0
  92. diffusers/schedulers/scheduling_lms_discrete.py +2 -2
  93. diffusers/training_utils.py +4 -4
  94. diffusers/utils/__init__.py +3 -0
  95. diffusers/utils/constants.py +2 -0
  96. diffusers/utils/dummy_pt_objects.py +30 -0
  97. diffusers/utils/dummy_torch_and_transformers_objects.py +30 -0
  98. diffusers/utils/dynamic_modules_utils.py +15 -13
  99. diffusers/utils/hub_utils.py +106 -0
  100. diffusers/utils/import_utils.py +0 -1
  101. diffusers/utils/logging.py +3 -1
  102. diffusers/utils/state_dict_utils.py +2 -0
  103. {diffusers-0.28.2.dist-info → diffusers-0.29.0.dist-info}/METADATA +45 -45
  104. {diffusers-0.28.2.dist-info → diffusers-0.29.0.dist-info}/RECORD +108 -111
  105. {diffusers-0.28.2.dist-info → diffusers-0.29.0.dist-info}/WHEEL +1 -1
  106. diffusers/models/dual_transformer_2d.py +0 -20
  107. diffusers/models/prior_transformer.py +0 -12
  108. diffusers/models/t5_film_transformer.py +0 -70
  109. diffusers/models/transformer_2d.py +0 -25
  110. diffusers/models/transformer_temporal.py +0 -34
  111. diffusers/models/unet_1d.py +0 -26
  112. diffusers/models/unet_1d_blocks.py +0 -203
  113. diffusers/models/unet_2d.py +0 -27
  114. diffusers/models/unet_2d_blocks.py +0 -375
  115. diffusers/models/unet_2d_condition.py +0 -25
  116. {diffusers-0.28.2.dist-info → diffusers-0.29.0.dist-info}/LICENSE +0 -0
  117. {diffusers-0.28.2.dist-info → diffusers-0.29.0.dist-info}/entry_points.txt +0 -0
  118. {diffusers-0.28.2.dist-info → diffusers-0.29.0.dist-info}/top_level.txt +0 -0
@@ -1,102 +1,94 @@
1
- diffusers/__init__.py,sha256=TCxN1J6qK29D0suqUxdljzlP3elkWcE68HF4QMK4IBA,29631
1
+ diffusers/__init__.py,sha256=tmF_YOQuPHpImAexR_2QhNgRyNzkDDvHb7ykeXa8xvA,29965
2
2
  diffusers/callbacks.py,sha256=m8ariuJC-WaPHMZn1zUyXG8hlAvaOvEW_6YWdKo--eo,6717
3
3
  diffusers/configuration_utils.py,sha256=6t5iVg-yYJKV7ZZKpXnwYMK1FcJ3X09KBKoInsDy27s,32779
4
4
  diffusers/dependency_versions_check.py,sha256=J_ZAEhVN6uLWAOUZCJrcGJ7PYxUek4f_nwGTFM7LTk8,1271
5
- diffusers/dependency_versions_table.py,sha256=-2tAkcFxpVdufD-grKlnHgC0a1jSmNW3JCBC9wwcfgY,1507
6
- diffusers/image_processor.py,sha256=pQYdxRJ7d5DFhtPp2An8OpZYabOBQVzVrz1gbzVQ7QM,45242
5
+ diffusers/dependency_versions_table.py,sha256=zR15v0HiFoEnNqh8V3FJOvofva5cT0SE7MwpGckGdeE,1507
6
+ diffusers/image_processor.py,sha256=9-brBAp8XF4pMCPqgowBLRYBTdFQ06s12jAbb5HdvxE,45296
7
7
  diffusers/optimization.py,sha256=jpSY6io5iZ52aOniErG75M2nVIyAzq26ebmc-Z-eKIc,14743
8
8
  diffusers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
- diffusers/training_utils.py,sha256=JNNYJOHOxKidwfHoIG84MSRgD3wXkLH_77mhLr-rb4w,21453
9
+ diffusers/training_utils.py,sha256=HD43ynmu8YeCMQKeo8BicYz60aA9M3jVYmR4EWWBMBw,21459
10
10
  diffusers/video_processor.py,sha256=hihxsWHhlzRyJ-PvjZxLn3ZUyju3xoKihJwLpFgxW0g,5402
11
11
  diffusers/commands/__init__.py,sha256=e1sgAW5bxBDlJTn_TgR8iSQhtjw04glgrXsYrcbgdBE,920
12
12
  diffusers/commands/diffusers_cli.py,sha256=6kpidukBQM7cYt8FoSaXf0hEcVZ_HQfg_G38quDMkQQ,1317
13
- diffusers/commands/env.py,sha256=jqde3sYeQ-9KG6p8yaNIHvH2j_88M5JEpl3owhaOVos,6597
13
+ diffusers/commands/env.py,sha256=HUuMSdX-Mdr8mb7gf6jbDNXBmI1VDHU3u5z2hermnN4,6366
14
14
  diffusers/commands/fp16_safetensors.py,sha256=l23vUS9cNYyNB_sXx3iRNhSZuFyXNub-b7oeu8E9MFw,5423
15
15
  diffusers/experimental/__init__.py,sha256=0C9ExG0XYiGZuzFJkZuJ53K6Ix5ylF2kWe4PGASchtY,38
16
16
  diffusers/experimental/rl/__init__.py,sha256=Gcoznw9rYjfMvswH0seXekKYDAAN1YXXxZ-RWMdzvrE,57
17
17
  diffusers/experimental/rl/value_guided_sampling.py,sha256=gnUDVNx5nIVJDWxhHBlga4j7VQTxSTkUI1QaCnpiWAM,6033
18
- diffusers/loaders/__init__.py,sha256=AZB06xQrz-dHp9ARxTBXYjvPuXc1xCVaKrf3ltN4EGY,3590
18
+ diffusers/loaders/__init__.py,sha256=Cw4bXN3ZshfZjPeY12apvz4BGIWZp_uRP2wvz9P90Ic,3632
19
19
  diffusers/loaders/autoencoder.py,sha256=dNGqHz-23bvOtoDn5EL0mYoqzgBf-Aqx4wlSWpqN3jk,7591
20
20
  diffusers/loaders/controlnet.py,sha256=mhFqu9tzaq_xI5-hmLyr2Fug_GMk_n09T0qf6D-Euws,7034
21
21
  diffusers/loaders/ip_adapter.py,sha256=2CGSdTC86QXYMDuaZ63DlX4FdRYV1-m2Epi2I7Yjnzo,16767
22
- diffusers/loaders/lora.py,sha256=i-WMTAouCuQLhfPPUvfs-eNVyv2z1IQI7AH7YX-kIb8,69315
23
- diffusers/loaders/lora_conversion_utils.py,sha256=5k3nwyVrLfcL9_Gvr9n8GIUO4v19poustygYfaDUK1k,14317
22
+ diffusers/loaders/lora.py,sha256=XoQl7ewYLPxsLP4YaDiT3-GxWcf1emSUqB-YuYgrdWg,79918
23
+ diffusers/loaders/lora_conversion_utils.py,sha256=BMwKgSMRywPEp6UiooCdO26EjyrAsd0mVYwkCER5Km8,14707
24
24
  diffusers/loaders/peft.py,sha256=hGCGWkGAwarQ0je_LRznpSypwlBpQU3Lx86FtQQ8cNs,8389
25
- diffusers/loaders/single_file.py,sha256=PcB08eG0jAWEb-t85HnuE6v9WqdW-IOv8eCtXZWG7og,24233
26
- diffusers/loaders/single_file_model.py,sha256=Qy7onZMsR4wIceZ73jHy_XT_xVWn_xU-XNBb3P3-Bog,13494
27
- diffusers/loaders/single_file_utils.py,sha256=PZsj3mhZODN2SzinVv2NZCsKCeN0i5QuwwpJ3dWD37Y,63497
25
+ diffusers/loaders/single_file.py,sha256=bW9uur_aMTFhIK_g4p0ZCg6tktCoLHM7B3HxFW1avZ8,24247
26
+ diffusers/loaders/single_file_model.py,sha256=FHndgABJI9RlLugokFb5jtzIQrzxho7Vl-gFzsxhQR8,13711
27
+ diffusers/loaders/single_file_utils.py,sha256=VS7tD5OdXWec0n2oFu_eA0MJSscDIjtH6NmaJvoy-kI,74764
28
28
  diffusers/loaders/textual_inversion.py,sha256=HU8-1SR03UpkQXEQlhJBB0Gxbnlf7njXRh6KjVt3LFo,26999
29
- diffusers/loaders/unet.py,sha256=k3lmHdBemk28uP9UAQ4VPzan6m7Z4PPrVKf3dqoLm7k,49818
29
+ diffusers/loaders/unet.py,sha256=gORAhdw47AYlnW8Liw78MNxhdpUHZn1GbfPZ2bCFqY0,50535
30
30
  diffusers/loaders/unet_loader_utils.py,sha256=9IHd_RlKqMstSO8G7btUdL1-Y3-fGX7Kbc4frEbRVVM,6220
31
31
  diffusers/loaders/utils.py,sha256=IgI-rwNZ-xRx_jIgp61xHkeLAvqm3FSpJ674s5LzE_k,2423
32
- diffusers/models/__init__.py,sha256=bW4lG797uJd3gqFLrrO8MNEBh150O5rJm0N2Md3g8hE,4840
32
+ diffusers/models/__init__.py,sha256=o_sfSznTIdMKfxKLWXkf-jVgvsDCLDq0q-_MNisIgdg,4966
33
33
  diffusers/models/activations.py,sha256=7gly0cF1lZ7wX_p0w7bk4ja8EAjcqDYnAURQ4-s-f0M,5149
34
34
  diffusers/models/adapter.py,sha256=XuVoUbhLkPEOeClqYiTm8KGMQrXgn2WZU3I73-jkcew,24723
35
- diffusers/models/attention.py,sha256=JJeh45SJiWLIl2uwcOm68DKhBR5iJ8TI3-DOMf2t5AU,27889
35
+ diffusers/models/attention.py,sha256=FCs8wO5CUEeYAO7aV0gx2IR8TTMcovIUCLDjJIckW6g,33375
36
36
  diffusers/models/attention_flax.py,sha256=Ju2KJCqsx_LIiz0i1pBcek7RMKTmVOIF4SvEcOqgJ1c,20250
37
- diffusers/models/attention_processor.py,sha256=dlOUGV7PhNBqSI36i0eR2HrIGbJCUhEs-zd-NEYnILQ,122743
37
+ diffusers/models/attention_processor.py,sha256=4ZdbCIulzoxPGfbVYtlo1hL06uuehihl0K-nZGxHFl0,129950
38
38
  diffusers/models/controlnet.py,sha256=64prFwCNWkvQTUS94N-YkIZoTdUpSlpBdU4vYeOp9no,43276
39
39
  diffusers/models/controlnet_flax.py,sha256=_UuB-tNxQ9eR8v3dqDhF2Mz-6thIdEI6BlY8BpWpkvU,16710
40
- diffusers/models/controlnet_xs.py,sha256=OsZAAmlHuc2vxdwOTr73dWqJGVE2oRcCDizvkq6Lgcg,85281
40
+ diffusers/models/controlnet_xs.py,sha256=sgFVAvuXSntq_t_05nwLW2Qagwlg-iXBHeytpP7HZf0,85297
41
41
  diffusers/models/downsampling.py,sha256=INecPKokYAm-z_l5n9r1cE3a2g1f8OtmBqLOZQBjp2w,12372
42
- diffusers/models/dual_transformer_2d.py,sha256=kcyBXJB16ge1TVuBHeCb_vySJInCDn_7X304ztGT5vI,1105
43
- diffusers/models/embeddings.py,sha256=bHQAMfQ5x79CflxHaHljWqjP_XkDVAjUdd8aNX1HODg,48317
42
+ diffusers/models/embeddings.py,sha256=QhFbh-045Sc2arm-d3q6FaEwGEiEYGwgE_56z9PYUzM,49643
44
43
  diffusers/models/embeddings_flax.py,sha256=hNN63qtv9Ht6VEeidrIJdrdKWm0o8mumcgzxMNaR2H0,3445
45
44
  diffusers/models/lora.py,sha256=7LbI7bj8yk9GptoOnOLrhzarFcVSQX47LuGoZ1MBK0A,18829
46
- diffusers/models/model_loading_utils.py,sha256=EuFLIZfH1r5zHINTPXWhlJhDlFiRFEcv-HPOeFS2dg0,7024
45
+ diffusers/models/model_loading_utils.py,sha256=SiZnzYjXFrrcwu8mLmAADZFwNQymg_EI_uHoyMy1Sls,8609
47
46
  diffusers/models/modeling_flax_pytorch_utils.py,sha256=h8KonTFgb_-4RnESXhJGeuW_buCIQ_cbS9xptt8G2i8,5332
48
47
  diffusers/models/modeling_flax_utils.py,sha256=HL6sB4vubPny4COMuKbuGrcznoOfxrxS9BrLdKF4FSs,27295
49
48
  diffusers/models/modeling_outputs.py,sha256=XH3sJO34MRW6UuWqqKo05mVqxGSBFRazpap_-YLwO2I,1042
50
49
  diffusers/models/modeling_pytorch_flax_utils.py,sha256=sEf_jVR2nF0_derGLAOKIfSUc7HWNLM61RTXDLGoE7A,6973
51
- diffusers/models/modeling_utils.py,sha256=oMDds4p6SNNJmEFpPQnXSDzhLX1rShfc937-pgzNC3c,50855
52
- diffusers/models/normalization.py,sha256=a1Gdf3YJFzOAVWtNIM5qTMf8ai8pxWSjbuE_2eUzQ9c,9646
53
- diffusers/models/prior_transformer.py,sha256=oihNB0R9OM2WGvPMLvDbUE3M--bcsJ6B_JwM6dOqCeo,877
50
+ diffusers/models/modeling_utils.py,sha256=Zw6sbE1Im5nc8M-mJ6V1sFaWoOmKKP8dCcPGlcnYprA,56751
51
+ diffusers/models/normalization.py,sha256=QbJLSfMfduIakq8Cl12hVYr_sdKLxsBNmKDP1GA3jao,9880
54
52
  diffusers/models/resnet.py,sha256=ML9EdypGYniSay_EsyswuTlmGi7429WJhYqIW7VEBoQ,32241
55
53
  diffusers/models/resnet_flax.py,sha256=tqRZQCZIq7NlXex3eGldyhRpZjr_EXWl1l2eVflFV7c,4021
56
- diffusers/models/t5_film_transformer.py,sha256=HDoaHS3oLNbNzagVepheFHgvfvcDoKiyKpiPoffww0Q,4196
57
- diffusers/models/transformer_2d.py,sha256=ufNZeXmj1EjLWqUVevfFIQpcux28RSyFpYIltOQ-7u4,1492
58
- diffusers/models/transformer_temporal.py,sha256=cm1M_o-OBJE_7Gb4uXXrLE865jyWXeSvFfUceLBOmLg,2085
59
- diffusers/models/unet_1d.py,sha256=xMTvJORijQ7Qu9ujmx3Y2gX74CFke3jTITYwIpRhLvU,1323
60
- diffusers/models/unet_1d_blocks.py,sha256=vfF0ydu_VEsNCzxVe11EpVnRjgyJCSbcB2DsrUhtZ1k,9963
61
- diffusers/models/unet_2d.py,sha256=Qkp6VR2DjeTyt0F3C9x4AI4vd5Tu-S-6WhQUtAOfkwg,1324
62
- diffusers/models/unet_2d_blocks.py,sha256=8Y7d1RaKm7sblh76b-kiKhywkljzqPxgyy9NLzmAShQ,18582
63
- diffusers/models/unet_2d_condition.py,sha256=A8lUVtTaZWLVySQlVzADJvQC1DBtP53t7i1qwIV0pvo,1480
64
54
  diffusers/models/upsampling.py,sha256=CAp60rVycsOvoewpZ79Rmh8l5fgdqURXqWt4D0hA8cA,16599
65
55
  diffusers/models/vae_flax.py,sha256=H-fZdwSllq2TPPm2wR2W5bN0v7zRIXP3mLpLBbQI7Rg,31942
66
- diffusers/models/vq_model.py,sha256=IudDY1u5eR8ioTkortwlwNxcwXIZoEwA82WIrYPqEic,7768
67
- diffusers/models/autoencoders/__init__.py,sha256=OnnMEqzy9IxqcYyoSbSh-vQfZKoKb8v27a2vtQez_MM,278
68
- diffusers/models/autoencoders/autoencoder_asym_kl.py,sha256=za7ob7GslMyDLcrzbOcdxkL-80uJGMIYF6bBVTwQjTQ,7709
69
- diffusers/models/autoencoders/autoencoder_kl.py,sha256=JF_rh-biqOtgMptYLJ9Pckx2w2yiJ7pq1LUX7-Y8g18,21406
70
- diffusers/models/autoencoders/autoencoder_kl_temporal_decoder.py,sha256=_JLLwuaSHLwAs1p6J7E_6XLF1XTR-nLHeQg1Llc-Ju4,16217
56
+ diffusers/models/vq_model.py,sha256=iUJZAJAG1ktR1asWV2goSBmNrs6xumK_HsamZbe7J84,1342
57
+ diffusers/models/autoencoders/__init__.py,sha256=yw_s7QyS7YXLFcZgVa4bUHeNi6vIvAsW6eC7mMIwtiA,308
58
+ diffusers/models/autoencoders/autoencoder_asym_kl.py,sha256=BQcgLKgQY3D9dBoqcb6G1Syvh02mE548z2PBSNbOKTI,7720
59
+ diffusers/models/autoencoders/autoencoder_kl.py,sha256=34eT5c2o6pLFx9SObUS-pfnScla7qjCDEBUYomnHt7g,21734
60
+ diffusers/models/autoencoders/autoencoder_kl_temporal_decoder.py,sha256=D7F_m0KBNP4GJ8j2o9np3XMmYONl6O1XV55NKOKEUdA,16275
71
61
  diffusers/models/autoencoders/autoencoder_tiny.py,sha256=dZQT85kvd38wVzUi-bQH0Gz0wbxwhBMiDg35z3uvTwk,15957
72
- diffusers/models/autoencoders/consistency_decoder_vae.py,sha256=eSXHRKWOO4xl5VcDpzVljdiljjLtahQD37mkx8Ku2GE,19670
62
+ diffusers/models/autoencoders/consistency_decoder_vae.py,sha256=K5P5yJQb7JXlN7cZgDVhtBVNY8K1mwswr8kiwNR-7bk,19735
73
63
  diffusers/models/autoencoders/vae.py,sha256=Xzj7pt2H2D5AnILpzjwCyx29B70RqK-muZZBdafE6ZE,36545
74
- diffusers/models/transformers/__init__.py,sha256=caEgf46v5Coo51MzIIc3aXxwvo7n8QMXiNObQ_kgaRA,524
64
+ diffusers/models/autoencoders/vq_model.py,sha256=UZ81ieDtJz-wWs9TdyKm_cInblU68Oivdy3U9i8emOU,7773
65
+ diffusers/models/transformers/__init__.py,sha256=eoX5oXgpn0fvnwA__H9yDcx1ovu1e9NFOgd40o8UXAI,579
75
66
  diffusers/models/transformers/dit_transformer_2d.py,sha256=o3MT0w2m4BrdGp0KUonm9QqhVpNVzYzRyKuuPnH02Nc,11158
76
- diffusers/models/transformers/dual_transformer_2d.py,sha256=RxwHmLqzG4PLytCogrPUPmANQFe3rVGZXq0GWRsgtfA,7655
77
- diffusers/models/transformers/hunyuan_transformer_2d.py,sha256=RwRuXNqxtha0LEpW0anC39Fr5UeR5WNFEVrvNIniJIU,17169
67
+ diffusers/models/transformers/dual_transformer_2d.py,sha256=TEgdpVW9itJ97YgslzKnYWg-2V4Oq7AMHipMxON-72Y,7711
68
+ diffusers/models/transformers/hunyuan_transformer_2d.py,sha256=RY57YF2tZ7nlO-WYd1u0yg5GUi2fBJWt0rIkZQTw0go,23692
78
69
  diffusers/models/transformers/pixart_transformer_2d.py,sha256=B4Z1HYKKjvo9cOv2n231w30R-RZIApYoPWBkzskdPhc,16947
79
- diffusers/models/transformers/prior_transformer.py,sha256=b0qQucaFG6IKJIZwjZ79sTuuBq_CBdA3soLZjSLHEmI,17313
70
+ diffusers/models/transformers/prior_transformer.py,sha256=-KSsTuYREFoopKCjPcERlu67_e1zgnQuSxZo4_sHxIY,17352
80
71
  diffusers/models/transformers/t5_film_transformer.py,sha256=rem0WHICvYntqtjGtlBqNFVn40BocnMmeH26rY8650s,16024
81
- diffusers/models/transformers/transformer_2d.py,sha256=iyGB99H7xC7LGbAbNx9vzP7hBbwK_sQy1Li-u059MdA,28849
82
- diffusers/models/transformers/transformer_temporal.py,sha256=Dy1sIOx0vrT2sgTfaoKA_tdVfr_tioUqxktv2S4fxhc,16818
72
+ diffusers/models/transformers/transformer_2d.py,sha256=ZXf2MBaegqbOynJoOYpDmcM1xNLtg35gsQSCcI212G8,28862
73
+ diffusers/models/transformers/transformer_sd3.py,sha256=wGZBYs9iif5cdMptf8aRDL7GLViPdm7r5Gj5Cbg5Q2c,15339
74
+ diffusers/models/transformers/transformer_temporal.py,sha256=qDxaL2Q7SBdkkFOqXf7iCV6WEK-FRoBXRble_lUzMLo,16934
83
75
  diffusers/models/unets/__init__.py,sha256=srYFA7zEcDY7LxyUB2jz3TdRgsLz8elrWCpT6Y4YXuU,695
84
- diffusers/models/unets/unet_1d.py,sha256=Yj4XN7jU1Gmu39T8D3zqLCm5TT8SxXMF-wDu-lZM1fo,10769
76
+ diffusers/models/unets/unet_1d.py,sha256=hcm9wvBsR_2WMO_va_O7HmHbFdUWGU7DX_KEFzqVKvQ,10787
85
77
  diffusers/models/unets/unet_1d_blocks.py,sha256=sQ4Ix9g7gpkOqECkPATxPSXLsXL2Ifrr9vSOVSqbOn8,26833
86
- diffusers/models/unets/unet_2d.py,sha256=mpoekO_CiWOGX9Ja5b1OINcZ0XK5pUzElKAHntuWR0M,16551
78
+ diffusers/models/unets/unet_2d.py,sha256=dbctDy1nnHqxUhI4MAuC5nOhu1a2ZjO4GiEY6Oz4xiY,16569
87
79
  diffusers/models/unets/unet_2d_blocks.py,sha256=-1yODtkn4Ry2GbPLvXu5eDy3hZB-Hf9sVOKP35r1oHA,147552
88
80
  diffusers/models/unets/unet_2d_blocks_flax.py,sha256=k6IGsqPXIm_WczW_HQzVqlu0UuKdmeC7JQGBk21gTVM,15572
89
- diffusers/models/unets/unet_2d_condition.py,sha256=xMOY3KLEbjFKGW8t8Ze85N4EgJ71cKfEUt_e1S2Id20,67162
81
+ diffusers/models/unets/unet_2d_condition.py,sha256=mNUe1Gc3ZEET7CciWMzwaZo7AcHQCDB4e9V1TxhQVcM,66773
90
82
  diffusers/models/unets/unet_2d_condition_flax.py,sha256=NRXESLsjv_HqOyd2axFg6knoJwtaMmfie4PKAr0-M0o,22281
91
83
  diffusers/models/unets/unet_3d_blocks.py,sha256=Kjyz3RPMk-5jfM5Ef89m3qLTMYB5K7cPxs8ZGbcJY5Y,89255
92
- diffusers/models/unets/unet_3d_condition.py,sha256=nCeYiJa0ZsfVn1Sb95L8HfYC1gBncXDtcvVJrnsKEV8,34894
93
- diffusers/models/unets/unet_i2vgen_xl.py,sha256=tDB9OP5jWlPfRnRRXR9sXRujtniX2AlwPDqLpgWpHwQ,32699
84
+ diffusers/models/unets/unet_3d_condition.py,sha256=gXUhka1wUKKdcqtF7TvhiC8UEsfS52osifLQGl933qM,34384
85
+ diffusers/models/unets/unet_i2vgen_xl.py,sha256=gIinZrdSGQf2iu1cgKWN2xDeHB_3pXv-nVyC9x_qBYE,32717
94
86
  diffusers/models/unets/unet_kandinsky3.py,sha256=CHSmx_Sbte42uA-UpuPcopQoLzSBm1D1DeXTd5dbxnc,20753
95
- diffusers/models/unets/unet_motion_model.py,sha256=59KQEkvJtq-L4ef_gwMmeRQHLztta_9CKq634YYr1HQ,47672
96
- diffusers/models/unets/unet_spatio_temporal_condition.py,sha256=llCTT0ZzQvT-vz-y5nC4CmB2eslGPRzN2_e96bMJIbM,22081
87
+ diffusers/models/unets/unet_motion_model.py,sha256=UG1i4PwDzN-tlhwb2eNGoRgtNzRckVQMm1vlLyuso-w,47690
88
+ diffusers/models/unets/unet_spatio_temporal_condition.py,sha256=9aaCaYOgsS5BvFLATnq5fB1j8Cc8Lvb-lHAb-c2pt4A,22099
97
89
  diffusers/models/unets/unet_stable_cascade.py,sha256=JDKRKPrlWiWaDy283R0inv6NpIwmpMLoxs_lR42xx48,28390
98
90
  diffusers/models/unets/uvit_2d.py,sha256=ScLWI09Wref-vU25gWYao4DojlfGxMRz7cmCQUKV01A,17338
99
- diffusers/pipelines/__init__.py,sha256=fF-74zCxqzEY2HGlIKiOj_Ry_xrALyiOD-yT9TDsRUM,23133
91
+ diffusers/pipelines/__init__.py,sha256=pDtY9LrIX9wZA2XGn1tmBaN1wEIQEl1xAfCuM6kbqlc,23341
100
92
  diffusers/pipelines/auto_pipeline.py,sha256=IhT3Uz4TIl0zukS859Q3uFMldC7nQ9ipbuY5zYXxgJs,50299
101
93
  diffusers/pipelines/free_init_utils.py,sha256=LJ4c3eaozTR6u5otrdbbR-rtscOfRluZptp1O1zam_s,7654
102
94
  diffusers/pipelines/onnx_utils.py,sha256=6TK_wddhFsKqPejOrAHL-cavB45j30Sd8bMOfJGprms,8329
@@ -108,9 +100,9 @@ diffusers/pipelines/amused/pipeline_amused.py,sha256=g9A_xetAmk9B23db-IBHMTnuuMh
108
100
  diffusers/pipelines/amused/pipeline_amused_img2img.py,sha256=6MSHfNtSb_X122fuWw2wO0IIuMOhJx59SSCyUsRpp7I,17102
109
101
  diffusers/pipelines/amused/pipeline_amused_inpaint.py,sha256=iArloKjvLtOYcCN1HmKW-uwWGRXbAtA7DBRU0c5Mgjc,18788
110
102
  diffusers/pipelines/animatediff/__init__.py,sha256=EzY8LNay_xJRPbXrp-oBEC3UBVA26juNz4zFvC78Cro,1736
111
- diffusers/pipelines/animatediff/pipeline_animatediff.py,sha256=iKOvaSVDnjTtua3NNMUZ4RkdWLHdDu0OLFxYZyEigkw,40795
103
+ diffusers/pipelines/animatediff/pipeline_animatediff.py,sha256=a2t4UxQI1RtzKplg1BWUzj0VpGZdNf7ndPXq9jIRa60,40849
112
104
  diffusers/pipelines/animatediff/pipeline_animatediff_sdxl.py,sha256=X4p4zoFuf1VvP-ijy6V9yMJv_RvDR-zEJzB5O_ea2bU,65804
113
- diffusers/pipelines/animatediff/pipeline_animatediff_video2video.py,sha256=ny3HOoxbsyoLJbfJVEdkvXJLatQnzgsbx_Og4fzkNAA,49613
105
+ diffusers/pipelines/animatediff/pipeline_animatediff_video2video.py,sha256=OmUwN2eg8pQX0Z3nlHUCjEVVLqam-tT6u91CzVXULbQ,49667
114
106
  diffusers/pipelines/animatediff/pipeline_output.py,sha256=Ggp2OfMwdOPjHh4wIEN5aHJHDiSU0ORyzWzfdysrtcA,729
115
107
  diffusers/pipelines/audioldm/__init__.py,sha256=HMUjKqEf7OAtgIeV2CQoGIoDE6oY7b26N55yn4qCIpU,1419
116
108
  diffusers/pipelines/audioldm/pipeline_audioldm.py,sha256=M4ctBoDtD80KHBRdGWYMP_1m_yF9dAlJbh-7JKke_2w,26004
@@ -126,16 +118,16 @@ diffusers/pipelines/consistency_models/__init__.py,sha256=q_nrLK9DH0_kLcLmRIvgvL
126
118
  diffusers/pipelines/consistency_models/pipeline_consistency_models.py,sha256=U65dLRF3UvzN9MmVJya68JTUoRI52GSXnGrgbBnRngk,12368
127
119
  diffusers/pipelines/controlnet/__init__.py,sha256=V5lvvD6DALNY3InsdwVmRz65_ZlWM-mPoATmu-yxCtk,3483
128
120
  diffusers/pipelines/controlnet/multicontrolnet.py,sha256=MX0b91jneER_ztF_Sy7ApQPh4Br5Y7Ag7xmbE-iTqyI,9431
129
- diffusers/pipelines/controlnet/pipeline_controlnet.py,sha256=QnmBC5a_nj7yO7GAjwezhnmqigjyc_I2YnYs483tUTQ,68998
121
+ diffusers/pipelines/controlnet/pipeline_controlnet.py,sha256=qnzjoEFaIWu4yejS_KoOeRUom01IFRiFxHXjIeMmBMY,69052
130
122
  diffusers/pipelines/controlnet/pipeline_controlnet_blip_diffusion.py,sha256=R73J5QcyM7u5jjT83FTFDvDTTb0WsV04dTjBRP_BG68,17363
131
- diffusers/pipelines/controlnet/pipeline_controlnet_img2img.py,sha256=ZjXbHZuAK940bdPMRO6If7_-lzowf50EQz5znP9-39o,66815
132
- diffusers/pipelines/controlnet/pipeline_controlnet_inpaint.py,sha256=IDSOJ4cD4_tD-VSE43-m0LfGDE68Qo4jV-bAA5IrUxs,81764
123
+ diffusers/pipelines/controlnet/pipeline_controlnet_img2img.py,sha256=Jho7aDaYvonseYXscEFboZM4ga_X2bLb6zYapr-ZOQE,66869
124
+ diffusers/pipelines/controlnet/pipeline_controlnet_inpaint.py,sha256=vfqzazrkbXg16GtF19ejzZ8zazfXj40c2u8i07HBAmc,81818
133
125
  diffusers/pipelines/controlnet/pipeline_controlnet_inpaint_sd_xl.py,sha256=uLVbUaThT--cRlo5ReOmL1pBA_IFuLPyfBmNjC6MVQQ,94194
134
126
  diffusers/pipelines/controlnet/pipeline_controlnet_sd_xl.py,sha256=XxVSCnS7sJ9FOfkyFqJTsV-nRcx7w1SOe6-oKUcVor8,82443
135
127
  diffusers/pipelines/controlnet/pipeline_controlnet_sd_xl_img2img.py,sha256=up2sXg8b1n0ArsfkAkrlVCziWuz_48hhZYiuHb9JRIo,86586
136
128
  diffusers/pipelines/controlnet/pipeline_flax_controlnet.py,sha256=1spdtZVcZJFmMXoTRn11Ag7SzeVnRFMLN9pXtEQJehQ,22663
137
129
  diffusers/pipelines/controlnet_xs/__init__.py,sha256=TuIgTKgY4MVB6zaoNTduQAEVRsNptBZQZhnxxQ3hpyg,2403
138
- diffusers/pipelines/controlnet_xs/pipeline_controlnet_xs.py,sha256=5RbXoQfAi5sx-vpWktXYjU9Faufmpont2basemzgmf8,45470
130
+ diffusers/pipelines/controlnet_xs/pipeline_controlnet_xs.py,sha256=T1DVZoxyhMlcTd9nO6orHcQ3INs60HDK4cQm7eFINBg,45524
139
131
  diffusers/pipelines/controlnet_xs/pipeline_controlnet_xs_sd_xl.py,sha256=9MrRTGq0jK4Qnt6QYpnO2zilsioU5LFf0JqmDxSXleg,56895
140
132
  diffusers/pipelines/dance_diffusion/__init__.py,sha256=SOwr8mpuw34oKEUuy4uVLlhjfHuLRCP0kpMjoSPXADU,453
141
133
  diffusers/pipelines/dance_diffusion/pipeline_dance_diffusion.py,sha256=qwHC2RLpZL_37Z39nx7BpIoESJurLLrf3SNMCNoqeqI,6322
@@ -153,7 +145,7 @@ diffusers/pipelines/deepfloyd_if/pipeline_if_superresolution.py,sha256=F3V2-lN0X
153
145
  diffusers/pipelines/deepfloyd_if/pipeline_output.py,sha256=YYPrm5jLziKPwvE0Xgx9bk1YhKC3TLivvR7W_wXzu4U,1140
154
146
  diffusers/pipelines/deepfloyd_if/safety_checker.py,sha256=zqN0z4Mvf7AtrxlUb6qAoiw_QuxGdDk-6js5YuarxTo,2117
155
147
  diffusers/pipelines/deepfloyd_if/timesteps.py,sha256=JO8b-8zlcvk_Tb6s6GGY7MgRPRADs35y0KBcSkqmNDM,5164
156
- diffusers/pipelines/deepfloyd_if/watermark.py,sha256=XSMfepkqMttxL05MGccFNLcs_blmjeWgEr2ipT3T7MA,1601
148
+ diffusers/pipelines/deepfloyd_if/watermark.py,sha256=d-43jrlsjyJt1NJrXrl7U1LgCPlFD5C1gzJ83GVoijc,1601
157
149
  diffusers/pipelines/deprecated/__init__.py,sha256=mXBnea22TkkUdiGxUpZDXTSb1RlURczuRcGeIzn9DcQ,5470
158
150
  diffusers/pipelines/deprecated/alt_diffusion/__init__.py,sha256=1SiGoNJytgnMwGmR48q8erVnU9JP5uz5E6XgHvlFDTc,1783
159
151
  diffusers/pipelines/deprecated/alt_diffusion/modeling_roberta_series.py,sha256=CmrX8Y2bvoTr1_kZYQ-13nXL9ttMsX6gYX_0yPx1F3g,5530
@@ -177,12 +169,12 @@ diffusers/pipelines/deprecated/spectrogram_diffusion/midi_utils.py,sha256=4KYCUC
177
169
  diffusers/pipelines/deprecated/spectrogram_diffusion/notes_encoder.py,sha256=TZsEASnZusL-9JK_v3GMR_kWNZZ8YDK3ATDmOBYKTq8,2923
178
170
  diffusers/pipelines/deprecated/spectrogram_diffusion/pipeline_spectrogram_diffusion.py,sha256=5zRlFl3pz0J28dSBS4xI9MBvujK25m7RxGFh90P7iho,11528
179
171
  diffusers/pipelines/deprecated/stable_diffusion_variants/__init__.py,sha256=mnIQupN59oc3JmKGaQZia7MO92E08wswJrP9QITzWQs,2111
180
- diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_cycle_diffusion.py,sha256=KqUnu_bEEgiEJ5M4Kfbsrt0HQC3504qWsv5C_K8B2jM,47747
172
+ diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_cycle_diffusion.py,sha256=30Ss144KTuviTWarL1Do6FMrE_ZaDfltXdzRozN5bjY,47801
181
173
  diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_onnx_stable_diffusion_inpaint_legacy.py,sha256=MtocKuS-glZL1ubF_Tk5iKVXjXIZb5blTOrcInv0Ax0,27814
182
- diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_inpaint_legacy.py,sha256=j2br8FOilMNjeAfSHJ3gll9LZ_FqZoKi69SbybqX8-Y,42256
183
- diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_model_editing.py,sha256=FSwPjU8F3uolpLaEIDZ2SHRV7K-VRLmJMm1NHZBdmVM,41303
184
- diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_paradigms.py,sha256=yy8rFZItVUtdr5VNGSQZbgxWlEpn6QrQf6oO9WMXMG4,40998
185
- diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_pix2pix_zero.py,sha256=I3TFr2Tvg2YnaTe6obcTTLf91QHAPvH999S_TaTpiBw,63363
174
+ diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_inpaint_legacy.py,sha256=bGQtpHVEo1NGUW3JvpUpm3WShsezgTQM9B4KTqLKwhY,42310
175
+ diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_model_editing.py,sha256=Uu1lw9MuICn5gp1Cwh0DaZlaUqtaWY9zGMLz8OvZtUI,41357
176
+ diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_paradigms.py,sha256=dxiHPcmMvsRtphEb1zAbXrvSrlhjWU8ZrCHNpha54jM,41052
177
+ diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_pix2pix_zero.py,sha256=P0ty4rvPgU6qP88XKKh-9pi0guPIh_FoshIvjfuOGig,63417
186
178
  diffusers/pipelines/deprecated/stochastic_karras_ve/__init__.py,sha256=WOKqWaBgVgNkDUUf4ZL1--TauXKeaPqtGf3P2fTFYMw,453
187
179
  diffusers/pipelines/deprecated/stochastic_karras_ve/pipeline_stochastic_karras_ve.py,sha256=hALFduQcJ6FEJW6XlYcZ8wA_iqNGkm7CMpcbT-VHxVQ,5277
188
180
  diffusers/pipelines/deprecated/versatile_diffusion/__init__.py,sha256=_CRp2PIJD6loFlES3hMcPigZNOUMf2OgTaRFgoit7hc,2838
@@ -196,7 +188,7 @@ diffusers/pipelines/deprecated/vq_diffusion/pipeline_vq_diffusion.py,sha256=YSYu
196
188
  diffusers/pipelines/dit/__init__.py,sha256=w6yUFMbGzaUGPKpLfEfvHlYmrKD0UErczwsHDaDtLuQ,408
197
189
  diffusers/pipelines/dit/pipeline_dit.py,sha256=hrLURHV8-ujtNF6t-nrYXVfARyVKh-_OfO9jAtaWUS0,9949
198
190
  diffusers/pipelines/hunyuandit/__init__.py,sha256=Zby0yEsLNAoa4cf6W92QXIzyGoijI54xXRVhmrHGHsc,1302
199
- diffusers/pipelines/hunyuandit/pipeline_hunyuandit.py,sha256=ScJM_vPa6UGNiQMB0b2AihZKax5RagVvDR0o-jG9lm4,42241
191
+ diffusers/pipelines/hunyuandit/pipeline_hunyuandit.py,sha256=eq5LVU3J22-f4ahz3Erij63DZf7bSjh6uhIlCXtzx5Y,42835
200
192
  diffusers/pipelines/i2vgen_xl/__init__.py,sha256=5Stj50A-AIJ1pPhilpDRx1PARMs_n8OKTDl64cq0LAY,1307
201
193
  diffusers/pipelines/i2vgen_xl/pipeline_i2vgen_xl.py,sha256=R94YOPUYIDfbuFkY_1NUO1JpQAOTUjBuybEbdP259Dg,37043
202
194
  diffusers/pipelines/kandinsky/__init__.py,sha256=wrxuhSw_CunNhm7TdzA_fm__092mibGxp5_ep1boZmQ,2312
@@ -220,8 +212,8 @@ diffusers/pipelines/kandinsky3/convert_kandinsky3_unet.py,sha256=FJ8psagvZtQHJup
220
212
  diffusers/pipelines/kandinsky3/pipeline_kandinsky3.py,sha256=NysRrFVExfva5bkYXPAIDeacgxgHDKx2qngAzfkk9fs,27510
221
213
  diffusers/pipelines/kandinsky3/pipeline_kandinsky3_img2img.py,sha256=wle2V952-ndX-AGM7AG4K0a2qcyBe6OL1zCLeaN2C14,30769
222
214
  diffusers/pipelines/latent_consistency_models/__init__.py,sha256=SfUylLTTBCs_wlGOPpW899lgE1E0GOLGu4GhDPFx-Ls,1560
223
- diffusers/pipelines/latent_consistency_models/pipeline_latent_consistency_img2img.py,sha256=Spow1uC5iE0x2mzpik44C9reinDx-P0K3mZFIl_lg5M,49053
224
- diffusers/pipelines/latent_consistency_models/pipeline_latent_consistency_text2img.py,sha256=a2OncEvMmT2R9AUgj_iKMmL-mYvod8Yaz6CO1dvGLB8,46001
215
+ diffusers/pipelines/latent_consistency_models/pipeline_latent_consistency_img2img.py,sha256=fRGvWwhp_3OF2OlO6ZOGFwL0LiryuVW8SP2nZFagUp8,49107
216
+ diffusers/pipelines/latent_consistency_models/pipeline_latent_consistency_text2img.py,sha256=wptHN0pm_TNo1qiR5MscONbCKM_mE68Q8RKbes6FlCM,46055
225
217
  diffusers/pipelines/latent_diffusion/__init__.py,sha256=iUkMRZY-pteRsvsROOz2Pacm7t02Q6QvbsgQedJt6-E,1542
226
218
  diffusers/pipelines/latent_diffusion/pipeline_latent_diffusion.py,sha256=TBizMTtemMZKFXthDYQ4hnYULtYXNMp3-HNpit5jeBo,32759
227
219
  diffusers/pipelines/latent_diffusion/pipeline_latent_diffusion_superresolution.py,sha256=cJxtFEapCNDHxmaiNuifF6bAhounGQtfYfgeMvIyu0c,8061
@@ -230,7 +222,7 @@ diffusers/pipelines/ledits_pp/pipeline_leditspp_stable_diffusion.py,sha256=aw-i2
230
222
  diffusers/pipelines/ledits_pp/pipeline_leditspp_stable_diffusion_xl.py,sha256=peNjg0-7bKpz8FYPRk0doVdDoPVnjCPNSuboiMb_CNE,86951
231
223
  diffusers/pipelines/ledits_pp/pipeline_output.py,sha256=xiAplyxGWB6uCHIdryai6UP7ghtFuXhES52ZYpO3k8A,1579
232
224
  diffusers/pipelines/marigold/__init__.py,sha256=0XzKGVe-ysmZjYlMoyRbsfdSq7x779FYVrBxumjMxAQ,1708
233
- diffusers/pipelines/marigold/marigold_image_processing.py,sha256=tn0SrEexyl7xokkRRfpXwyyfE7dKAJNlAqU3j3UESW4,24619
225
+ diffusers/pipelines/marigold/marigold_image_processing.py,sha256=VMtCtyXTqWA3A_YAhobbRCnE1ZuMFMt3f3kxHTk-wWo,25054
234
226
  diffusers/pipelines/marigold/pipeline_marigold_depth.py,sha256=U1eSxihIPAq2Fz2gWykgaz_rK3k9_UIAqxPrdvXi6x8,40817
235
227
  diffusers/pipelines/marigold/pipeline_marigold_normals.py,sha256=8mKz3tFn04TeYNzK0HrEDNZun6PpsrTY9Y1q1qn0COM,34397
236
228
  diffusers/pipelines/musicldm/__init__.py,sha256=l1I5QzvTwMOOltJkcwpTb6nNcr93bWiP_ErHbDdwz6Y,1411
@@ -239,13 +231,13 @@ diffusers/pipelines/paint_by_example/__init__.py,sha256=EL3EGhjCG7CMzwloJRauSDHc
239
231
  diffusers/pipelines/paint_by_example/image_encoder.py,sha256=tWrFvICx9coL55Mo01JVv4J014gEvfNHzLarKbNtIs0,2484
240
232
  diffusers/pipelines/paint_by_example/pipeline_paint_by_example.py,sha256=DTUixKXs95SmAOGZkFaRT9qun_bv0OXQnbxnkNhJqEc,30970
241
233
  diffusers/pipelines/pia/__init__.py,sha256=md5F8G279iZg4WGSmLP7N8apWkuHkfssjLQFzv6c2zI,1299
242
- diffusers/pipelines/pia/pipeline_pia.py,sha256=sKncNVLdP_FnReBSVsLyu0cloj8vUj-KH9oE7BcNISk,46522
234
+ diffusers/pipelines/pia/pipeline_pia.py,sha256=jo3_VggMTkpmzd-Nr2qJU1bkgqIGdwTIQLIwniQZ5EM,46576
243
235
  diffusers/pipelines/pixart_alpha/__init__.py,sha256=QxcTJF9ryOIejEHQVw3bZAYHn2dah-WPT5pZudE8XxU,1595
244
- diffusers/pipelines/pixart_alpha/pipeline_pixart_alpha.py,sha256=ut6DX2Z7JVWCqN_ws_xHp6lMc_tjn1qyShWWxydrgh0,44658
245
- diffusers/pipelines/pixart_alpha/pipeline_pixart_sigma.py,sha256=vi-wPuLGzSfJmA-_D3GS0n6jP4Y5iu5Sxz0B3VeNCEQ,40952
236
+ diffusers/pipelines/pixart_alpha/pipeline_pixart_alpha.py,sha256=6WJmPS10zLZ7yl7-BBZjQa6J-GxiM8MJQW253dpCHao,44715
237
+ diffusers/pipelines/pixart_alpha/pipeline_pixart_sigma.py,sha256=1cPDJxNY2NuTs6ziFZuK_tLIPI1JFp3T3uImoINAE9I,41009
246
238
  diffusers/pipelines/semantic_stable_diffusion/__init__.py,sha256=4jDvmgpXRVXGeSAcfGN90iQoJJBBRgE7NXzBE_8AYxM,1443
247
239
  diffusers/pipelines/semantic_stable_diffusion/pipeline_output.py,sha256=YBxNQ2JiY3jYW-GB44nzNZxeADAswMQBJfnr2tBX0eY,822
248
- diffusers/pipelines/semantic_stable_diffusion/pipeline_semantic_stable_diffusion.py,sha256=Oyfqg4po7z_GH3nuNZmczH-NumekSKpHq66E7DWDdy8,38738
240
+ diffusers/pipelines/semantic_stable_diffusion/pipeline_semantic_stable_diffusion.py,sha256=Qx6YvBQYF0JiIL7-6Eawu6sk56wqPQTTJd-v6Tv6Mec,38736
249
241
  diffusers/pipelines/shap_e/__init__.py,sha256=LGToZwsVeVBEsE5eveY0Hc2GgI6UgDz6H_6cB_Snn0Y,2093
250
242
  diffusers/pipelines/shap_e/camera.py,sha256=O35wgvHgwbcf_QbnP1m5MBYhsXyw_jMZZyMXNFnW0RY,4942
251
243
  diffusers/pipelines/shap_e/pipeline_shap_e.py,sha256=a4Of_6spWYTZOTb476oF-nDIotzMrGBQuDj6EjMjKMs,13177
@@ -266,39 +258,43 @@ diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion_img2img.py,s
266
258
  diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion_inpaint.py,sha256=wp6aDJHGtiSZAaa3T7wIAmNvTZ7X8ZpIPNIRjRfmMzQ,29114
267
259
  diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion_upscale.py,sha256=ur8pdQvwOvLmSHQzrSuKgb_fS8QzQVtgfRcl3s51Xbc,27931
268
260
  diffusers/pipelines/stable_diffusion/pipeline_output.py,sha256=Io-12AumvYjBOKP4Qq1BJ2rak5pKdtMO-ACcorY6hFE,1496
269
- diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion.py,sha256=SKFRg2nwGzGQxZONwUOIlGEADZmzCCj9GRxRXW6et5s,54372
270
- diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_depth2img.py,sha256=wUxRKMQvhxXKvqd675byTUM0tV_0Mgn5TswmOjGHMYY,43483
261
+ diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion.py,sha256=guqMC3B7Dz6D4MJBtP2TeQdmtbvNyo4IcddpNQopQp0,54426
262
+ diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_depth2img.py,sha256=iPgD76P3g6eeYvDL4urd2q8m9Dk02qmj_ciMXsGf64s,43550
271
263
  diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_image_variation.py,sha256=OPE3OmXsZj_DdvPcVmQUDPDcUcS26QeNejFZFiysXVg,22308
272
- diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_img2img.py,sha256=ewwhIjDeMQbc9ybqXUDcRuCpQisVE5k6YHQZXZ43LxA,58866
273
- diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_inpaint.py,sha256=RuuQ0qHLBmtyZIDix77zPafK9YzGjvmrrelLIb10TT8,75403
264
+ diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_img2img.py,sha256=RWZ_sImhnOfXjHrEgKpsS27VjKefdeYqn_VfTaH0Wv4,58920
265
+ diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_inpaint.py,sha256=GS61GvfiBSV7f1v9SKboZkOPq1P-Sp7exxg1HDkNVZE,75457
274
266
  diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_instruct_pix2pix.py,sha256=RYypSj0JS8qMtTMAl0mzZqWOV25gi8qDXIaA2JSGWGc,45407
275
267
  diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_latent_upscale.py,sha256=Ac2RlyaiA2gEp4-ggmuIQf_Y9aHvD2GsRv0_hvqP9m0,23117
276
- diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_upscale.py,sha256=j9AXbZKhNG_0m84_VkG4JkD3g1GmSzXQcxTHyrXqlnM,39423
277
- diffusers/pipelines/stable_diffusion/pipeline_stable_unclip.py,sha256=ALW4FU0-BD1AJLUIQMo34apc_D6EwHYUjIkRBMcA3Qo,45118
278
- diffusers/pipelines/stable_diffusion/pipeline_stable_unclip_img2img.py,sha256=uvgOmqF0MlOJxBBt-8HBcChMLU-TuguyIYH4YT2lui8,39903
268
+ diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_upscale.py,sha256=o6NFTQ9upcOZuEK-xTq0KL4dGz6fOWwDMHU3Sx3yteo,39477
269
+ diffusers/pipelines/stable_diffusion/pipeline_stable_unclip.py,sha256=QK0bLH1caCA5eI9sSgvzp8jBXOhvPijEIlZoQZWeA04,45172
270
+ diffusers/pipelines/stable_diffusion/pipeline_stable_unclip_img2img.py,sha256=mN4oILRb78GzHT_wsiK_MLFC1a0WkJGUlAs1PpOsm0U,39942
279
271
  diffusers/pipelines/stable_diffusion/safety_checker.py,sha256=Hytz39IlR7k1z3Q5KZX_BOJrRXl0lEB-ZPE9LR7iw20,5759
280
272
  diffusers/pipelines/stable_diffusion/safety_checker_flax.py,sha256=8VrTsmMmbKJE3BhXzsUxMEnLYUbKFiKxksGgV2oikhc,4476
281
273
  diffusers/pipelines/stable_diffusion/stable_unclip_image_normalizer.py,sha256=PULQ_c3li4FD8Rn-3q5qCoHoE4Iknx3eZ2_XLy1DbA4,1890
274
+ diffusers/pipelines/stable_diffusion_3/__init__.py,sha256=MTUjyZkuU6Vohgm-WkmHTiUBu_H6dy7yTJIzfqAXoGM,1734
275
+ diffusers/pipelines/stable_diffusion_3/pipeline_output.py,sha256=empNHoFAmdz6__yOCX2kuJqZtVdtoGAvVmH5mW42-3s,610
276
+ diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3.py,sha256=sWYQywVoT1t8tH0pzGSdlGRlnameYJInasLm3GJ-saQ,43632
277
+ diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3_img2img.py,sha256=RBFgERk_93ZG74bYO7ANMQ3fYsJBvrLfCRWrcI7Dg70,46260
282
278
  diffusers/pipelines/stable_diffusion_attend_and_excite/__init__.py,sha256=VpZ5FPx9ACTOT4qiEqun2QYeUtx9Rp0YVDwqhYe28QM,1390
283
- diffusers/pipelines/stable_diffusion_attend_and_excite/pipeline_stable_diffusion_attend_and_excite.py,sha256=Ee5Qj3dEsJv5c8Zjeyl7UmI8zpRKa9vTzxllAcl6W5I,51082
279
+ diffusers/pipelines/stable_diffusion_attend_and_excite/pipeline_stable_diffusion_attend_and_excite.py,sha256=BygpdgD_cNOv3m-WW8A_Qxc5kAwVpyfSDqpIh5LiQ0E,51136
284
280
  diffusers/pipelines/stable_diffusion_diffedit/__init__.py,sha256=JlcUNahRBm0uaPzappogqfjyLDsNW6IeyOfuLs4af5M,1358
285
- diffusers/pipelines/stable_diffusion_diffedit/pipeline_stable_diffusion_diffedit.py,sha256=R53sHCOoyaDaKFtomHfk-_PlJFjyvBjL2iRQdmPLaD0,77929
281
+ diffusers/pipelines/stable_diffusion_diffedit/pipeline_stable_diffusion_diffedit.py,sha256=Mtno3raUCW6sUSuSl7rYM1wCI7KxcTHv4RkfC8NdWnc,77937
286
282
  diffusers/pipelines/stable_diffusion_gligen/__init__.py,sha256=b4dZB5bUuZmEAcg7MmCyWZpyxNmMrlrByEQW_xwGGgI,1568
287
- diffusers/pipelines/stable_diffusion_gligen/pipeline_stable_diffusion_gligen.py,sha256=SazaAUiWCW2sAo8gmndKDavBo3EV1weqy5jQMRGSReg,43013
288
- diffusers/pipelines/stable_diffusion_gligen/pipeline_stable_diffusion_gligen_text_image.py,sha256=cAAWTONajV4gUl6P45gb5cJA4snztjZi_jL_jwR5csk,51203
283
+ diffusers/pipelines/stable_diffusion_gligen/pipeline_stable_diffusion_gligen.py,sha256=ElFvjI1wikaOl48Yp-l1_oLVkfIYva7EQPN2MQgqerc,43067
284
+ diffusers/pipelines/stable_diffusion_gligen/pipeline_stable_diffusion_gligen_text_image.py,sha256=A-8tPc6O0Vt1vWDgANF0DEblctXAPrE5MNYVjNCd1UE,51257
289
285
  diffusers/pipelines/stable_diffusion_k_diffusion/__init__.py,sha256=EBpyQedEN-jfJ0qeLCFg9t28cFPNbNaniKIGM4ZMF14,1924
290
- diffusers/pipelines/stable_diffusion_k_diffusion/pipeline_stable_diffusion_k_diffusion.py,sha256=-yaPodLwL69nkh81pNwDjw50lMfwVNbO5uaZ4cOI47o,33325
286
+ diffusers/pipelines/stable_diffusion_k_diffusion/pipeline_stable_diffusion_k_diffusion.py,sha256=BgMUnRxetH_YqtcoZdv5UoSCuvwCljiHFl-Al_7m0VQ,33379
291
287
  diffusers/pipelines/stable_diffusion_k_diffusion/pipeline_stable_diffusion_xl_k_diffusion.py,sha256=5hKwWaKM6CMRP4ZNeSE8NUYmbpULiXBFRMfsmezr6KQ,45146
292
288
  diffusers/pipelines/stable_diffusion_ldm3d/__init__.py,sha256=8p2npGKPPJbPaTa4swOWRMd24x36E563Bhc_mM29va0,1346
293
- diffusers/pipelines/stable_diffusion_ldm3d/pipeline_stable_diffusion_ldm3d.py,sha256=bNms44-D8JMgGk816vKRUvlQVEPaEi2y4nal2Xj5rXo,51119
289
+ diffusers/pipelines/stable_diffusion_ldm3d/pipeline_stable_diffusion_ldm3d.py,sha256=7CnIPUiw0w2nqbx0oxphR2rQh7yTOaFnn_HKWn2imno,51173
294
290
  diffusers/pipelines/stable_diffusion_panorama/__init__.py,sha256=af52eZSYshuw1d6kqKwx0C5Teopkx8UpO9ph_A4WI0Q,1358
295
- diffusers/pipelines/stable_diffusion_panorama/pipeline_stable_diffusion_panorama.py,sha256=VGTRSxzrmfLtIY4dfFYNf8BqCuuAjGc3dLhYNiPzdhQ,59539
291
+ diffusers/pipelines/stable_diffusion_panorama/pipeline_stable_diffusion_panorama.py,sha256=Z5Eq_jJ7vBlmtxvJY1RSNT9Kb5VsqHRzc_yUscvLpQQ,59593
296
292
  diffusers/pipelines/stable_diffusion_safe/__init__.py,sha256=rRKtzOjuaHLDqSLSavcy2W8sEljso9MLhmEwrNiJFJ0,2751
297
293
  diffusers/pipelines/stable_diffusion_safe/pipeline_output.py,sha256=WGQS6-k9dPH0hYBj_dZMlHFkOvUUti9fjVv0Sf8LCjQ,1459
298
294
  diffusers/pipelines/stable_diffusion_safe/pipeline_stable_diffusion_safe.py,sha256=YaHWdXlQhpSNnpB4Pd5otDiOTvGjZx0U6iDLBl7XifU,39137
299
295
  diffusers/pipelines/stable_diffusion_safe/safety_checker.py,sha256=3WhCiqx3IGs-JvqtQpDUzyryvkgSWgqvEYoahvl6uD4,5039
300
296
  diffusers/pipelines/stable_diffusion_sag/__init__.py,sha256=06vnWbASiG3o4sQ7CDlDrqEm6dSCerKdLODz1FS-EFE,1338
301
- diffusers/pipelines/stable_diffusion_sag/pipeline_stable_diffusion_sag.py,sha256=udAcXrZCkRvv1aOiHyT5m8ozeCveARrYDmpJxs3QyNc,47556
297
+ diffusers/pipelines/stable_diffusion_sag/pipeline_stable_diffusion_sag.py,sha256=yIBAUm9ulIN8nGxkpkPF6Hs0S7PvPdSU2khc2Dk1klw,47610
302
298
  diffusers/pipelines/stable_diffusion_xl/__init__.py,sha256=6lTMI458kVDLzQDeZxEBacdFxpj4xAY9CSZ6Xr_FWoY,3022
303
299
  diffusers/pipelines/stable_diffusion_xl/pipeline_flax_stable_diffusion_xl.py,sha256=AHlpNWvIvO38Dp2bpXOfYw_-oxuLb7lsz9WETsQmbjk,11243
304
300
  diffusers/pipelines/stable_diffusion_xl/pipeline_output.py,sha256=Isy1wE8hgoScXXHWVel5jRAzgPTelP-aZieugTOTgUc,1037
@@ -310,13 +306,13 @@ diffusers/pipelines/stable_diffusion_xl/watermark.py,sha256=LDItvRnZKokIUchP0oIr
310
306
  diffusers/pipelines/stable_video_diffusion/__init__.py,sha256=QtcDxzfLJ7loCDspiulKyKU6kd-l3twJyWBDPraD_94,1551
311
307
  diffusers/pipelines/stable_video_diffusion/pipeline_stable_video_diffusion.py,sha256=9ejpFnP_6dk7eekILXXBi9HK16t-Q4WE2ySyeNt0SsE,32357
312
308
  diffusers/pipelines/t2i_adapter/__init__.py,sha256=PgIg_SzwFAqWOML5BLHvuCTmu4p06MPT66xBpDShx8c,1556
313
- diffusers/pipelines/t2i_adapter/pipeline_stable_diffusion_adapter.py,sha256=mGehNwIBzbpwBKbT8TY4q8c0Ifgyo-0PedNqYB2NORg,47295
309
+ diffusers/pipelines/t2i_adapter/pipeline_stable_diffusion_adapter.py,sha256=Lszs8AtMriAAoksMASlW1RQWDaJb0PTvLXwG-vRlBXo,47349
314
310
  diffusers/pipelines/t2i_adapter/pipeline_stable_diffusion_xl_adapter.py,sha256=7m-f-4tMjGniXagL8cMSqOWM7b57H3WwkQG9_7aWfAQ,68707
315
311
  diffusers/pipelines/text_to_video_synthesis/__init__.py,sha256=7-NplGtgnp5GUu4XN_STE9fqAtFCAc6FF3lphjbDBhs,1979
316
312
  diffusers/pipelines/text_to_video_synthesis/pipeline_output.py,sha256=12i4JmK2TgksR46kwOSw02McNrV7qksA4MFAw6KB6_Q,735
317
- diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_synth.py,sha256=eEe5WCUkbrcZWRH9PuZUhWgfK9WvynpOZca1EAT-K9w,31380
318
- diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_synth_img2img.py,sha256=H4VnjoJVbalQb1MBrna4qhchixNwPByguPZ4bNDtdDc,34898
319
- diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_zero.py,sha256=XQ4IeBiPVPgjvV8GK2wDuVBjCuWQF3T06jkk_AvK-hs,45238
313
+ diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_synth.py,sha256=2kmoYU7YH2nua_ZKcDywD9Fj1iNdyVEwEvxcH-57q0Y,31434
314
+ diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_synth_img2img.py,sha256=7agALs98Yn8EwN5HIUpoC1hRdPSaiqNB3a6DhqOqzmU,34952
315
+ diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_zero.py,sha256=xELNUqHmufLbhMvQ07aDw2IJEI66rNw7svoNgUeER5E,45292
320
316
  diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_zero_sdxl.py,sha256=ErmzUz3BHM5GOBtCv0CCnGo-qu0fU8UCU1zKBxRXEUQ,63693
321
317
  diffusers/pipelines/unclip/__init__.py,sha256=jBYZIN7NhTKM_Oq7ipJ4JaMXO-GtdchmFWe07gDerfA,1752
322
318
  diffusers/pipelines/unclip/pipeline_unclip.py,sha256=ryOQKwYCHX30FS8Ww6pS8x8mk71p_sNG8PW161QrdsA,22140
@@ -324,8 +320,8 @@ diffusers/pipelines/unclip/pipeline_unclip_image_variation.py,sha256=BoxqP6FFuGZ
324
320
  diffusers/pipelines/unclip/text_proj.py,sha256=ZvkD9D4ijlPE2uiaoiDiS1gFvEiNcQMOTtKTyRPhpSU,4278
325
321
  diffusers/pipelines/unidiffuser/__init__.py,sha256=GvGtf-AToJXNHxv3RAo5_I_9zPQjDFbMTAHICCt-4xY,1814
326
322
  diffusers/pipelines/unidiffuser/modeling_text_decoder.py,sha256=rNp2VmBGsn2xk1PItp5Rhw8x8fAgF31oQSWSmSE2f7o,14108
327
- diffusers/pipelines/unidiffuser/modeling_uvit.py,sha256=-OsmdEGwFTXfwCrCluStZ51INeDQGQdJz8fG_5e7V2Q,54293
328
- diffusers/pipelines/unidiffuser/pipeline_unidiffuser.py,sha256=LGrR5-fA-z4prIxz2IGVO2QxuWKeNszXdjx1Z9CQSR4,68393
323
+ diffusers/pipelines/unidiffuser/modeling_uvit.py,sha256=0FRop0fqJ72opDmVe8DV4v2k1dxXhpMnMtDcslnjIuI,54282
324
+ diffusers/pipelines/unidiffuser/pipeline_unidiffuser.py,sha256=vSGop-MJrIFsvwave2csdygjjKFxTVFT6C2bZDt6uuk,68447
329
325
  diffusers/pipelines/wuerstchen/__init__.py,sha256=JSCoPCwV_rBJiCy4jbILRoAgQSITS4-j77qOPmzy284,2100
330
326
  diffusers/pipelines/wuerstchen/modeling_paella_vq_model.py,sha256=S4GFRHpq5ws5j4m5MEwPE4Ze5G568Qj1-zhA9bc4MZY,6925
331
327
  diffusers/pipelines/wuerstchen/modeling_wuerstchen_common.py,sha256=mx0bj5b87g590UQhoFWY_L0ht_RTIynaPQa9DLk9MTU,2713
@@ -334,7 +330,7 @@ diffusers/pipelines/wuerstchen/modeling_wuerstchen_prior.py,sha256=57ZDsJfeU6wCm
334
330
  diffusers/pipelines/wuerstchen/pipeline_wuerstchen.py,sha256=u9BKy8JuVLuto1wm7R5Xvdt6WgWZaSXSzVpRK2HSRWc,20553
335
331
  diffusers/pipelines/wuerstchen/pipeline_wuerstchen_combined.py,sha256=x7JTHZ1Zp84E2UVk2HG32J4FP9F0zE7dsCbsdHkcADY,16577
336
332
  diffusers/pipelines/wuerstchen/pipeline_wuerstchen_prior.py,sha256=zMNbF8vCReDAWIsiXSuNhed75LTAjuNzE3Y4lrQ2PkE,23783
337
- diffusers/schedulers/__init__.py,sha256=VyItzMdOeyTrX77xQYMSFv3vx94vm_RQz_FhHnlvg8A,10059
333
+ diffusers/schedulers/__init__.py,sha256=CelmOi6GGR1oD-KrAYmtJJbh9dNrjp4WO94uCs3ro3Y,10249
338
334
  diffusers/schedulers/scheduling_amused.py,sha256=pioDeoYfXWP2CnAiI3-lczDdfSbkfXRC9m9REN_kmvI,6590
339
335
  diffusers/schedulers/scheduling_consistency_decoder.py,sha256=IKNAkeVZIxTPk_hS6QBvFbkjv_h8yWbtU3FmIUSXKVI,6817
340
336
  diffusers/schedulers/scheduling_consistency_models.py,sha256=Xb0J3uDfEuUlS62asaPa9zRzlyQ-1mxsrl2Bmq9ym2c,18723
@@ -350,20 +346,21 @@ diffusers/schedulers/scheduling_deis_multistep.py,sha256=1SvAVQjCBjIKwdOAd7Lg47t
350
346
  diffusers/schedulers/scheduling_dpmsolver_multistep.py,sha256=M72HuVWJSXDKT4agbzif-jnd8ynPAlnFNRn28Lgn_Zs,49141
351
347
  diffusers/schedulers/scheduling_dpmsolver_multistep_flax.py,sha256=otsygkDycqKV4rV7ekHUXSb5PhyHKSE3gA3AbIT2iYI,28721
352
348
  diffusers/schedulers/scheduling_dpmsolver_multistep_inverse.py,sha256=gdxwBeB9ZG9PovXlGYPz-lUjavpv94BYOsi9u3u5wqI,43300
353
- diffusers/schedulers/scheduling_dpmsolver_sde.py,sha256=AlxNOFH1hisf3uGSGLCohVFHk558aUmcPOzCAxThPw8,24228
349
+ diffusers/schedulers/scheduling_dpmsolver_sde.py,sha256=DKq7UYTJl8QfNkAmW_QV8eZqx7BE_1fFaH5j5raWj-8,24274
354
350
  diffusers/schedulers/scheduling_dpmsolver_singlestep.py,sha256=RHrZq0wWKhJbtH9nmieEWcCHL11KZNgQpirJ59GBleU,45858
355
- diffusers/schedulers/scheduling_edm_dpmsolver_multistep.py,sha256=mvLylo-DbtPjcAaWu4gDex5EqFYAW8MCBL5ESDtZMK8,31667
356
- diffusers/schedulers/scheduling_edm_euler.py,sha256=d17uLSPjw82xuSGNUqC9QkmQHKM-H1lcJgRgYFgHKMI,17264
351
+ diffusers/schedulers/scheduling_edm_dpmsolver_multistep.py,sha256=1oXJjJmVFJTL7maOwoGRtZkkv7lFUlhOutdq6IcX9tM,31651
352
+ diffusers/schedulers/scheduling_edm_euler.py,sha256=NgtWqIPqHYABqwwk6DZjQ3KPNb33603LkB220NHe4Zk,17229
357
353
  diffusers/schedulers/scheduling_euler_ancestral_discrete.py,sha256=3uOPimu50YPcocd6N_PdogIXgNOLIpSyJD74HuUOSH8,21018
358
354
  diffusers/schedulers/scheduling_euler_discrete.py,sha256=BhNoudpV5C6WBLBXJnkx6DMgVDY0Vh20gwT20icQSos,30645
359
355
  diffusers/schedulers/scheduling_euler_discrete_flax.py,sha256=Bsi5Yz6QiTS77pSMJdkoB8IhemE8h_xVkru9MUb4GHM,10801
356
+ diffusers/schedulers/scheduling_flow_match_euler_discrete.py,sha256=ZalwvcPZK3GAUMP9-dLnZy5UJj_me5d3pqqllua4lFQ,10787
360
357
  diffusers/schedulers/scheduling_heun_discrete.py,sha256=vE-hv6AomcYzVJPodLpp_Il7cdnU_HpRG1DyQcblwNg,22387
361
358
  diffusers/schedulers/scheduling_ipndm.py,sha256=KvPfQjVJpC98jzI8HV5e585H-iFJvHPttgLYXkzwFu4,8743
362
359
  diffusers/schedulers/scheduling_k_dpm_2_ancestral_discrete.py,sha256=XZsbGPo3reSJ9D1QVKFdFO2h88Hl-qHqPRAuK1KqcnY,22468
363
360
  diffusers/schedulers/scheduling_k_dpm_2_discrete.py,sha256=I5NcQiMU6UzKhP9Hg1ZvZTT2INobVPwzZWfHuxk5iHk,21156
364
361
  diffusers/schedulers/scheduling_karras_ve_flax.py,sha256=ijPAeQdAgfT6l0qm4NR3o47cvuTRjqn_7fq_aZmf2UA,9606
365
362
  diffusers/schedulers/scheduling_lcm.py,sha256=umZJZVqt1SmO4mpCmHoM3815Rn3inesSTcQf4WLBtJU,32204
366
- diffusers/schedulers/scheduling_lms_discrete.py,sha256=la4wrlr134yL1lVrhPwW4SOXhYs4htfDean6A2zPoDM,20618
363
+ diffusers/schedulers/scheduling_lms_discrete.py,sha256=Tp3dCoB1gZbUG4P42XSSMM2xTxdhC6kRNw-YiOGU51s,20664
367
364
  diffusers/schedulers/scheduling_lms_discrete_flax.py,sha256=OoO3816H2AWXGLpA3AeREFffh4yhDa-qbPHrtStfCGo,11077
368
365
  diffusers/schedulers/scheduling_pndm.py,sha256=CpKzrhVKcktTDVx_Gg4LyO-DRy_ZcIJ0e3GUooIe0uw,21715
369
366
  diffusers/schedulers/scheduling_pndm_flax.py,sha256=Yzsf1yQH1ycnyIOzWAbDJw1g-oBgjGY3ejgD1gdaZ48,21539
@@ -380,40 +377,40 @@ diffusers/schedulers/scheduling_vq_diffusion.py,sha256=8LV94ZfxiA7WjomDodq9wGFri
380
377
  diffusers/schedulers/deprecated/__init__.py,sha256=3QlQ4gSBFu4zUkY3S5KLxd9sukbxLv8Aj4eO0Rymaq0,1349
381
378
  diffusers/schedulers/deprecated/scheduling_karras_ve.py,sha256=ngsnxUyZxhXEiW0stJotx5igFyMu5L-FycFp9wUlQ6I,9712
382
379
  diffusers/schedulers/deprecated/scheduling_sde_vp.py,sha256=pHAFBV372CD-1KRRwtmNab2uUKgmkD2F23rvj3d_M54,4294
383
- diffusers/utils/__init__.py,sha256=hyeK3xi8ezoxJGb_yNOTix-rcWZR564i98wJMdnhT5I,3865
380
+ diffusers/utils/__init__.py,sha256=s2iucNse_OzoSTmlj8_1b2k3ZNeB4RAbrdQAjq6XGWc,3951
384
381
  diffusers/utils/accelerate_utils.py,sha256=xFx0IauUi-NocQJJcb6fKK3oMHbPJStjUPfTRN3PkxM,1839
385
- diffusers/utils/constants.py,sha256=Q0bh__zI7RHjB6ILowXzLVaHYYTL8KEl_UHCpF3CC5k,2442
382
+ diffusers/utils/constants.py,sha256=xcQnESIxO6uuhVvuWCgNQgeCdSRqkQLiqyy68PO8t58,2579
386
383
  diffusers/utils/deprecation_utils.py,sha256=QdtDzB16gkuo424Yvvsf-1_bSHsEI5I_b8pE5URHqd8,2101
387
384
  diffusers/utils/doc_utils.py,sha256=RgLAEZXGDiYwdOufaREzPM7q83HRROZtNhIdPxS0sE0,1348
388
385
  diffusers/utils/dummy_flax_and_transformers_objects.py,sha256=XyiqnjacRb86sS9F_VwniBrLLEmff2cgJM2X4T_RAg4,2358
389
386
  diffusers/utils/dummy_flax_objects.py,sha256=EIyO7jYPH4yjuBIxysZWE0rka3qPLEl1TmMBt5SwXNA,5316
390
387
  diffusers/utils/dummy_note_seq_objects.py,sha256=DffX40mDzWTMCyYhKudgIeBhtqTSpiSkVzcAMRue8dY,506
391
388
  diffusers/utils/dummy_onnx_objects.py,sha256=4Z61m3P9NUwbebsK58wAKs6y32Id6UaiSRyeHXo3ecA,493
392
- diffusers/utils/dummy_pt_objects.py,sha256=K6xA82EiC1uYWNYyyl5b7cMJeFNSiZDsZ2dSZPTAsV0,31165
389
+ diffusers/utils/dummy_pt_objects.py,sha256=IbHzhxNmMv9kCZsybBAeN2OoKulVARXXbbNvkBSUWuk,31925
393
390
  diffusers/utils/dummy_torch_and_librosa_objects.py,sha256=JUfqU2n3tSKHyWbjSXrpdW_jr-YbMxAvAhLlPa2_Rxs,948
394
391
  diffusers/utils/dummy_torch_and_scipy_objects.py,sha256=zOLdmqbtma5nakkdYgoErISV28yaztmBLI3wrC2Z_bU,537
395
392
  diffusers/utils/dummy_torch_and_torchsde_objects.py,sha256=JPn6XJ3N3BuMq7XLeyMKRsdtmP9csGEZ0AfTp8A4nG0,550
396
393
  diffusers/utils/dummy_torch_and_transformers_and_k_diffusion_objects.py,sha256=IMw6Qs9tTdRrMUXyM_Bc_BuJBvw0OVVHNZMOk3suF7g,1151
397
394
  diffusers/utils/dummy_torch_and_transformers_and_onnx_objects.py,sha256=SiKni7YZ-pmZrurHU3-lhbDGKOGCCVxSK3GJbrARqgU,3023
398
- diffusers/utils/dummy_torch_and_transformers_objects.py,sha256=FMrOtTDnH8cJ4WvfLTENv_KPlVsUTzV9sbd-BckO_dw,50859
395
+ diffusers/utils/dummy_torch_and_transformers_objects.py,sha256=eeK3QOV-HTlhcU92TAJQSCU3DDFEEdPvO0M5uWmH96A,51750
399
396
  diffusers/utils/dummy_transformers_and_torch_and_note_seq_objects.py,sha256=z-JrPgPo2dWv-buMytUqBd6QqEx8Uha6M1cKa6gR4Dc,621
400
- diffusers/utils/dynamic_modules_utils.py,sha256=-i2UlsQBIYSM063IbtpUkQspoOibf5BbHVPgQIbBetg,19778
397
+ diffusers/utils/dynamic_modules_utils.py,sha256=Kl8Z2hyzP9u5R7a6FS-DTJJHL_JxXrAQR5BNOD6J7Lw,20162
401
398
  diffusers/utils/export_utils.py,sha256=hxgE1gEqy5wh0G7NlIyKTFeu_3NFW82Y74o2THknKrs,4425
402
- diffusers/utils/hub_utils.py,sha256=JLPbwocWljtMgmSl2wYxt72CEAbHNCwmoLu1S3ZK9x4,21235
403
- diffusers/utils/import_utils.py,sha256=Tt3jUZ4et1hBHH4rzuw0998_54uT0FrUxQjbKE8Zb60,29008
399
+ diffusers/utils/hub_utils.py,sha256=DI533Fka9rHToLzzwZyLlmuhSc-9mjZti6YoIX9Fa7o,25626
400
+ diffusers/utils/import_utils.py,sha256=c8cB0-RIxI3Rk7rwKz3CjcP5Cr-ImHApTli7v0B0h88,29007
404
401
  diffusers/utils/loading_utils.py,sha256=orCKVcafyszVyTiEI8mS2sJ8FJm7lfhVonStzNGicsI,1546
405
- diffusers/utils/logging.py,sha256=9qewJSGt42-Z8uxdDDSzkgg0p4E8ptnWiO3OkYMFd_E,9395
402
+ diffusers/utils/logging.py,sha256=9ghwwrmW92edOfS-FSFbRfVHO6EQXlDWPidfBag-JsI,9492
406
403
  diffusers/utils/model_card_template.md,sha256=ZhGhzjnMT2oPLbHnC0UYRNEpVC-okH-MLKjvkYsh-Ds,550
407
404
  diffusers/utils/outputs.py,sha256=hL1yMK86ota2SdZhyiWSzvfANjaO8pU7Hz1w81_Vmr8,4953
408
405
  diffusers/utils/peft_utils.py,sha256=xWe6PHOalYc6dn9MRasfI0CrJmM-EoKvWA5xfyTCLeA,11052
409
406
  diffusers/utils/pil_utils.py,sha256=mNv1FfHvtdW-lpOemxwe-dNoSfSF_sptgpYELP-bA20,1979
410
- diffusers/utils/state_dict_utils.py,sha256=H7v5VRp8mf6TAlmqCeC0toVqn2oWIPrFErzTVyMfdLA,13436
407
+ diffusers/utils/state_dict_utils.py,sha256=NsWzyX4eqKCfjLjgChQnFSf7nSQz1XFHgINYBfZEhbk,13580
411
408
  diffusers/utils/testing_utils.py,sha256=pBLNH9FxPMYtD7rnadEt1PiG21dCiWg2svifStGRArk,36818
412
409
  diffusers/utils/torch_utils.py,sha256=6e6cJmPMbkEqXXJLlcKuVz0zZF8fIc7dF-azq-_6-Xw,6234
413
410
  diffusers/utils/versions.py,sha256=-e7XW1TzZ-tsRo9PMQHp-hNGYHuVDFzLtwg3uAJzqdI,4333
414
- diffusers-0.28.2.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
415
- diffusers-0.28.2.dist-info/METADATA,sha256=R6dIzVKfj7OFa48xGhOztLNRfhEPotvda3HtDLaPI6k,19031
416
- diffusers-0.28.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
417
- diffusers-0.28.2.dist-info/entry_points.txt,sha256=_1bvshKV_6_b63_FAkcUs9W6tUKGeIoQ3SHEZsovEWs,72
418
- diffusers-0.28.2.dist-info/top_level.txt,sha256=axJl2884vMSvhzrFrSoht36QXA_6gZN9cKtg4xOO72o,10
419
- diffusers-0.28.2.dist-info/RECORD,,
411
+ diffusers-0.29.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
412
+ diffusers-0.29.0.dist-info/METADATA,sha256=b4ZSa0yygQ2jdlzFGP4no1owY08HzsZynzZQ5XRWTWI,19119
413
+ diffusers-0.29.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
414
+ diffusers-0.29.0.dist-info/entry_points.txt,sha256=_1bvshKV_6_b63_FAkcUs9W6tUKGeIoQ3SHEZsovEWs,72
415
+ diffusers-0.29.0.dist-info/top_level.txt,sha256=axJl2884vMSvhzrFrSoht36QXA_6gZN9cKtg4xOO72o,10
416
+ diffusers-0.29.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: bdist_wheel (0.38.4)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,20 +0,0 @@
1
- # Copyright 2024 The HuggingFace Team. All rights reserved.
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
6
- #
7
- # http://www.apache.org/licenses/LICENSE-2.0
8
- #
9
- # Unless required by applicable law or agreed to in writing, software
10
- # distributed under the License is distributed on an "AS IS" BASIS,
11
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- # See the License for the specific language governing permissions and
13
- # limitations under the License.
14
- from ..utils import deprecate
15
- from .transformers.dual_transformer_2d import DualTransformer2DModel
16
-
17
-
18
- class DualTransformer2DModel(DualTransformer2DModel):
19
- deprecation_message = "Importing `DualTransformer2DModel` from `diffusers.models.dual_transformer_2d` is deprecated and this will be removed in a future version. Please use `from diffusers.models.transformers.dual_transformer_2d import DualTransformer2DModel`, instead."
20
- deprecate("DualTransformer2DModel", "0.29", deprecation_message)
@@ -1,12 +0,0 @@
1
- from ..utils import deprecate
2
- from .transformers.prior_transformer import PriorTransformer, PriorTransformerOutput
3
-
4
-
5
- class PriorTransformerOutput(PriorTransformerOutput):
6
- deprecation_message = "Importing `PriorTransformerOutput` from `diffusers.models.prior_transformer` is deprecated and this will be removed in a future version. Please use `from diffusers.models.transformers.prior_transformer import PriorTransformerOutput`, instead."
7
- deprecate("PriorTransformerOutput", "0.29", deprecation_message)
8
-
9
-
10
- class PriorTransformer(PriorTransformer):
11
- deprecation_message = "Importing `PriorTransformer` from `diffusers.models.prior_transformer` is deprecated and this will be removed in a future version. Please use `from diffusers.models.transformers.prior_transformer import PriorTransformer`, instead."
12
- deprecate("PriorTransformer", "0.29", deprecation_message)
@@ -1,70 +0,0 @@
1
- # Copyright 2024 The HuggingFace Team. All rights reserved.
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
6
- #
7
- # http://www.apache.org/licenses/LICENSE-2.0
8
- #
9
- # Unless required by applicable law or agreed to in writing, software
10
- # distributed under the License is distributed on an "AS IS" BASIS,
11
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- # See the License for the specific language governing permissions and
13
- # limitations under the License.
14
- from ..utils import deprecate
15
- from .transformers.t5_film_transformer import (
16
- DecoderLayer,
17
- NewGELUActivation,
18
- T5DenseGatedActDense,
19
- T5FilmDecoder,
20
- T5FiLMLayer,
21
- T5LayerCrossAttention,
22
- T5LayerFFCond,
23
- T5LayerNorm,
24
- T5LayerSelfAttentionCond,
25
- )
26
-
27
-
28
- class T5FilmDecoder(T5FilmDecoder):
29
- deprecation_message = "Importing `T5FilmDecoder` from `diffusers.models.t5_film_transformer` is deprecated and this will be removed in a future version. Please use `from diffusers.models.transformers.t5_film_transformer import T5FilmDecoder`, instead."
30
- deprecate("T5FilmDecoder", "0.29", deprecation_message)
31
-
32
-
33
- class DecoderLayer(DecoderLayer):
34
- deprecation_message = "Importing `DecoderLayer` from `diffusers.models.t5_film_transformer` is deprecated and this will be removed in a future version. Please use `from diffusers.models.transformers.t5_film_transformer import DecoderLayer`, instead."
35
- deprecate("DecoderLayer", "0.29", deprecation_message)
36
-
37
-
38
- class T5LayerSelfAttentionCond(T5LayerSelfAttentionCond):
39
- deprecation_message = "Importing `T5LayerSelfAttentionCond` from `diffusers.models.t5_film_transformer` is deprecated and this will be removed in a future version. Please use `from diffusers.models.transformers.t5_film_transformer import T5LayerSelfAttentionCond`, instead."
40
- deprecate("T5LayerSelfAttentionCond", "0.29", deprecation_message)
41
-
42
-
43
- class T5LayerCrossAttention(T5LayerCrossAttention):
44
- deprecation_message = "Importing `T5LayerCrossAttention` from `diffusers.models.t5_film_transformer` is deprecated and this will be removed in a future version. Please use `from diffusers.models.transformers.t5_film_transformer import T5LayerCrossAttention`, instead."
45
- deprecate("T5LayerCrossAttention", "0.29", deprecation_message)
46
-
47
-
48
- class T5LayerFFCond(T5LayerFFCond):
49
- deprecation_message = "Importing `T5LayerFFCond` from `diffusers.models.t5_film_transformer` is deprecated and this will be removed in a future version. Please use `from diffusers.models.transformers.t5_film_transformer import T5LayerFFCond`, instead."
50
- deprecate("T5LayerFFCond", "0.29", deprecation_message)
51
-
52
-
53
- class T5DenseGatedActDense(T5DenseGatedActDense):
54
- deprecation_message = "Importing `T5DenseGatedActDense` from `diffusers.models.t5_film_transformer` is deprecated and this will be removed in a future version. Please use `from diffusers.models.transformers.t5_film_transformer import T5DenseGatedActDense`, instead."
55
- deprecate("T5DenseGatedActDense", "0.29", deprecation_message)
56
-
57
-
58
- class T5LayerNorm(T5LayerNorm):
59
- deprecation_message = "Importing `T5LayerNorm` from `diffusers.models.t5_film_transformer` is deprecated and this will be removed in a future version. Please use `from diffusers.models.transformers.t5_film_transformer import T5LayerNorm`, instead."
60
- deprecate("T5LayerNorm", "0.29", deprecation_message)
61
-
62
-
63
- class NewGELUActivation(NewGELUActivation):
64
- deprecation_message = "Importing `T5LayerNorm` from `diffusers.models.t5_film_transformer` is deprecated and this will be removed in a future version. Please use `from diffusers.models.transformers.t5_film_transformer import NewGELUActivation`, instead."
65
- deprecate("NewGELUActivation", "0.29", deprecation_message)
66
-
67
-
68
- class T5FiLMLayer(T5FiLMLayer):
69
- deprecation_message = "Importing `T5FiLMLayer` from `diffusers.models.t5_film_transformer` is deprecated and this will be removed in a future version. Please use `from diffusers.models.transformers.t5_film_transformer import T5FiLMLayer`, instead."
70
- deprecate("T5FiLMLayer", "0.29", deprecation_message)
@@ -1,25 +0,0 @@
1
- # Copyright 2024 The HuggingFace Team. All rights reserved.
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
6
- #
7
- # http://www.apache.org/licenses/LICENSE-2.0
8
- #
9
- # Unless required by applicable law or agreed to in writing, software
10
- # distributed under the License is distributed on an "AS IS" BASIS,
11
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- # See the License for the specific language governing permissions and
13
- # limitations under the License.
14
- from ..utils import deprecate
15
- from .transformers.transformer_2d import Transformer2DModel, Transformer2DModelOutput
16
-
17
-
18
- class Transformer2DModelOutput(Transformer2DModelOutput):
19
- deprecation_message = "Importing `Transformer2DModelOutput` from `diffusers.models.transformer_2d` is deprecated and this will be removed in a future version. Please use `from diffusers.models.transformers.transformer_2d import Transformer2DModelOutput`, instead."
20
- deprecate("Transformer2DModelOutput", "0.29", deprecation_message)
21
-
22
-
23
- class Transformer2DModel(Transformer2DModel):
24
- deprecation_message = "Importing `Transformer2DModel` from `diffusers.models.transformer_2d` is deprecated and this will be removed in a future version. Please use `from diffusers.models.transformers.transformer_2d import Transformer2DModel`, instead."
25
- deprecate("Transformer2DModel", "0.29", deprecation_message)