diffusers 0.27.1__py3-none-any.whl → 0.32.2__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (445) hide show
  1. diffusers/__init__.py +233 -6
  2. diffusers/callbacks.py +209 -0
  3. diffusers/commands/env.py +102 -6
  4. diffusers/configuration_utils.py +45 -16
  5. diffusers/dependency_versions_table.py +4 -3
  6. diffusers/image_processor.py +434 -110
  7. diffusers/loaders/__init__.py +42 -9
  8. diffusers/loaders/ip_adapter.py +626 -36
  9. diffusers/loaders/lora_base.py +900 -0
  10. diffusers/loaders/lora_conversion_utils.py +991 -125
  11. diffusers/loaders/lora_pipeline.py +3812 -0
  12. diffusers/loaders/peft.py +571 -7
  13. diffusers/loaders/single_file.py +405 -173
  14. diffusers/loaders/single_file_model.py +385 -0
  15. diffusers/loaders/single_file_utils.py +1783 -713
  16. diffusers/loaders/textual_inversion.py +41 -23
  17. diffusers/loaders/transformer_flux.py +181 -0
  18. diffusers/loaders/transformer_sd3.py +89 -0
  19. diffusers/loaders/unet.py +464 -540
  20. diffusers/loaders/unet_loader_utils.py +163 -0
  21. diffusers/models/__init__.py +76 -7
  22. diffusers/models/activations.py +65 -10
  23. diffusers/models/adapter.py +53 -53
  24. diffusers/models/attention.py +605 -18
  25. diffusers/models/attention_flax.py +1 -1
  26. diffusers/models/attention_processor.py +4304 -687
  27. diffusers/models/autoencoders/__init__.py +8 -0
  28. diffusers/models/autoencoders/autoencoder_asym_kl.py +15 -17
  29. diffusers/models/autoencoders/autoencoder_dc.py +620 -0
  30. diffusers/models/autoencoders/autoencoder_kl.py +110 -28
  31. diffusers/models/autoencoders/autoencoder_kl_allegro.py +1149 -0
  32. diffusers/models/autoencoders/autoencoder_kl_cogvideox.py +1482 -0
  33. diffusers/models/autoencoders/autoencoder_kl_hunyuan_video.py +1176 -0
  34. diffusers/models/autoencoders/autoencoder_kl_ltx.py +1338 -0
  35. diffusers/models/autoencoders/autoencoder_kl_mochi.py +1166 -0
  36. diffusers/models/autoencoders/autoencoder_kl_temporal_decoder.py +19 -24
  37. diffusers/models/autoencoders/autoencoder_oobleck.py +464 -0
  38. diffusers/models/autoencoders/autoencoder_tiny.py +21 -18
  39. diffusers/models/autoencoders/consistency_decoder_vae.py +45 -20
  40. diffusers/models/autoencoders/vae.py +41 -29
  41. diffusers/models/autoencoders/vq_model.py +182 -0
  42. diffusers/models/controlnet.py +47 -800
  43. diffusers/models/controlnet_flux.py +70 -0
  44. diffusers/models/controlnet_sd3.py +68 -0
  45. diffusers/models/controlnet_sparsectrl.py +116 -0
  46. diffusers/models/controlnets/__init__.py +23 -0
  47. diffusers/models/controlnets/controlnet.py +872 -0
  48. diffusers/models/{controlnet_flax.py → controlnets/controlnet_flax.py} +9 -9
  49. diffusers/models/controlnets/controlnet_flux.py +536 -0
  50. diffusers/models/controlnets/controlnet_hunyuan.py +401 -0
  51. diffusers/models/controlnets/controlnet_sd3.py +489 -0
  52. diffusers/models/controlnets/controlnet_sparsectrl.py +788 -0
  53. diffusers/models/controlnets/controlnet_union.py +832 -0
  54. diffusers/models/controlnets/controlnet_xs.py +1946 -0
  55. diffusers/models/controlnets/multicontrolnet.py +183 -0
  56. diffusers/models/downsampling.py +85 -18
  57. diffusers/models/embeddings.py +1856 -158
  58. diffusers/models/embeddings_flax.py +23 -9
  59. diffusers/models/model_loading_utils.py +480 -0
  60. diffusers/models/modeling_flax_pytorch_utils.py +2 -1
  61. diffusers/models/modeling_flax_utils.py +2 -7
  62. diffusers/models/modeling_outputs.py +14 -0
  63. diffusers/models/modeling_pytorch_flax_utils.py +1 -1
  64. diffusers/models/modeling_utils.py +611 -146
  65. diffusers/models/normalization.py +361 -20
  66. diffusers/models/resnet.py +18 -23
  67. diffusers/models/transformers/__init__.py +16 -0
  68. diffusers/models/transformers/auraflow_transformer_2d.py +544 -0
  69. diffusers/models/transformers/cogvideox_transformer_3d.py +542 -0
  70. diffusers/models/transformers/dit_transformer_2d.py +240 -0
  71. diffusers/models/transformers/dual_transformer_2d.py +9 -8
  72. diffusers/models/transformers/hunyuan_transformer_2d.py +578 -0
  73. diffusers/models/transformers/latte_transformer_3d.py +327 -0
  74. diffusers/models/transformers/lumina_nextdit2d.py +340 -0
  75. diffusers/models/transformers/pixart_transformer_2d.py +445 -0
  76. diffusers/models/transformers/prior_transformer.py +13 -13
  77. diffusers/models/transformers/sana_transformer.py +488 -0
  78. diffusers/models/transformers/stable_audio_transformer.py +458 -0
  79. diffusers/models/transformers/t5_film_transformer.py +17 -19
  80. diffusers/models/transformers/transformer_2d.py +297 -187
  81. diffusers/models/transformers/transformer_allegro.py +422 -0
  82. diffusers/models/transformers/transformer_cogview3plus.py +386 -0
  83. diffusers/models/transformers/transformer_flux.py +593 -0
  84. diffusers/models/transformers/transformer_hunyuan_video.py +791 -0
  85. diffusers/models/transformers/transformer_ltx.py +469 -0
  86. diffusers/models/transformers/transformer_mochi.py +499 -0
  87. diffusers/models/transformers/transformer_sd3.py +461 -0
  88. diffusers/models/transformers/transformer_temporal.py +21 -19
  89. diffusers/models/unets/unet_1d.py +8 -8
  90. diffusers/models/unets/unet_1d_blocks.py +31 -31
  91. diffusers/models/unets/unet_2d.py +17 -10
  92. diffusers/models/unets/unet_2d_blocks.py +225 -149
  93. diffusers/models/unets/unet_2d_condition.py +41 -40
  94. diffusers/models/unets/unet_2d_condition_flax.py +6 -5
  95. diffusers/models/unets/unet_3d_blocks.py +192 -1057
  96. diffusers/models/unets/unet_3d_condition.py +22 -27
  97. diffusers/models/unets/unet_i2vgen_xl.py +22 -18
  98. diffusers/models/unets/unet_kandinsky3.py +2 -2
  99. diffusers/models/unets/unet_motion_model.py +1413 -89
  100. diffusers/models/unets/unet_spatio_temporal_condition.py +40 -16
  101. diffusers/models/unets/unet_stable_cascade.py +19 -18
  102. diffusers/models/unets/uvit_2d.py +2 -2
  103. diffusers/models/upsampling.py +95 -26
  104. diffusers/models/vq_model.py +12 -164
  105. diffusers/optimization.py +1 -1
  106. diffusers/pipelines/__init__.py +202 -3
  107. diffusers/pipelines/allegro/__init__.py +48 -0
  108. diffusers/pipelines/allegro/pipeline_allegro.py +938 -0
  109. diffusers/pipelines/allegro/pipeline_output.py +23 -0
  110. diffusers/pipelines/amused/pipeline_amused.py +12 -12
  111. diffusers/pipelines/amused/pipeline_amused_img2img.py +14 -12
  112. diffusers/pipelines/amused/pipeline_amused_inpaint.py +13 -11
  113. diffusers/pipelines/animatediff/__init__.py +8 -0
  114. diffusers/pipelines/animatediff/pipeline_animatediff.py +122 -109
  115. diffusers/pipelines/animatediff/pipeline_animatediff_controlnet.py +1106 -0
  116. diffusers/pipelines/animatediff/pipeline_animatediff_sdxl.py +1288 -0
  117. diffusers/pipelines/animatediff/pipeline_animatediff_sparsectrl.py +1010 -0
  118. diffusers/pipelines/animatediff/pipeline_animatediff_video2video.py +236 -180
  119. diffusers/pipelines/animatediff/pipeline_animatediff_video2video_controlnet.py +1341 -0
  120. diffusers/pipelines/animatediff/pipeline_output.py +3 -2
  121. diffusers/pipelines/audioldm/pipeline_audioldm.py +14 -14
  122. diffusers/pipelines/audioldm2/modeling_audioldm2.py +58 -39
  123. diffusers/pipelines/audioldm2/pipeline_audioldm2.py +121 -36
  124. diffusers/pipelines/aura_flow/__init__.py +48 -0
  125. diffusers/pipelines/aura_flow/pipeline_aura_flow.py +584 -0
  126. diffusers/pipelines/auto_pipeline.py +196 -28
  127. diffusers/pipelines/blip_diffusion/blip_image_processing.py +1 -1
  128. diffusers/pipelines/blip_diffusion/modeling_blip2.py +6 -6
  129. diffusers/pipelines/blip_diffusion/modeling_ctx_clip.py +1 -1
  130. diffusers/pipelines/blip_diffusion/pipeline_blip_diffusion.py +2 -2
  131. diffusers/pipelines/cogvideo/__init__.py +54 -0
  132. diffusers/pipelines/cogvideo/pipeline_cogvideox.py +772 -0
  133. diffusers/pipelines/cogvideo/pipeline_cogvideox_fun_control.py +825 -0
  134. diffusers/pipelines/cogvideo/pipeline_cogvideox_image2video.py +885 -0
  135. diffusers/pipelines/cogvideo/pipeline_cogvideox_video2video.py +851 -0
  136. diffusers/pipelines/cogvideo/pipeline_output.py +20 -0
  137. diffusers/pipelines/cogview3/__init__.py +47 -0
  138. diffusers/pipelines/cogview3/pipeline_cogview3plus.py +674 -0
  139. diffusers/pipelines/cogview3/pipeline_output.py +21 -0
  140. diffusers/pipelines/consistency_models/pipeline_consistency_models.py +6 -6
  141. diffusers/pipelines/controlnet/__init__.py +86 -80
  142. diffusers/pipelines/controlnet/multicontrolnet.py +7 -182
  143. diffusers/pipelines/controlnet/pipeline_controlnet.py +134 -87
  144. diffusers/pipelines/controlnet/pipeline_controlnet_blip_diffusion.py +2 -2
  145. diffusers/pipelines/controlnet/pipeline_controlnet_img2img.py +93 -77
  146. diffusers/pipelines/controlnet/pipeline_controlnet_inpaint.py +88 -197
  147. diffusers/pipelines/controlnet/pipeline_controlnet_inpaint_sd_xl.py +136 -90
  148. diffusers/pipelines/controlnet/pipeline_controlnet_sd_xl.py +176 -80
  149. diffusers/pipelines/controlnet/pipeline_controlnet_sd_xl_img2img.py +125 -89
  150. diffusers/pipelines/controlnet/pipeline_controlnet_union_inpaint_sd_xl.py +1790 -0
  151. diffusers/pipelines/controlnet/pipeline_controlnet_union_sd_xl.py +1501 -0
  152. diffusers/pipelines/controlnet/pipeline_controlnet_union_sd_xl_img2img.py +1627 -0
  153. diffusers/pipelines/controlnet/pipeline_flax_controlnet.py +2 -2
  154. diffusers/pipelines/controlnet_hunyuandit/__init__.py +48 -0
  155. diffusers/pipelines/controlnet_hunyuandit/pipeline_hunyuandit_controlnet.py +1060 -0
  156. diffusers/pipelines/controlnet_sd3/__init__.py +57 -0
  157. diffusers/pipelines/controlnet_sd3/pipeline_stable_diffusion_3_controlnet.py +1133 -0
  158. diffusers/pipelines/controlnet_sd3/pipeline_stable_diffusion_3_controlnet_inpainting.py +1153 -0
  159. diffusers/pipelines/controlnet_xs/__init__.py +68 -0
  160. diffusers/pipelines/controlnet_xs/pipeline_controlnet_xs.py +916 -0
  161. diffusers/pipelines/controlnet_xs/pipeline_controlnet_xs_sd_xl.py +1111 -0
  162. diffusers/pipelines/ddpm/pipeline_ddpm.py +2 -2
  163. diffusers/pipelines/deepfloyd_if/pipeline_if.py +16 -30
  164. diffusers/pipelines/deepfloyd_if/pipeline_if_img2img.py +20 -35
  165. diffusers/pipelines/deepfloyd_if/pipeline_if_img2img_superresolution.py +23 -41
  166. diffusers/pipelines/deepfloyd_if/pipeline_if_inpainting.py +22 -38
  167. diffusers/pipelines/deepfloyd_if/pipeline_if_inpainting_superresolution.py +25 -41
  168. diffusers/pipelines/deepfloyd_if/pipeline_if_superresolution.py +19 -34
  169. diffusers/pipelines/deepfloyd_if/pipeline_output.py +6 -5
  170. diffusers/pipelines/deepfloyd_if/watermark.py +1 -1
  171. diffusers/pipelines/deprecated/alt_diffusion/modeling_roberta_series.py +11 -11
  172. diffusers/pipelines/deprecated/alt_diffusion/pipeline_alt_diffusion.py +70 -30
  173. diffusers/pipelines/deprecated/alt_diffusion/pipeline_alt_diffusion_img2img.py +48 -25
  174. diffusers/pipelines/deprecated/repaint/pipeline_repaint.py +2 -2
  175. diffusers/pipelines/deprecated/spectrogram_diffusion/pipeline_spectrogram_diffusion.py +7 -7
  176. diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_cycle_diffusion.py +21 -20
  177. diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_inpaint_legacy.py +27 -29
  178. diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_model_editing.py +33 -27
  179. diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_paradigms.py +33 -23
  180. diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_pix2pix_zero.py +36 -30
  181. diffusers/pipelines/deprecated/versatile_diffusion/modeling_text_unet.py +102 -69
  182. diffusers/pipelines/deprecated/versatile_diffusion/pipeline_versatile_diffusion.py +13 -13
  183. diffusers/pipelines/deprecated/versatile_diffusion/pipeline_versatile_diffusion_dual_guided.py +10 -5
  184. diffusers/pipelines/deprecated/versatile_diffusion/pipeline_versatile_diffusion_image_variation.py +11 -6
  185. diffusers/pipelines/deprecated/versatile_diffusion/pipeline_versatile_diffusion_text_to_image.py +10 -5
  186. diffusers/pipelines/deprecated/vq_diffusion/pipeline_vq_diffusion.py +5 -5
  187. diffusers/pipelines/dit/pipeline_dit.py +7 -4
  188. diffusers/pipelines/flux/__init__.py +69 -0
  189. diffusers/pipelines/flux/modeling_flux.py +47 -0
  190. diffusers/pipelines/flux/pipeline_flux.py +957 -0
  191. diffusers/pipelines/flux/pipeline_flux_control.py +889 -0
  192. diffusers/pipelines/flux/pipeline_flux_control_img2img.py +945 -0
  193. diffusers/pipelines/flux/pipeline_flux_control_inpaint.py +1141 -0
  194. diffusers/pipelines/flux/pipeline_flux_controlnet.py +1006 -0
  195. diffusers/pipelines/flux/pipeline_flux_controlnet_image_to_image.py +998 -0
  196. diffusers/pipelines/flux/pipeline_flux_controlnet_inpainting.py +1204 -0
  197. diffusers/pipelines/flux/pipeline_flux_fill.py +969 -0
  198. diffusers/pipelines/flux/pipeline_flux_img2img.py +856 -0
  199. diffusers/pipelines/flux/pipeline_flux_inpaint.py +1022 -0
  200. diffusers/pipelines/flux/pipeline_flux_prior_redux.py +492 -0
  201. diffusers/pipelines/flux/pipeline_output.py +37 -0
  202. diffusers/pipelines/free_init_utils.py +41 -38
  203. diffusers/pipelines/free_noise_utils.py +596 -0
  204. diffusers/pipelines/hunyuan_video/__init__.py +48 -0
  205. diffusers/pipelines/hunyuan_video/pipeline_hunyuan_video.py +687 -0
  206. diffusers/pipelines/hunyuan_video/pipeline_output.py +20 -0
  207. diffusers/pipelines/hunyuandit/__init__.py +48 -0
  208. diffusers/pipelines/hunyuandit/pipeline_hunyuandit.py +916 -0
  209. diffusers/pipelines/i2vgen_xl/pipeline_i2vgen_xl.py +33 -48
  210. diffusers/pipelines/kandinsky/pipeline_kandinsky.py +8 -8
  211. diffusers/pipelines/kandinsky/pipeline_kandinsky_combined.py +32 -29
  212. diffusers/pipelines/kandinsky/pipeline_kandinsky_img2img.py +11 -11
  213. diffusers/pipelines/kandinsky/pipeline_kandinsky_inpaint.py +12 -12
  214. diffusers/pipelines/kandinsky/pipeline_kandinsky_prior.py +10 -10
  215. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2.py +6 -6
  216. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_combined.py +34 -31
  217. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_controlnet.py +10 -10
  218. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_controlnet_img2img.py +10 -10
  219. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_img2img.py +6 -6
  220. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_inpainting.py +8 -8
  221. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_prior.py +7 -7
  222. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_prior_emb2emb.py +6 -6
  223. diffusers/pipelines/kandinsky3/convert_kandinsky3_unet.py +3 -3
  224. diffusers/pipelines/kandinsky3/pipeline_kandinsky3.py +22 -35
  225. diffusers/pipelines/kandinsky3/pipeline_kandinsky3_img2img.py +26 -37
  226. diffusers/pipelines/kolors/__init__.py +54 -0
  227. diffusers/pipelines/kolors/pipeline_kolors.py +1070 -0
  228. diffusers/pipelines/kolors/pipeline_kolors_img2img.py +1250 -0
  229. diffusers/pipelines/kolors/pipeline_output.py +21 -0
  230. diffusers/pipelines/kolors/text_encoder.py +889 -0
  231. diffusers/pipelines/kolors/tokenizer.py +338 -0
  232. diffusers/pipelines/latent_consistency_models/pipeline_latent_consistency_img2img.py +82 -62
  233. diffusers/pipelines/latent_consistency_models/pipeline_latent_consistency_text2img.py +77 -60
  234. diffusers/pipelines/latent_diffusion/pipeline_latent_diffusion.py +12 -12
  235. diffusers/pipelines/latte/__init__.py +48 -0
  236. diffusers/pipelines/latte/pipeline_latte.py +881 -0
  237. diffusers/pipelines/ledits_pp/pipeline_leditspp_stable_diffusion.py +80 -74
  238. diffusers/pipelines/ledits_pp/pipeline_leditspp_stable_diffusion_xl.py +85 -76
  239. diffusers/pipelines/ledits_pp/pipeline_output.py +2 -2
  240. diffusers/pipelines/ltx/__init__.py +50 -0
  241. diffusers/pipelines/ltx/pipeline_ltx.py +789 -0
  242. diffusers/pipelines/ltx/pipeline_ltx_image2video.py +885 -0
  243. diffusers/pipelines/ltx/pipeline_output.py +20 -0
  244. diffusers/pipelines/lumina/__init__.py +48 -0
  245. diffusers/pipelines/lumina/pipeline_lumina.py +890 -0
  246. diffusers/pipelines/marigold/__init__.py +50 -0
  247. diffusers/pipelines/marigold/marigold_image_processing.py +576 -0
  248. diffusers/pipelines/marigold/pipeline_marigold_depth.py +813 -0
  249. diffusers/pipelines/marigold/pipeline_marigold_normals.py +690 -0
  250. diffusers/pipelines/mochi/__init__.py +48 -0
  251. diffusers/pipelines/mochi/pipeline_mochi.py +748 -0
  252. diffusers/pipelines/mochi/pipeline_output.py +20 -0
  253. diffusers/pipelines/musicldm/pipeline_musicldm.py +14 -14
  254. diffusers/pipelines/pag/__init__.py +80 -0
  255. diffusers/pipelines/pag/pag_utils.py +243 -0
  256. diffusers/pipelines/pag/pipeline_pag_controlnet_sd.py +1328 -0
  257. diffusers/pipelines/pag/pipeline_pag_controlnet_sd_inpaint.py +1543 -0
  258. diffusers/pipelines/pag/pipeline_pag_controlnet_sd_xl.py +1610 -0
  259. diffusers/pipelines/pag/pipeline_pag_controlnet_sd_xl_img2img.py +1683 -0
  260. diffusers/pipelines/pag/pipeline_pag_hunyuandit.py +969 -0
  261. diffusers/pipelines/pag/pipeline_pag_kolors.py +1136 -0
  262. diffusers/pipelines/pag/pipeline_pag_pixart_sigma.py +865 -0
  263. diffusers/pipelines/pag/pipeline_pag_sana.py +886 -0
  264. diffusers/pipelines/pag/pipeline_pag_sd.py +1062 -0
  265. diffusers/pipelines/pag/pipeline_pag_sd_3.py +994 -0
  266. diffusers/pipelines/pag/pipeline_pag_sd_3_img2img.py +1058 -0
  267. diffusers/pipelines/pag/pipeline_pag_sd_animatediff.py +866 -0
  268. diffusers/pipelines/pag/pipeline_pag_sd_img2img.py +1094 -0
  269. diffusers/pipelines/pag/pipeline_pag_sd_inpaint.py +1356 -0
  270. diffusers/pipelines/pag/pipeline_pag_sd_xl.py +1345 -0
  271. diffusers/pipelines/pag/pipeline_pag_sd_xl_img2img.py +1544 -0
  272. diffusers/pipelines/pag/pipeline_pag_sd_xl_inpaint.py +1776 -0
  273. diffusers/pipelines/paint_by_example/pipeline_paint_by_example.py +17 -12
  274. diffusers/pipelines/pia/pipeline_pia.py +74 -164
  275. diffusers/pipelines/pipeline_flax_utils.py +5 -10
  276. diffusers/pipelines/pipeline_loading_utils.py +515 -53
  277. diffusers/pipelines/pipeline_utils.py +411 -222
  278. diffusers/pipelines/pixart_alpha/__init__.py +8 -1
  279. diffusers/pipelines/pixart_alpha/pipeline_pixart_alpha.py +76 -93
  280. diffusers/pipelines/pixart_alpha/pipeline_pixart_sigma.py +873 -0
  281. diffusers/pipelines/sana/__init__.py +47 -0
  282. diffusers/pipelines/sana/pipeline_output.py +21 -0
  283. diffusers/pipelines/sana/pipeline_sana.py +884 -0
  284. diffusers/pipelines/semantic_stable_diffusion/pipeline_semantic_stable_diffusion.py +27 -23
  285. diffusers/pipelines/shap_e/pipeline_shap_e.py +3 -3
  286. diffusers/pipelines/shap_e/pipeline_shap_e_img2img.py +14 -14
  287. diffusers/pipelines/shap_e/renderer.py +1 -1
  288. diffusers/pipelines/stable_audio/__init__.py +50 -0
  289. diffusers/pipelines/stable_audio/modeling_stable_audio.py +158 -0
  290. diffusers/pipelines/stable_audio/pipeline_stable_audio.py +756 -0
  291. diffusers/pipelines/stable_cascade/pipeline_stable_cascade.py +71 -25
  292. diffusers/pipelines/stable_cascade/pipeline_stable_cascade_combined.py +23 -19
  293. diffusers/pipelines/stable_cascade/pipeline_stable_cascade_prior.py +35 -34
  294. diffusers/pipelines/stable_diffusion/__init__.py +0 -1
  295. diffusers/pipelines/stable_diffusion/convert_from_ckpt.py +20 -11
  296. diffusers/pipelines/stable_diffusion/pipeline_flax_stable_diffusion.py +1 -1
  297. diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion.py +2 -2
  298. diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion_upscale.py +6 -6
  299. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion.py +145 -79
  300. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_depth2img.py +43 -28
  301. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_image_variation.py +13 -8
  302. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_img2img.py +100 -68
  303. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_inpaint.py +109 -201
  304. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_instruct_pix2pix.py +131 -32
  305. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_latent_upscale.py +247 -87
  306. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_upscale.py +30 -29
  307. diffusers/pipelines/stable_diffusion/pipeline_stable_unclip.py +35 -27
  308. diffusers/pipelines/stable_diffusion/pipeline_stable_unclip_img2img.py +49 -42
  309. diffusers/pipelines/stable_diffusion/safety_checker.py +2 -1
  310. diffusers/pipelines/stable_diffusion_3/__init__.py +54 -0
  311. diffusers/pipelines/stable_diffusion_3/pipeline_output.py +21 -0
  312. diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3.py +1140 -0
  313. diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3_img2img.py +1036 -0
  314. diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3_inpaint.py +1250 -0
  315. diffusers/pipelines/stable_diffusion_attend_and_excite/pipeline_stable_diffusion_attend_and_excite.py +29 -20
  316. diffusers/pipelines/stable_diffusion_diffedit/pipeline_stable_diffusion_diffedit.py +59 -58
  317. diffusers/pipelines/stable_diffusion_gligen/pipeline_stable_diffusion_gligen.py +31 -25
  318. diffusers/pipelines/stable_diffusion_gligen/pipeline_stable_diffusion_gligen_text_image.py +38 -22
  319. diffusers/pipelines/stable_diffusion_k_diffusion/pipeline_stable_diffusion_k_diffusion.py +30 -24
  320. diffusers/pipelines/stable_diffusion_k_diffusion/pipeline_stable_diffusion_xl_k_diffusion.py +24 -23
  321. diffusers/pipelines/stable_diffusion_ldm3d/pipeline_stable_diffusion_ldm3d.py +107 -67
  322. diffusers/pipelines/stable_diffusion_panorama/pipeline_stable_diffusion_panorama.py +316 -69
  323. diffusers/pipelines/stable_diffusion_safe/pipeline_stable_diffusion_safe.py +10 -5
  324. diffusers/pipelines/stable_diffusion_safe/safety_checker.py +1 -1
  325. diffusers/pipelines/stable_diffusion_sag/pipeline_stable_diffusion_sag.py +98 -30
  326. diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl.py +121 -83
  327. diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl_img2img.py +161 -105
  328. diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl_inpaint.py +142 -218
  329. diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl_instruct_pix2pix.py +45 -29
  330. diffusers/pipelines/stable_diffusion_xl/watermark.py +9 -3
  331. diffusers/pipelines/stable_video_diffusion/pipeline_stable_video_diffusion.py +110 -57
  332. diffusers/pipelines/t2i_adapter/pipeline_stable_diffusion_adapter.py +69 -39
  333. diffusers/pipelines/t2i_adapter/pipeline_stable_diffusion_xl_adapter.py +105 -74
  334. diffusers/pipelines/text_to_video_synthesis/pipeline_output.py +3 -2
  335. diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_synth.py +29 -49
  336. diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_synth_img2img.py +32 -93
  337. diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_zero.py +37 -25
  338. diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_zero_sdxl.py +54 -40
  339. diffusers/pipelines/unclip/pipeline_unclip.py +6 -6
  340. diffusers/pipelines/unclip/pipeline_unclip_image_variation.py +6 -6
  341. diffusers/pipelines/unidiffuser/modeling_text_decoder.py +1 -1
  342. diffusers/pipelines/unidiffuser/modeling_uvit.py +12 -12
  343. diffusers/pipelines/unidiffuser/pipeline_unidiffuser.py +29 -28
  344. diffusers/pipelines/wuerstchen/modeling_paella_vq_model.py +5 -5
  345. diffusers/pipelines/wuerstchen/modeling_wuerstchen_common.py +5 -10
  346. diffusers/pipelines/wuerstchen/modeling_wuerstchen_prior.py +6 -8
  347. diffusers/pipelines/wuerstchen/pipeline_wuerstchen.py +4 -4
  348. diffusers/pipelines/wuerstchen/pipeline_wuerstchen_combined.py +12 -12
  349. diffusers/pipelines/wuerstchen/pipeline_wuerstchen_prior.py +15 -14
  350. diffusers/{models/dual_transformer_2d.py → quantizers/__init__.py} +2 -6
  351. diffusers/quantizers/auto.py +139 -0
  352. diffusers/quantizers/base.py +233 -0
  353. diffusers/quantizers/bitsandbytes/__init__.py +2 -0
  354. diffusers/quantizers/bitsandbytes/bnb_quantizer.py +561 -0
  355. diffusers/quantizers/bitsandbytes/utils.py +306 -0
  356. diffusers/quantizers/gguf/__init__.py +1 -0
  357. diffusers/quantizers/gguf/gguf_quantizer.py +159 -0
  358. diffusers/quantizers/gguf/utils.py +456 -0
  359. diffusers/quantizers/quantization_config.py +669 -0
  360. diffusers/quantizers/torchao/__init__.py +15 -0
  361. diffusers/quantizers/torchao/torchao_quantizer.py +292 -0
  362. diffusers/schedulers/__init__.py +12 -2
  363. diffusers/schedulers/deprecated/__init__.py +1 -1
  364. diffusers/schedulers/deprecated/scheduling_karras_ve.py +25 -25
  365. diffusers/schedulers/scheduling_amused.py +5 -5
  366. diffusers/schedulers/scheduling_consistency_decoder.py +11 -11
  367. diffusers/schedulers/scheduling_consistency_models.py +23 -25
  368. diffusers/schedulers/scheduling_cosine_dpmsolver_multistep.py +572 -0
  369. diffusers/schedulers/scheduling_ddim.py +27 -26
  370. diffusers/schedulers/scheduling_ddim_cogvideox.py +452 -0
  371. diffusers/schedulers/scheduling_ddim_flax.py +2 -1
  372. diffusers/schedulers/scheduling_ddim_inverse.py +16 -16
  373. diffusers/schedulers/scheduling_ddim_parallel.py +32 -31
  374. diffusers/schedulers/scheduling_ddpm.py +27 -30
  375. diffusers/schedulers/scheduling_ddpm_flax.py +7 -3
  376. diffusers/schedulers/scheduling_ddpm_parallel.py +33 -36
  377. diffusers/schedulers/scheduling_ddpm_wuerstchen.py +14 -14
  378. diffusers/schedulers/scheduling_deis_multistep.py +150 -50
  379. diffusers/schedulers/scheduling_dpm_cogvideox.py +489 -0
  380. diffusers/schedulers/scheduling_dpmsolver_multistep.py +221 -84
  381. diffusers/schedulers/scheduling_dpmsolver_multistep_flax.py +2 -2
  382. diffusers/schedulers/scheduling_dpmsolver_multistep_inverse.py +158 -52
  383. diffusers/schedulers/scheduling_dpmsolver_sde.py +153 -34
  384. diffusers/schedulers/scheduling_dpmsolver_singlestep.py +275 -86
  385. diffusers/schedulers/scheduling_edm_dpmsolver_multistep.py +81 -57
  386. diffusers/schedulers/scheduling_edm_euler.py +62 -39
  387. diffusers/schedulers/scheduling_euler_ancestral_discrete.py +30 -29
  388. diffusers/schedulers/scheduling_euler_discrete.py +255 -74
  389. diffusers/schedulers/scheduling_flow_match_euler_discrete.py +458 -0
  390. diffusers/schedulers/scheduling_flow_match_heun_discrete.py +320 -0
  391. diffusers/schedulers/scheduling_heun_discrete.py +174 -46
  392. diffusers/schedulers/scheduling_ipndm.py +9 -9
  393. diffusers/schedulers/scheduling_k_dpm_2_ancestral_discrete.py +138 -29
  394. diffusers/schedulers/scheduling_k_dpm_2_discrete.py +132 -26
  395. diffusers/schedulers/scheduling_karras_ve_flax.py +6 -6
  396. diffusers/schedulers/scheduling_lcm.py +23 -29
  397. diffusers/schedulers/scheduling_lms_discrete.py +105 -28
  398. diffusers/schedulers/scheduling_pndm.py +20 -20
  399. diffusers/schedulers/scheduling_repaint.py +21 -21
  400. diffusers/schedulers/scheduling_sasolver.py +157 -60
  401. diffusers/schedulers/scheduling_sde_ve.py +19 -19
  402. diffusers/schedulers/scheduling_tcd.py +41 -36
  403. diffusers/schedulers/scheduling_unclip.py +19 -16
  404. diffusers/schedulers/scheduling_unipc_multistep.py +243 -47
  405. diffusers/schedulers/scheduling_utils.py +12 -5
  406. diffusers/schedulers/scheduling_utils_flax.py +1 -3
  407. diffusers/schedulers/scheduling_vq_diffusion.py +10 -10
  408. diffusers/training_utils.py +214 -30
  409. diffusers/utils/__init__.py +17 -1
  410. diffusers/utils/constants.py +3 -0
  411. diffusers/utils/doc_utils.py +1 -0
  412. diffusers/utils/dummy_pt_objects.py +592 -7
  413. diffusers/utils/dummy_torch_and_torchsde_objects.py +15 -0
  414. diffusers/utils/dummy_torch_and_transformers_and_sentencepiece_objects.py +47 -0
  415. diffusers/utils/dummy_torch_and_transformers_objects.py +1001 -71
  416. diffusers/utils/dynamic_modules_utils.py +34 -29
  417. diffusers/utils/export_utils.py +50 -6
  418. diffusers/utils/hub_utils.py +131 -17
  419. diffusers/utils/import_utils.py +210 -8
  420. diffusers/utils/loading_utils.py +118 -5
  421. diffusers/utils/logging.py +4 -2
  422. diffusers/utils/peft_utils.py +37 -7
  423. diffusers/utils/state_dict_utils.py +13 -2
  424. diffusers/utils/testing_utils.py +193 -11
  425. diffusers/utils/torch_utils.py +4 -0
  426. diffusers/video_processor.py +113 -0
  427. {diffusers-0.27.1.dist-info → diffusers-0.32.2.dist-info}/METADATA +82 -91
  428. diffusers-0.32.2.dist-info/RECORD +550 -0
  429. {diffusers-0.27.1.dist-info → diffusers-0.32.2.dist-info}/WHEEL +1 -1
  430. diffusers/loaders/autoencoder.py +0 -146
  431. diffusers/loaders/controlnet.py +0 -136
  432. diffusers/loaders/lora.py +0 -1349
  433. diffusers/models/prior_transformer.py +0 -12
  434. diffusers/models/t5_film_transformer.py +0 -70
  435. diffusers/models/transformer_2d.py +0 -25
  436. diffusers/models/transformer_temporal.py +0 -34
  437. diffusers/models/unet_1d.py +0 -26
  438. diffusers/models/unet_1d_blocks.py +0 -203
  439. diffusers/models/unet_2d.py +0 -27
  440. diffusers/models/unet_2d_blocks.py +0 -375
  441. diffusers/models/unet_2d_condition.py +0 -25
  442. diffusers-0.27.1.dist-info/RECORD +0 -399
  443. {diffusers-0.27.1.dist-info → diffusers-0.32.2.dist-info}/LICENSE +0 -0
  444. {diffusers-0.27.1.dist-info → diffusers-0.32.2.dist-info}/entry_points.txt +0 -0
  445. {diffusers-0.27.1.dist-info → diffusers-0.32.2.dist-info}/top_level.txt +0 -0
@@ -29,11 +29,21 @@ def get_sinusoidal_embeddings(
29
29
  """Returns the positional encoding (same as Tensor2Tensor).
30
30
 
31
31
  Args:
32
- timesteps: a 1-D Tensor of N indices, one per batch element.
33
- These may be fractional.
34
- embedding_dim: The number of output channels.
35
- min_timescale: The smallest time unit (should probably be 0.0).
36
- max_timescale: The largest time unit.
32
+ timesteps (`jnp.ndarray` of shape `(N,)`):
33
+ A 1-D array of N indices, one per batch element. These may be fractional.
34
+ embedding_dim (`int`):
35
+ The number of output channels.
36
+ freq_shift (`float`, *optional*, defaults to `1`):
37
+ Shift applied to the frequency scaling of the embeddings.
38
+ min_timescale (`float`, *optional*, defaults to `1`):
39
+ The smallest time unit used in the sinusoidal calculation (should probably be 0.0).
40
+ max_timescale (`float`, *optional*, defaults to `1.0e4`):
41
+ The largest time unit used in the sinusoidal calculation.
42
+ flip_sin_to_cos (`bool`, *optional*, defaults to `False`):
43
+ Whether to flip the order of sinusoidal components to cosine first.
44
+ scale (`float`, *optional*, defaults to `1.0`):
45
+ A scaling factor applied to the positional embeddings.
46
+
37
47
  Returns:
38
48
  a Tensor of timing signals [N, num_channels]
39
49
  """
@@ -61,9 +71,9 @@ class FlaxTimestepEmbedding(nn.Module):
61
71
 
62
72
  Args:
63
73
  time_embed_dim (`int`, *optional*, defaults to `32`):
64
- Time step embedding dimension
65
- dtype (:obj:`jnp.dtype`, *optional*, defaults to jnp.float32):
66
- Parameters `dtype`
74
+ Time step embedding dimension.
75
+ dtype (`jnp.dtype`, *optional*, defaults to `jnp.float32`):
76
+ The data type for the embedding parameters.
67
77
  """
68
78
 
69
79
  time_embed_dim: int = 32
@@ -83,7 +93,11 @@ class FlaxTimesteps(nn.Module):
83
93
 
84
94
  Args:
85
95
  dim (`int`, *optional*, defaults to `32`):
86
- Time step embedding dimension
96
+ Time step embedding dimension.
97
+ flip_sin_to_cos (`bool`, *optional*, defaults to `False`):
98
+ Whether to flip the sinusoidal function from sine to cosine.
99
+ freq_shift (`float`, *optional*, defaults to `1`):
100
+ Frequency shift applied to the sinusoidal embeddings.
87
101
  """
88
102
 
89
103
  dim: int = 32
@@ -0,0 +1,480 @@
1
+ # coding=utf-8
2
+ # Copyright 2024 The HuggingFace Inc. team.
3
+ # Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ import importlib
18
+ import inspect
19
+ import os
20
+ from array import array
21
+ from collections import OrderedDict
22
+ from pathlib import Path
23
+ from typing import List, Optional, Union
24
+
25
+ import safetensors
26
+ import torch
27
+ from huggingface_hub.utils import EntryNotFoundError
28
+
29
+ from ..utils import (
30
+ GGUF_FILE_EXTENSION,
31
+ SAFE_WEIGHTS_INDEX_NAME,
32
+ SAFETENSORS_FILE_EXTENSION,
33
+ WEIGHTS_INDEX_NAME,
34
+ _add_variant,
35
+ _get_model_file,
36
+ deprecate,
37
+ is_accelerate_available,
38
+ is_gguf_available,
39
+ is_torch_available,
40
+ is_torch_version,
41
+ logging,
42
+ )
43
+
44
+
45
+ logger = logging.get_logger(__name__)
46
+
47
+ _CLASS_REMAPPING_DICT = {
48
+ "Transformer2DModel": {
49
+ "ada_norm_zero": "DiTTransformer2DModel",
50
+ "ada_norm_single": "PixArtTransformer2DModel",
51
+ }
52
+ }
53
+
54
+
55
+ if is_accelerate_available():
56
+ from accelerate import infer_auto_device_map
57
+ from accelerate.utils import get_balanced_memory, get_max_memory, set_module_tensor_to_device
58
+
59
+
60
+ # Adapted from `transformers` (see modeling_utils.py)
61
+ def _determine_device_map(
62
+ model: torch.nn.Module, device_map, max_memory, torch_dtype, keep_in_fp32_modules=[], hf_quantizer=None
63
+ ):
64
+ if isinstance(device_map, str):
65
+ special_dtypes = {}
66
+ if hf_quantizer is not None:
67
+ special_dtypes.update(hf_quantizer.get_special_dtypes_update(model, torch_dtype))
68
+ special_dtypes.update(
69
+ {
70
+ name: torch.float32
71
+ for name, _ in model.named_parameters()
72
+ if any(m in name for m in keep_in_fp32_modules)
73
+ }
74
+ )
75
+
76
+ target_dtype = torch_dtype
77
+ if hf_quantizer is not None:
78
+ target_dtype = hf_quantizer.adjust_target_dtype(target_dtype)
79
+
80
+ no_split_modules = model._get_no_split_modules(device_map)
81
+ device_map_kwargs = {"no_split_module_classes": no_split_modules}
82
+
83
+ if "special_dtypes" in inspect.signature(infer_auto_device_map).parameters:
84
+ device_map_kwargs["special_dtypes"] = special_dtypes
85
+ elif len(special_dtypes) > 0:
86
+ logger.warning(
87
+ "This model has some weights that should be kept in higher precision, you need to upgrade "
88
+ "`accelerate` to properly deal with them (`pip install --upgrade accelerate`)."
89
+ )
90
+
91
+ if device_map != "sequential":
92
+ max_memory = get_balanced_memory(
93
+ model,
94
+ dtype=torch_dtype,
95
+ low_zero=(device_map == "balanced_low_0"),
96
+ max_memory=max_memory,
97
+ **device_map_kwargs,
98
+ )
99
+ else:
100
+ max_memory = get_max_memory(max_memory)
101
+
102
+ if hf_quantizer is not None:
103
+ max_memory = hf_quantizer.adjust_max_memory(max_memory)
104
+
105
+ device_map_kwargs["max_memory"] = max_memory
106
+ device_map = infer_auto_device_map(model, dtype=target_dtype, **device_map_kwargs)
107
+
108
+ if hf_quantizer is not None:
109
+ hf_quantizer.validate_environment(device_map=device_map)
110
+
111
+ return device_map
112
+
113
+
114
+ def _fetch_remapped_cls_from_config(config, old_class):
115
+ previous_class_name = old_class.__name__
116
+ remapped_class_name = _CLASS_REMAPPING_DICT.get(previous_class_name).get(config["norm_type"], None)
117
+
118
+ # Details:
119
+ # https://github.com/huggingface/diffusers/pull/7647#discussion_r1621344818
120
+ if remapped_class_name:
121
+ # load diffusers library to import compatible and original scheduler
122
+ diffusers_library = importlib.import_module(__name__.split(".")[0])
123
+ remapped_class = getattr(diffusers_library, remapped_class_name)
124
+ logger.info(
125
+ f"Changing class object to be of `{remapped_class_name}` type from `{previous_class_name}` type."
126
+ f"This is because `{previous_class_name}` is scheduled to be deprecated in a future version. Note that this"
127
+ " DOESN'T affect the final results."
128
+ )
129
+ return remapped_class
130
+ else:
131
+ return old_class
132
+
133
+
134
+ def load_state_dict(checkpoint_file: Union[str, os.PathLike], variant: Optional[str] = None):
135
+ """
136
+ Reads a checkpoint file, returning properly formatted errors if they arise.
137
+ """
138
+ # TODO: We merge the sharded checkpoints in case we're doing quantization. We can revisit this change
139
+ # when refactoring the _merge_sharded_checkpoints() method later.
140
+ if isinstance(checkpoint_file, dict):
141
+ return checkpoint_file
142
+ try:
143
+ file_extension = os.path.basename(checkpoint_file).split(".")[-1]
144
+ if file_extension == SAFETENSORS_FILE_EXTENSION:
145
+ return safetensors.torch.load_file(checkpoint_file, device="cpu")
146
+ elif file_extension == GGUF_FILE_EXTENSION:
147
+ return load_gguf_checkpoint(checkpoint_file)
148
+ else:
149
+ weights_only_kwarg = {"weights_only": True} if is_torch_version(">=", "1.13") else {}
150
+ return torch.load(
151
+ checkpoint_file,
152
+ map_location="cpu",
153
+ **weights_only_kwarg,
154
+ )
155
+ except Exception as e:
156
+ try:
157
+ with open(checkpoint_file) as f:
158
+ if f.read().startswith("version"):
159
+ raise OSError(
160
+ "You seem to have cloned a repository without having git-lfs installed. Please install "
161
+ "git-lfs and run `git lfs install` followed by `git lfs pull` in the folder "
162
+ "you cloned."
163
+ )
164
+ else:
165
+ raise ValueError(
166
+ f"Unable to locate the file {checkpoint_file} which is necessary to load this pretrained "
167
+ "model. Make sure you have saved the model properly."
168
+ ) from e
169
+ except (UnicodeDecodeError, ValueError):
170
+ raise OSError(
171
+ f"Unable to load weights from checkpoint file for '{checkpoint_file}' " f"at '{checkpoint_file}'. "
172
+ )
173
+
174
+
175
+ def load_model_dict_into_meta(
176
+ model,
177
+ state_dict: OrderedDict,
178
+ device: Optional[Union[str, torch.device]] = None,
179
+ dtype: Optional[Union[str, torch.dtype]] = None,
180
+ model_name_or_path: Optional[str] = None,
181
+ hf_quantizer=None,
182
+ keep_in_fp32_modules=None,
183
+ ) -> List[str]:
184
+ if device is not None and not isinstance(device, (str, torch.device)):
185
+ raise ValueError(f"Expected device to have type `str` or `torch.device`, but got {type(device)=}.")
186
+ if hf_quantizer is None:
187
+ device = device or torch.device("cpu")
188
+ dtype = dtype or torch.float32
189
+ is_quantized = hf_quantizer is not None
190
+
191
+ accepts_dtype = "dtype" in set(inspect.signature(set_module_tensor_to_device).parameters.keys())
192
+ empty_state_dict = model.state_dict()
193
+ unexpected_keys = [param_name for param_name in state_dict if param_name not in empty_state_dict]
194
+
195
+ for param_name, param in state_dict.items():
196
+ if param_name not in empty_state_dict:
197
+ continue
198
+
199
+ set_module_kwargs = {}
200
+ # We convert floating dtypes to the `dtype` passed. We also want to keep the buffers/params
201
+ # in int/uint/bool and not cast them.
202
+ # TODO: revisit cases when param.dtype == torch.float8_e4m3fn
203
+ if torch.is_floating_point(param):
204
+ if (
205
+ keep_in_fp32_modules is not None
206
+ and any(
207
+ module_to_keep_in_fp32 in param_name.split(".") for module_to_keep_in_fp32 in keep_in_fp32_modules
208
+ )
209
+ and dtype == torch.float16
210
+ ):
211
+ param = param.to(torch.float32)
212
+ if accepts_dtype:
213
+ set_module_kwargs["dtype"] = torch.float32
214
+ else:
215
+ param = param.to(dtype)
216
+ if accepts_dtype:
217
+ set_module_kwargs["dtype"] = dtype
218
+
219
+ # bnb params are flattened.
220
+ # gguf quants have a different shape based on the type of quantization applied
221
+ if empty_state_dict[param_name].shape != param.shape:
222
+ if (
223
+ is_quantized
224
+ and hf_quantizer.pre_quantized
225
+ and hf_quantizer.check_if_quantized_param(model, param, param_name, state_dict, param_device=device)
226
+ ):
227
+ hf_quantizer.check_quantized_param_shape(param_name, empty_state_dict[param_name], param)
228
+ else:
229
+ model_name_or_path_str = f"{model_name_or_path} " if model_name_or_path is not None else ""
230
+ raise ValueError(
231
+ f"Cannot load {model_name_or_path_str} because {param_name} expected shape {empty_state_dict[param_name].shape}, but got {param.shape}. If you want to instead overwrite randomly initialized weights, please make sure to pass both `low_cpu_mem_usage=False` and `ignore_mismatched_sizes=True`. For more information, see also: https://github.com/huggingface/diffusers/issues/1619#issuecomment-1345604389 as an example."
232
+ )
233
+
234
+ if is_quantized and (
235
+ hf_quantizer.check_if_quantized_param(model, param, param_name, state_dict, param_device=device)
236
+ ):
237
+ hf_quantizer.create_quantized_param(model, param, param_name, device, state_dict, unexpected_keys)
238
+ else:
239
+ if accepts_dtype:
240
+ set_module_tensor_to_device(model, param_name, device, value=param, **set_module_kwargs)
241
+ else:
242
+ set_module_tensor_to_device(model, param_name, device, value=param)
243
+
244
+ return unexpected_keys
245
+
246
+
247
+ def _load_state_dict_into_model(model_to_load, state_dict: OrderedDict) -> List[str]:
248
+ # Convert old format to new format if needed from a PyTorch state_dict
249
+ # copy state_dict so _load_from_state_dict can modify it
250
+ state_dict = state_dict.copy()
251
+ error_msgs = []
252
+
253
+ # PyTorch's `_load_from_state_dict` does not copy parameters in a module's descendants
254
+ # so we need to apply the function recursively.
255
+ def load(module: torch.nn.Module, prefix: str = ""):
256
+ args = (state_dict, prefix, {}, True, [], [], error_msgs)
257
+ module._load_from_state_dict(*args)
258
+
259
+ for name, child in module._modules.items():
260
+ if child is not None:
261
+ load(child, prefix + name + ".")
262
+
263
+ load(model_to_load)
264
+
265
+ return error_msgs
266
+
267
+
268
+ def _fetch_index_file(
269
+ is_local,
270
+ pretrained_model_name_or_path,
271
+ subfolder,
272
+ use_safetensors,
273
+ cache_dir,
274
+ variant,
275
+ force_download,
276
+ proxies,
277
+ local_files_only,
278
+ token,
279
+ revision,
280
+ user_agent,
281
+ commit_hash,
282
+ ):
283
+ if is_local:
284
+ index_file = Path(
285
+ pretrained_model_name_or_path,
286
+ subfolder or "",
287
+ _add_variant(SAFE_WEIGHTS_INDEX_NAME if use_safetensors else WEIGHTS_INDEX_NAME, variant),
288
+ )
289
+ else:
290
+ index_file_in_repo = Path(
291
+ subfolder or "",
292
+ _add_variant(SAFE_WEIGHTS_INDEX_NAME if use_safetensors else WEIGHTS_INDEX_NAME, variant),
293
+ ).as_posix()
294
+ try:
295
+ index_file = _get_model_file(
296
+ pretrained_model_name_or_path,
297
+ weights_name=index_file_in_repo,
298
+ cache_dir=cache_dir,
299
+ force_download=force_download,
300
+ proxies=proxies,
301
+ local_files_only=local_files_only,
302
+ token=token,
303
+ revision=revision,
304
+ subfolder=None,
305
+ user_agent=user_agent,
306
+ commit_hash=commit_hash,
307
+ )
308
+ index_file = Path(index_file)
309
+ except (EntryNotFoundError, EnvironmentError):
310
+ index_file = None
311
+
312
+ return index_file
313
+
314
+
315
+ # Adapted from
316
+ # https://github.com/bghira/SimpleTuner/blob/cea2457ab063f6dedb9e697830ae68a96be90641/helpers/training/save_hooks.py#L64
317
+ def _merge_sharded_checkpoints(sharded_ckpt_cached_folder, sharded_metadata):
318
+ weight_map = sharded_metadata.get("weight_map", None)
319
+ if weight_map is None:
320
+ raise KeyError("'weight_map' key not found in the shard index file.")
321
+
322
+ # Collect all unique safetensors files from weight_map
323
+ files_to_load = set(weight_map.values())
324
+ is_safetensors = all(f.endswith(".safetensors") for f in files_to_load)
325
+ merged_state_dict = {}
326
+
327
+ # Load tensors from each unique file
328
+ for file_name in files_to_load:
329
+ part_file_path = os.path.join(sharded_ckpt_cached_folder, file_name)
330
+ if not os.path.exists(part_file_path):
331
+ raise FileNotFoundError(f"Part file {file_name} not found.")
332
+
333
+ if is_safetensors:
334
+ with safetensors.safe_open(part_file_path, framework="pt", device="cpu") as f:
335
+ for tensor_key in f.keys():
336
+ if tensor_key in weight_map:
337
+ merged_state_dict[tensor_key] = f.get_tensor(tensor_key)
338
+ else:
339
+ merged_state_dict.update(torch.load(part_file_path, weights_only=True, map_location="cpu"))
340
+
341
+ return merged_state_dict
342
+
343
+
344
+ def _fetch_index_file_legacy(
345
+ is_local,
346
+ pretrained_model_name_or_path,
347
+ subfolder,
348
+ use_safetensors,
349
+ cache_dir,
350
+ variant,
351
+ force_download,
352
+ proxies,
353
+ local_files_only,
354
+ token,
355
+ revision,
356
+ user_agent,
357
+ commit_hash,
358
+ ):
359
+ if is_local:
360
+ index_file = Path(
361
+ pretrained_model_name_or_path,
362
+ subfolder or "",
363
+ SAFE_WEIGHTS_INDEX_NAME if use_safetensors else WEIGHTS_INDEX_NAME,
364
+ ).as_posix()
365
+ splits = index_file.split(".")
366
+ split_index = -3 if ".cache" in index_file else -2
367
+ splits = splits[:-split_index] + [variant] + splits[-split_index:]
368
+ index_file = ".".join(splits)
369
+ if os.path.exists(index_file):
370
+ deprecation_message = f"This serialization format is now deprecated to standardize the serialization format between `transformers` and `diffusers`. We recommend you to remove the existing files associated with the current variant ({variant}) and re-obtain them by running a `save_pretrained()`."
371
+ deprecate("legacy_sharded_ckpts_with_variant", "1.0.0", deprecation_message, standard_warn=False)
372
+ index_file = Path(index_file)
373
+ else:
374
+ index_file = None
375
+ else:
376
+ if variant is not None:
377
+ index_file_in_repo = Path(
378
+ subfolder or "",
379
+ SAFE_WEIGHTS_INDEX_NAME if use_safetensors else WEIGHTS_INDEX_NAME,
380
+ ).as_posix()
381
+ splits = index_file_in_repo.split(".")
382
+ split_index = -2
383
+ splits = splits[:-split_index] + [variant] + splits[-split_index:]
384
+ index_file_in_repo = ".".join(splits)
385
+ try:
386
+ index_file = _get_model_file(
387
+ pretrained_model_name_or_path,
388
+ weights_name=index_file_in_repo,
389
+ cache_dir=cache_dir,
390
+ force_download=force_download,
391
+ proxies=proxies,
392
+ local_files_only=local_files_only,
393
+ token=token,
394
+ revision=revision,
395
+ subfolder=None,
396
+ user_agent=user_agent,
397
+ commit_hash=commit_hash,
398
+ )
399
+ index_file = Path(index_file)
400
+ deprecation_message = f"This serialization format is now deprecated to standardize the serialization format between `transformers` and `diffusers`. We recommend you to remove the existing files associated with the current variant ({variant}) and re-obtain them by running a `save_pretrained()`."
401
+ deprecate("legacy_sharded_ckpts_with_variant", "1.0.0", deprecation_message, standard_warn=False)
402
+ except (EntryNotFoundError, EnvironmentError):
403
+ index_file = None
404
+
405
+ return index_file
406
+
407
+
408
+ def _gguf_parse_value(_value, data_type):
409
+ if not isinstance(data_type, list):
410
+ data_type = [data_type]
411
+ if len(data_type) == 1:
412
+ data_type = data_type[0]
413
+ array_data_type = None
414
+ else:
415
+ if data_type[0] != 9:
416
+ raise ValueError("Received multiple types, therefore expected the first type to indicate an array.")
417
+ data_type, array_data_type = data_type
418
+
419
+ if data_type in [0, 1, 2, 3, 4, 5, 10, 11]:
420
+ _value = int(_value[0])
421
+ elif data_type in [6, 12]:
422
+ _value = float(_value[0])
423
+ elif data_type in [7]:
424
+ _value = bool(_value[0])
425
+ elif data_type in [8]:
426
+ _value = array("B", list(_value)).tobytes().decode()
427
+ elif data_type in [9]:
428
+ _value = _gguf_parse_value(_value, array_data_type)
429
+ return _value
430
+
431
+
432
+ def load_gguf_checkpoint(gguf_checkpoint_path, return_tensors=False):
433
+ """
434
+ Load a GGUF file and return a dictionary of parsed parameters containing tensors, the parsed tokenizer and config
435
+ attributes.
436
+
437
+ Args:
438
+ gguf_checkpoint_path (`str`):
439
+ The path the to GGUF file to load
440
+ return_tensors (`bool`, defaults to `True`):
441
+ Whether to read the tensors from the file and return them. Not doing so is faster and only loads the
442
+ metadata in memory.
443
+ """
444
+
445
+ if is_gguf_available() and is_torch_available():
446
+ import gguf
447
+ from gguf import GGUFReader
448
+
449
+ from ..quantizers.gguf.utils import SUPPORTED_GGUF_QUANT_TYPES, GGUFParameter
450
+ else:
451
+ logger.error(
452
+ "Loading a GGUF checkpoint in PyTorch, requires both PyTorch and GGUF>=0.10.0 to be installed. Please see "
453
+ "https://pytorch.org/ and https://github.com/ggerganov/llama.cpp/tree/master/gguf-py for installation instructions."
454
+ )
455
+ raise ImportError("Please install torch and gguf>=0.10.0 to load a GGUF checkpoint in PyTorch.")
456
+
457
+ reader = GGUFReader(gguf_checkpoint_path)
458
+
459
+ parsed_parameters = {}
460
+ for tensor in reader.tensors:
461
+ name = tensor.name
462
+ quant_type = tensor.tensor_type
463
+
464
+ # if the tensor is a torch supported dtype do not use GGUFParameter
465
+ is_gguf_quant = quant_type not in [gguf.GGMLQuantizationType.F32, gguf.GGMLQuantizationType.F16]
466
+ if is_gguf_quant and quant_type not in SUPPORTED_GGUF_QUANT_TYPES:
467
+ _supported_quants_str = "\n".join([str(type) for type in SUPPORTED_GGUF_QUANT_TYPES])
468
+ raise ValueError(
469
+ (
470
+ f"{name} has a quantization type: {str(quant_type)} which is unsupported."
471
+ "\n\nCurrently the following quantization types are supported: \n\n"
472
+ f"{_supported_quants_str}"
473
+ "\n\nTo request support for this quantization type please open an issue here: https://github.com/huggingface/diffusers"
474
+ )
475
+ )
476
+
477
+ weights = torch.from_numpy(tensor.data.copy())
478
+ parsed_parameters[name] = GGUFParameter(weights, quant_type=quant_type) if is_gguf_quant else weights
479
+
480
+ return parsed_parameters
@@ -12,7 +12,8 @@
12
12
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
13
  # See the License for the specific language governing permissions and
14
14
  # limitations under the License.
15
- """ PyTorch - Flax general utilities."""
15
+ """PyTorch - Flax general utilities."""
16
+
16
17
  import re
17
18
 
18
19
  import jax.numpy as jnp
@@ -245,9 +245,7 @@ class FlaxModelMixin(PushToHubMixin):
245
245
  force_download (`bool`, *optional*, defaults to `False`):
246
246
  Whether or not to force the (re-)download of the model weights and configuration files, overriding the
247
247
  cached versions if they exist.
248
- resume_download (`bool`, *optional*, defaults to `False`):
249
- Whether or not to resume downloading the model weights and configuration files. If set to `False`, any
250
- incompletely downloaded files are deleted.
248
+
251
249
  proxies (`Dict[str, str]`, *optional*):
252
250
  A dictionary of proxy servers to use by protocol or endpoint, for example, `{'http': 'foo.bar:3128',
253
251
  'http://hostname': 'foo.bar:4012'}`. The proxies are used on each request.
@@ -296,7 +294,6 @@ class FlaxModelMixin(PushToHubMixin):
296
294
  cache_dir = kwargs.pop("cache_dir", None)
297
295
  force_download = kwargs.pop("force_download", False)
298
296
  from_pt = kwargs.pop("from_pt", False)
299
- resume_download = kwargs.pop("resume_download", False)
300
297
  proxies = kwargs.pop("proxies", None)
301
298
  local_files_only = kwargs.pop("local_files_only", False)
302
299
  token = kwargs.pop("token", None)
@@ -316,7 +313,6 @@ class FlaxModelMixin(PushToHubMixin):
316
313
  cache_dir=cache_dir,
317
314
  return_unused_kwargs=True,
318
315
  force_download=force_download,
319
- resume_download=resume_download,
320
316
  proxies=proxies,
321
317
  local_files_only=local_files_only,
322
318
  token=token,
@@ -362,7 +358,6 @@ class FlaxModelMixin(PushToHubMixin):
362
358
  cache_dir=cache_dir,
363
359
  force_download=force_download,
364
360
  proxies=proxies,
365
- resume_download=resume_download,
366
361
  local_files_only=local_files_only,
367
362
  token=token,
368
363
  user_agent=user_agent,
@@ -535,7 +530,7 @@ class FlaxModelMixin(PushToHubMixin):
535
530
 
536
531
  if push_to_hub:
537
532
  commit_message = kwargs.pop("commit_message", None)
538
- private = kwargs.pop("private", False)
533
+ private = kwargs.pop("private", None)
539
534
  create_pr = kwargs.pop("create_pr", False)
540
535
  token = kwargs.pop("token", None)
541
536
  repo_id = kwargs.pop("repo_id", save_directory.split(os.path.sep)[-1])
@@ -15,3 +15,17 @@ class AutoencoderKLOutput(BaseOutput):
15
15
  """
16
16
 
17
17
  latent_dist: "DiagonalGaussianDistribution" # noqa: F821
18
+
19
+
20
+ @dataclass
21
+ class Transformer2DModelOutput(BaseOutput):
22
+ """
23
+ The output of [`Transformer2DModel`].
24
+
25
+ Args:
26
+ sample (`torch.Tensor` of shape `(batch_size, num_channels, height, width)` or `(batch size, num_vector_embeds - 1, num_latent_pixels)` if [`Transformer2DModel`] is discrete):
27
+ The hidden states output conditioned on the `encoder_hidden_states` input. If discrete, returns probability
28
+ distributions for the unnoised latent pixels.
29
+ """
30
+
31
+ sample: "torch.Tensor" # noqa: F821
@@ -12,7 +12,7 @@
12
12
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
13
  # See the License for the specific language governing permissions and
14
14
  # limitations under the License.
15
- """ PyTorch - Flax general utilities."""
15
+ """PyTorch - Flax general utilities."""
16
16
 
17
17
  from pickle import UnpicklingError
18
18