diffusers 0.33.1__py3-none-any.whl → 0.35.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (551) hide show
  1. diffusers/__init__.py +145 -1
  2. diffusers/callbacks.py +35 -0
  3. diffusers/commands/__init__.py +1 -1
  4. diffusers/commands/custom_blocks.py +134 -0
  5. diffusers/commands/diffusers_cli.py +3 -1
  6. diffusers/commands/env.py +1 -1
  7. diffusers/commands/fp16_safetensors.py +2 -2
  8. diffusers/configuration_utils.py +11 -2
  9. diffusers/dependency_versions_check.py +1 -1
  10. diffusers/dependency_versions_table.py +3 -3
  11. diffusers/experimental/rl/value_guided_sampling.py +1 -1
  12. diffusers/guiders/__init__.py +41 -0
  13. diffusers/guiders/adaptive_projected_guidance.py +188 -0
  14. diffusers/guiders/auto_guidance.py +190 -0
  15. diffusers/guiders/classifier_free_guidance.py +141 -0
  16. diffusers/guiders/classifier_free_zero_star_guidance.py +152 -0
  17. diffusers/guiders/frequency_decoupled_guidance.py +327 -0
  18. diffusers/guiders/guider_utils.py +309 -0
  19. diffusers/guiders/perturbed_attention_guidance.py +271 -0
  20. diffusers/guiders/skip_layer_guidance.py +262 -0
  21. diffusers/guiders/smoothed_energy_guidance.py +251 -0
  22. diffusers/guiders/tangential_classifier_free_guidance.py +143 -0
  23. diffusers/hooks/__init__.py +17 -0
  24. diffusers/hooks/_common.py +56 -0
  25. diffusers/hooks/_helpers.py +293 -0
  26. diffusers/hooks/faster_cache.py +9 -8
  27. diffusers/hooks/first_block_cache.py +259 -0
  28. diffusers/hooks/group_offloading.py +332 -227
  29. diffusers/hooks/hooks.py +58 -3
  30. diffusers/hooks/layer_skip.py +263 -0
  31. diffusers/hooks/layerwise_casting.py +5 -10
  32. diffusers/hooks/pyramid_attention_broadcast.py +15 -12
  33. diffusers/hooks/smoothed_energy_guidance_utils.py +167 -0
  34. diffusers/hooks/utils.py +43 -0
  35. diffusers/image_processor.py +7 -2
  36. diffusers/loaders/__init__.py +10 -0
  37. diffusers/loaders/ip_adapter.py +260 -18
  38. diffusers/loaders/lora_base.py +261 -127
  39. diffusers/loaders/lora_conversion_utils.py +657 -35
  40. diffusers/loaders/lora_pipeline.py +2778 -1246
  41. diffusers/loaders/peft.py +78 -112
  42. diffusers/loaders/single_file.py +2 -2
  43. diffusers/loaders/single_file_model.py +64 -15
  44. diffusers/loaders/single_file_utils.py +395 -7
  45. diffusers/loaders/textual_inversion.py +3 -2
  46. diffusers/loaders/transformer_flux.py +10 -11
  47. diffusers/loaders/transformer_sd3.py +8 -3
  48. diffusers/loaders/unet.py +24 -21
  49. diffusers/loaders/unet_loader_utils.py +6 -3
  50. diffusers/loaders/utils.py +1 -1
  51. diffusers/models/__init__.py +23 -1
  52. diffusers/models/activations.py +5 -5
  53. diffusers/models/adapter.py +2 -3
  54. diffusers/models/attention.py +488 -7
  55. diffusers/models/attention_dispatch.py +1218 -0
  56. diffusers/models/attention_flax.py +10 -10
  57. diffusers/models/attention_processor.py +113 -667
  58. diffusers/models/auto_model.py +49 -12
  59. diffusers/models/autoencoders/__init__.py +2 -0
  60. diffusers/models/autoencoders/autoencoder_asym_kl.py +4 -4
  61. diffusers/models/autoencoders/autoencoder_dc.py +17 -4
  62. diffusers/models/autoencoders/autoencoder_kl.py +5 -5
  63. diffusers/models/autoencoders/autoencoder_kl_allegro.py +4 -4
  64. diffusers/models/autoencoders/autoencoder_kl_cogvideox.py +6 -6
  65. diffusers/models/autoencoders/autoencoder_kl_cosmos.py +1110 -0
  66. diffusers/models/autoencoders/autoencoder_kl_hunyuan_video.py +2 -2
  67. diffusers/models/autoencoders/autoencoder_kl_ltx.py +3 -3
  68. diffusers/models/autoencoders/autoencoder_kl_magvit.py +4 -4
  69. diffusers/models/autoencoders/autoencoder_kl_mochi.py +3 -3
  70. diffusers/models/autoencoders/autoencoder_kl_qwenimage.py +1070 -0
  71. diffusers/models/autoencoders/autoencoder_kl_temporal_decoder.py +4 -4
  72. diffusers/models/autoencoders/autoencoder_kl_wan.py +626 -62
  73. diffusers/models/autoencoders/autoencoder_oobleck.py +1 -1
  74. diffusers/models/autoencoders/autoencoder_tiny.py +3 -3
  75. diffusers/models/autoencoders/consistency_decoder_vae.py +1 -1
  76. diffusers/models/autoencoders/vae.py +13 -2
  77. diffusers/models/autoencoders/vq_model.py +2 -2
  78. diffusers/models/cache_utils.py +32 -10
  79. diffusers/models/controlnet.py +1 -1
  80. diffusers/models/controlnet_flux.py +1 -1
  81. diffusers/models/controlnet_sd3.py +1 -1
  82. diffusers/models/controlnet_sparsectrl.py +1 -1
  83. diffusers/models/controlnets/__init__.py +1 -0
  84. diffusers/models/controlnets/controlnet.py +3 -3
  85. diffusers/models/controlnets/controlnet_flax.py +1 -1
  86. diffusers/models/controlnets/controlnet_flux.py +21 -20
  87. diffusers/models/controlnets/controlnet_hunyuan.py +2 -2
  88. diffusers/models/controlnets/controlnet_sana.py +290 -0
  89. diffusers/models/controlnets/controlnet_sd3.py +1 -1
  90. diffusers/models/controlnets/controlnet_sparsectrl.py +2 -2
  91. diffusers/models/controlnets/controlnet_union.py +5 -5
  92. diffusers/models/controlnets/controlnet_xs.py +7 -7
  93. diffusers/models/controlnets/multicontrolnet.py +4 -5
  94. diffusers/models/controlnets/multicontrolnet_union.py +5 -6
  95. diffusers/models/downsampling.py +2 -2
  96. diffusers/models/embeddings.py +36 -46
  97. diffusers/models/embeddings_flax.py +2 -2
  98. diffusers/models/lora.py +3 -3
  99. diffusers/models/model_loading_utils.py +233 -1
  100. diffusers/models/modeling_flax_utils.py +1 -2
  101. diffusers/models/modeling_utils.py +203 -108
  102. diffusers/models/normalization.py +4 -4
  103. diffusers/models/resnet.py +2 -2
  104. diffusers/models/resnet_flax.py +1 -1
  105. diffusers/models/transformers/__init__.py +7 -0
  106. diffusers/models/transformers/auraflow_transformer_2d.py +70 -24
  107. diffusers/models/transformers/cogvideox_transformer_3d.py +1 -1
  108. diffusers/models/transformers/consisid_transformer_3d.py +1 -1
  109. diffusers/models/transformers/dit_transformer_2d.py +2 -2
  110. diffusers/models/transformers/dual_transformer_2d.py +1 -1
  111. diffusers/models/transformers/hunyuan_transformer_2d.py +2 -2
  112. diffusers/models/transformers/latte_transformer_3d.py +4 -5
  113. diffusers/models/transformers/lumina_nextdit2d.py +2 -2
  114. diffusers/models/transformers/pixart_transformer_2d.py +3 -3
  115. diffusers/models/transformers/prior_transformer.py +1 -1
  116. diffusers/models/transformers/sana_transformer.py +8 -3
  117. diffusers/models/transformers/stable_audio_transformer.py +5 -9
  118. diffusers/models/transformers/t5_film_transformer.py +3 -3
  119. diffusers/models/transformers/transformer_2d.py +1 -1
  120. diffusers/models/transformers/transformer_allegro.py +1 -1
  121. diffusers/models/transformers/transformer_chroma.py +641 -0
  122. diffusers/models/transformers/transformer_cogview3plus.py +5 -10
  123. diffusers/models/transformers/transformer_cogview4.py +353 -27
  124. diffusers/models/transformers/transformer_cosmos.py +586 -0
  125. diffusers/models/transformers/transformer_flux.py +376 -138
  126. diffusers/models/transformers/transformer_hidream_image.py +942 -0
  127. diffusers/models/transformers/transformer_hunyuan_video.py +12 -8
  128. diffusers/models/transformers/transformer_hunyuan_video_framepack.py +416 -0
  129. diffusers/models/transformers/transformer_ltx.py +105 -24
  130. diffusers/models/transformers/transformer_lumina2.py +1 -1
  131. diffusers/models/transformers/transformer_mochi.py +1 -1
  132. diffusers/models/transformers/transformer_omnigen.py +2 -2
  133. diffusers/models/transformers/transformer_qwenimage.py +645 -0
  134. diffusers/models/transformers/transformer_sd3.py +7 -7
  135. diffusers/models/transformers/transformer_skyreels_v2.py +607 -0
  136. diffusers/models/transformers/transformer_temporal.py +1 -1
  137. diffusers/models/transformers/transformer_wan.py +316 -87
  138. diffusers/models/transformers/transformer_wan_vace.py +387 -0
  139. diffusers/models/unets/unet_1d.py +1 -1
  140. diffusers/models/unets/unet_1d_blocks.py +1 -1
  141. diffusers/models/unets/unet_2d.py +1 -1
  142. diffusers/models/unets/unet_2d_blocks.py +1 -1
  143. diffusers/models/unets/unet_2d_blocks_flax.py +8 -7
  144. diffusers/models/unets/unet_2d_condition.py +4 -3
  145. diffusers/models/unets/unet_2d_condition_flax.py +2 -2
  146. diffusers/models/unets/unet_3d_blocks.py +1 -1
  147. diffusers/models/unets/unet_3d_condition.py +3 -3
  148. diffusers/models/unets/unet_i2vgen_xl.py +3 -3
  149. diffusers/models/unets/unet_kandinsky3.py +1 -1
  150. diffusers/models/unets/unet_motion_model.py +2 -2
  151. diffusers/models/unets/unet_stable_cascade.py +1 -1
  152. diffusers/models/upsampling.py +2 -2
  153. diffusers/models/vae_flax.py +2 -2
  154. diffusers/models/vq_model.py +1 -1
  155. diffusers/modular_pipelines/__init__.py +83 -0
  156. diffusers/modular_pipelines/components_manager.py +1068 -0
  157. diffusers/modular_pipelines/flux/__init__.py +66 -0
  158. diffusers/modular_pipelines/flux/before_denoise.py +689 -0
  159. diffusers/modular_pipelines/flux/decoders.py +109 -0
  160. diffusers/modular_pipelines/flux/denoise.py +227 -0
  161. diffusers/modular_pipelines/flux/encoders.py +412 -0
  162. diffusers/modular_pipelines/flux/modular_blocks.py +181 -0
  163. diffusers/modular_pipelines/flux/modular_pipeline.py +59 -0
  164. diffusers/modular_pipelines/modular_pipeline.py +2446 -0
  165. diffusers/modular_pipelines/modular_pipeline_utils.py +672 -0
  166. diffusers/modular_pipelines/node_utils.py +665 -0
  167. diffusers/modular_pipelines/stable_diffusion_xl/__init__.py +77 -0
  168. diffusers/modular_pipelines/stable_diffusion_xl/before_denoise.py +1874 -0
  169. diffusers/modular_pipelines/stable_diffusion_xl/decoders.py +208 -0
  170. diffusers/modular_pipelines/stable_diffusion_xl/denoise.py +771 -0
  171. diffusers/modular_pipelines/stable_diffusion_xl/encoders.py +887 -0
  172. diffusers/modular_pipelines/stable_diffusion_xl/modular_blocks.py +380 -0
  173. diffusers/modular_pipelines/stable_diffusion_xl/modular_pipeline.py +365 -0
  174. diffusers/modular_pipelines/wan/__init__.py +66 -0
  175. diffusers/modular_pipelines/wan/before_denoise.py +365 -0
  176. diffusers/modular_pipelines/wan/decoders.py +105 -0
  177. diffusers/modular_pipelines/wan/denoise.py +261 -0
  178. diffusers/modular_pipelines/wan/encoders.py +242 -0
  179. diffusers/modular_pipelines/wan/modular_blocks.py +144 -0
  180. diffusers/modular_pipelines/wan/modular_pipeline.py +90 -0
  181. diffusers/pipelines/__init__.py +68 -6
  182. diffusers/pipelines/allegro/pipeline_allegro.py +11 -11
  183. diffusers/pipelines/amused/pipeline_amused.py +7 -6
  184. diffusers/pipelines/amused/pipeline_amused_img2img.py +6 -5
  185. diffusers/pipelines/amused/pipeline_amused_inpaint.py +6 -5
  186. diffusers/pipelines/animatediff/pipeline_animatediff.py +6 -6
  187. diffusers/pipelines/animatediff/pipeline_animatediff_controlnet.py +6 -6
  188. diffusers/pipelines/animatediff/pipeline_animatediff_sdxl.py +16 -15
  189. diffusers/pipelines/animatediff/pipeline_animatediff_sparsectrl.py +6 -6
  190. diffusers/pipelines/animatediff/pipeline_animatediff_video2video.py +5 -5
  191. diffusers/pipelines/animatediff/pipeline_animatediff_video2video_controlnet.py +5 -5
  192. diffusers/pipelines/audioldm/pipeline_audioldm.py +8 -7
  193. diffusers/pipelines/audioldm2/modeling_audioldm2.py +1 -1
  194. diffusers/pipelines/audioldm2/pipeline_audioldm2.py +22 -13
  195. diffusers/pipelines/aura_flow/pipeline_aura_flow.py +48 -11
  196. diffusers/pipelines/auto_pipeline.py +23 -20
  197. diffusers/pipelines/blip_diffusion/modeling_blip2.py +1 -1
  198. diffusers/pipelines/blip_diffusion/modeling_ctx_clip.py +2 -2
  199. diffusers/pipelines/blip_diffusion/pipeline_blip_diffusion.py +11 -10
  200. diffusers/pipelines/chroma/__init__.py +49 -0
  201. diffusers/pipelines/chroma/pipeline_chroma.py +949 -0
  202. diffusers/pipelines/chroma/pipeline_chroma_img2img.py +1034 -0
  203. diffusers/pipelines/chroma/pipeline_output.py +21 -0
  204. diffusers/pipelines/cogvideo/pipeline_cogvideox.py +17 -16
  205. diffusers/pipelines/cogvideo/pipeline_cogvideox_fun_control.py +17 -16
  206. diffusers/pipelines/cogvideo/pipeline_cogvideox_image2video.py +18 -17
  207. diffusers/pipelines/cogvideo/pipeline_cogvideox_video2video.py +17 -16
  208. diffusers/pipelines/cogview3/pipeline_cogview3plus.py +9 -9
  209. diffusers/pipelines/cogview4/pipeline_cogview4.py +23 -22
  210. diffusers/pipelines/cogview4/pipeline_cogview4_control.py +7 -7
  211. diffusers/pipelines/consisid/consisid_utils.py +2 -2
  212. diffusers/pipelines/consisid/pipeline_consisid.py +8 -8
  213. diffusers/pipelines/consistency_models/pipeline_consistency_models.py +1 -1
  214. diffusers/pipelines/controlnet/pipeline_controlnet.py +7 -7
  215. diffusers/pipelines/controlnet/pipeline_controlnet_blip_diffusion.py +11 -10
  216. diffusers/pipelines/controlnet/pipeline_controlnet_img2img.py +7 -7
  217. diffusers/pipelines/controlnet/pipeline_controlnet_inpaint.py +7 -7
  218. diffusers/pipelines/controlnet/pipeline_controlnet_inpaint_sd_xl.py +14 -14
  219. diffusers/pipelines/controlnet/pipeline_controlnet_sd_xl.py +10 -6
  220. diffusers/pipelines/controlnet/pipeline_controlnet_sd_xl_img2img.py +13 -13
  221. diffusers/pipelines/controlnet/pipeline_controlnet_union_inpaint_sd_xl.py +226 -107
  222. diffusers/pipelines/controlnet/pipeline_controlnet_union_sd_xl.py +12 -8
  223. diffusers/pipelines/controlnet/pipeline_controlnet_union_sd_xl_img2img.py +207 -105
  224. diffusers/pipelines/controlnet/pipeline_flax_controlnet.py +1 -1
  225. diffusers/pipelines/controlnet_hunyuandit/pipeline_hunyuandit_controlnet.py +8 -8
  226. diffusers/pipelines/controlnet_sd3/pipeline_stable_diffusion_3_controlnet.py +7 -7
  227. diffusers/pipelines/controlnet_sd3/pipeline_stable_diffusion_3_controlnet_inpainting.py +7 -7
  228. diffusers/pipelines/controlnet_xs/pipeline_controlnet_xs.py +12 -10
  229. diffusers/pipelines/controlnet_xs/pipeline_controlnet_xs_sd_xl.py +9 -7
  230. diffusers/pipelines/cosmos/__init__.py +54 -0
  231. diffusers/pipelines/cosmos/pipeline_cosmos2_text2image.py +673 -0
  232. diffusers/pipelines/cosmos/pipeline_cosmos2_video2world.py +792 -0
  233. diffusers/pipelines/cosmos/pipeline_cosmos_text2world.py +664 -0
  234. diffusers/pipelines/cosmos/pipeline_cosmos_video2world.py +826 -0
  235. diffusers/pipelines/cosmos/pipeline_output.py +40 -0
  236. diffusers/pipelines/dance_diffusion/pipeline_dance_diffusion.py +5 -4
  237. diffusers/pipelines/ddim/pipeline_ddim.py +4 -4
  238. diffusers/pipelines/ddpm/pipeline_ddpm.py +1 -1
  239. diffusers/pipelines/deepfloyd_if/pipeline_if.py +10 -10
  240. diffusers/pipelines/deepfloyd_if/pipeline_if_img2img.py +10 -10
  241. diffusers/pipelines/deepfloyd_if/pipeline_if_img2img_superresolution.py +10 -10
  242. diffusers/pipelines/deepfloyd_if/pipeline_if_inpainting.py +10 -10
  243. diffusers/pipelines/deepfloyd_if/pipeline_if_inpainting_superresolution.py +10 -10
  244. diffusers/pipelines/deepfloyd_if/pipeline_if_superresolution.py +10 -10
  245. diffusers/pipelines/deprecated/alt_diffusion/pipeline_alt_diffusion.py +8 -8
  246. diffusers/pipelines/deprecated/alt_diffusion/pipeline_alt_diffusion_img2img.py +5 -5
  247. diffusers/pipelines/deprecated/audio_diffusion/mel.py +1 -1
  248. diffusers/pipelines/deprecated/audio_diffusion/pipeline_audio_diffusion.py +3 -3
  249. diffusers/pipelines/deprecated/latent_diffusion_uncond/pipeline_latent_diffusion_uncond.py +1 -1
  250. diffusers/pipelines/deprecated/pndm/pipeline_pndm.py +2 -2
  251. diffusers/pipelines/deprecated/repaint/pipeline_repaint.py +4 -3
  252. diffusers/pipelines/deprecated/score_sde_ve/pipeline_score_sde_ve.py +1 -1
  253. diffusers/pipelines/deprecated/spectrogram_diffusion/continuous_encoder.py +1 -1
  254. diffusers/pipelines/deprecated/spectrogram_diffusion/midi_utils.py +1 -1
  255. diffusers/pipelines/deprecated/spectrogram_diffusion/notes_encoder.py +1 -1
  256. diffusers/pipelines/deprecated/spectrogram_diffusion/pipeline_spectrogram_diffusion.py +1 -1
  257. diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_cycle_diffusion.py +8 -8
  258. diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_onnx_stable_diffusion_inpaint_legacy.py +9 -9
  259. diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_inpaint_legacy.py +10 -10
  260. diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_model_editing.py +10 -8
  261. diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_paradigms.py +5 -5
  262. diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_pix2pix_zero.py +18 -18
  263. diffusers/pipelines/deprecated/stochastic_karras_ve/pipeline_stochastic_karras_ve.py +1 -1
  264. diffusers/pipelines/deprecated/versatile_diffusion/modeling_text_unet.py +2 -2
  265. diffusers/pipelines/deprecated/versatile_diffusion/pipeline_versatile_diffusion.py +6 -6
  266. diffusers/pipelines/deprecated/versatile_diffusion/pipeline_versatile_diffusion_dual_guided.py +5 -5
  267. diffusers/pipelines/deprecated/versatile_diffusion/pipeline_versatile_diffusion_image_variation.py +5 -5
  268. diffusers/pipelines/deprecated/versatile_diffusion/pipeline_versatile_diffusion_text_to_image.py +5 -5
  269. diffusers/pipelines/deprecated/vq_diffusion/pipeline_vq_diffusion.py +1 -1
  270. diffusers/pipelines/dit/pipeline_dit.py +4 -2
  271. diffusers/pipelines/easyanimate/pipeline_easyanimate.py +4 -4
  272. diffusers/pipelines/easyanimate/pipeline_easyanimate_control.py +4 -4
  273. diffusers/pipelines/easyanimate/pipeline_easyanimate_inpaint.py +7 -6
  274. diffusers/pipelines/flux/__init__.py +4 -0
  275. diffusers/pipelines/flux/modeling_flux.py +1 -1
  276. diffusers/pipelines/flux/pipeline_flux.py +37 -36
  277. diffusers/pipelines/flux/pipeline_flux_control.py +9 -9
  278. diffusers/pipelines/flux/pipeline_flux_control_img2img.py +7 -7
  279. diffusers/pipelines/flux/pipeline_flux_control_inpaint.py +7 -7
  280. diffusers/pipelines/flux/pipeline_flux_controlnet.py +7 -7
  281. diffusers/pipelines/flux/pipeline_flux_controlnet_image_to_image.py +31 -23
  282. diffusers/pipelines/flux/pipeline_flux_controlnet_inpainting.py +3 -2
  283. diffusers/pipelines/flux/pipeline_flux_fill.py +7 -7
  284. diffusers/pipelines/flux/pipeline_flux_img2img.py +40 -7
  285. diffusers/pipelines/flux/pipeline_flux_inpaint.py +12 -7
  286. diffusers/pipelines/flux/pipeline_flux_kontext.py +1134 -0
  287. diffusers/pipelines/flux/pipeline_flux_kontext_inpaint.py +1460 -0
  288. diffusers/pipelines/flux/pipeline_flux_prior_redux.py +2 -2
  289. diffusers/pipelines/flux/pipeline_output.py +6 -4
  290. diffusers/pipelines/free_init_utils.py +2 -2
  291. diffusers/pipelines/free_noise_utils.py +3 -3
  292. diffusers/pipelines/hidream_image/__init__.py +47 -0
  293. diffusers/pipelines/hidream_image/pipeline_hidream_image.py +1026 -0
  294. diffusers/pipelines/hidream_image/pipeline_output.py +35 -0
  295. diffusers/pipelines/hunyuan_video/__init__.py +2 -0
  296. diffusers/pipelines/hunyuan_video/pipeline_hunyuan_skyreels_image2video.py +8 -8
  297. diffusers/pipelines/hunyuan_video/pipeline_hunyuan_video.py +26 -25
  298. diffusers/pipelines/hunyuan_video/pipeline_hunyuan_video_framepack.py +1114 -0
  299. diffusers/pipelines/hunyuan_video/pipeline_hunyuan_video_image2video.py +71 -15
  300. diffusers/pipelines/hunyuan_video/pipeline_output.py +19 -0
  301. diffusers/pipelines/hunyuandit/pipeline_hunyuandit.py +8 -8
  302. diffusers/pipelines/i2vgen_xl/pipeline_i2vgen_xl.py +10 -8
  303. diffusers/pipelines/kandinsky/pipeline_kandinsky.py +6 -6
  304. diffusers/pipelines/kandinsky/pipeline_kandinsky_combined.py +34 -34
  305. diffusers/pipelines/kandinsky/pipeline_kandinsky_img2img.py +19 -26
  306. diffusers/pipelines/kandinsky/pipeline_kandinsky_inpaint.py +7 -7
  307. diffusers/pipelines/kandinsky/pipeline_kandinsky_prior.py +11 -11
  308. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2.py +6 -6
  309. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_combined.py +35 -35
  310. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_controlnet.py +6 -6
  311. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_controlnet_img2img.py +17 -39
  312. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_img2img.py +17 -45
  313. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_inpainting.py +7 -7
  314. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_prior.py +10 -10
  315. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_prior_emb2emb.py +10 -10
  316. diffusers/pipelines/kandinsky3/pipeline_kandinsky3.py +7 -7
  317. diffusers/pipelines/kandinsky3/pipeline_kandinsky3_img2img.py +17 -38
  318. diffusers/pipelines/kolors/pipeline_kolors.py +10 -10
  319. diffusers/pipelines/kolors/pipeline_kolors_img2img.py +12 -12
  320. diffusers/pipelines/kolors/text_encoder.py +3 -3
  321. diffusers/pipelines/kolors/tokenizer.py +1 -1
  322. diffusers/pipelines/latent_consistency_models/pipeline_latent_consistency_img2img.py +2 -2
  323. diffusers/pipelines/latent_consistency_models/pipeline_latent_consistency_text2img.py +2 -2
  324. diffusers/pipelines/latent_diffusion/pipeline_latent_diffusion.py +1 -1
  325. diffusers/pipelines/latent_diffusion/pipeline_latent_diffusion_superresolution.py +3 -3
  326. diffusers/pipelines/latte/pipeline_latte.py +12 -12
  327. diffusers/pipelines/ledits_pp/pipeline_leditspp_stable_diffusion.py +13 -13
  328. diffusers/pipelines/ledits_pp/pipeline_leditspp_stable_diffusion_xl.py +17 -16
  329. diffusers/pipelines/ltx/__init__.py +4 -0
  330. diffusers/pipelines/ltx/modeling_latent_upsampler.py +188 -0
  331. diffusers/pipelines/ltx/pipeline_ltx.py +64 -18
  332. diffusers/pipelines/ltx/pipeline_ltx_condition.py +117 -38
  333. diffusers/pipelines/ltx/pipeline_ltx_image2video.py +63 -18
  334. diffusers/pipelines/ltx/pipeline_ltx_latent_upsample.py +277 -0
  335. diffusers/pipelines/lumina/pipeline_lumina.py +13 -13
  336. diffusers/pipelines/lumina2/pipeline_lumina2.py +10 -10
  337. diffusers/pipelines/marigold/marigold_image_processing.py +2 -2
  338. diffusers/pipelines/mochi/pipeline_mochi.py +15 -14
  339. diffusers/pipelines/musicldm/pipeline_musicldm.py +16 -13
  340. diffusers/pipelines/omnigen/pipeline_omnigen.py +13 -11
  341. diffusers/pipelines/omnigen/processor_omnigen.py +8 -3
  342. diffusers/pipelines/onnx_utils.py +15 -2
  343. diffusers/pipelines/pag/pag_utils.py +2 -2
  344. diffusers/pipelines/pag/pipeline_pag_controlnet_sd.py +12 -8
  345. diffusers/pipelines/pag/pipeline_pag_controlnet_sd_inpaint.py +7 -7
  346. diffusers/pipelines/pag/pipeline_pag_controlnet_sd_xl.py +10 -6
  347. diffusers/pipelines/pag/pipeline_pag_controlnet_sd_xl_img2img.py +14 -14
  348. diffusers/pipelines/pag/pipeline_pag_hunyuandit.py +8 -8
  349. diffusers/pipelines/pag/pipeline_pag_kolors.py +10 -10
  350. diffusers/pipelines/pag/pipeline_pag_pixart_sigma.py +11 -11
  351. diffusers/pipelines/pag/pipeline_pag_sana.py +18 -12
  352. diffusers/pipelines/pag/pipeline_pag_sd.py +8 -8
  353. diffusers/pipelines/pag/pipeline_pag_sd_3.py +7 -7
  354. diffusers/pipelines/pag/pipeline_pag_sd_3_img2img.py +7 -7
  355. diffusers/pipelines/pag/pipeline_pag_sd_animatediff.py +6 -6
  356. diffusers/pipelines/pag/pipeline_pag_sd_img2img.py +5 -5
  357. diffusers/pipelines/pag/pipeline_pag_sd_inpaint.py +8 -8
  358. diffusers/pipelines/pag/pipeline_pag_sd_xl.py +16 -15
  359. diffusers/pipelines/pag/pipeline_pag_sd_xl_img2img.py +18 -17
  360. diffusers/pipelines/pag/pipeline_pag_sd_xl_inpaint.py +12 -12
  361. diffusers/pipelines/paint_by_example/image_encoder.py +1 -1
  362. diffusers/pipelines/paint_by_example/pipeline_paint_by_example.py +8 -7
  363. diffusers/pipelines/pia/pipeline_pia.py +8 -6
  364. diffusers/pipelines/pipeline_flax_utils.py +5 -6
  365. diffusers/pipelines/pipeline_loading_utils.py +113 -15
  366. diffusers/pipelines/pipeline_utils.py +127 -48
  367. diffusers/pipelines/pixart_alpha/pipeline_pixart_alpha.py +14 -12
  368. diffusers/pipelines/pixart_alpha/pipeline_pixart_sigma.py +31 -11
  369. diffusers/pipelines/qwenimage/__init__.py +55 -0
  370. diffusers/pipelines/qwenimage/pipeline_output.py +21 -0
  371. diffusers/pipelines/qwenimage/pipeline_qwenimage.py +726 -0
  372. diffusers/pipelines/qwenimage/pipeline_qwenimage_edit.py +882 -0
  373. diffusers/pipelines/qwenimage/pipeline_qwenimage_img2img.py +829 -0
  374. diffusers/pipelines/qwenimage/pipeline_qwenimage_inpaint.py +1015 -0
  375. diffusers/pipelines/sana/__init__.py +4 -0
  376. diffusers/pipelines/sana/pipeline_sana.py +23 -21
  377. diffusers/pipelines/sana/pipeline_sana_controlnet.py +1106 -0
  378. diffusers/pipelines/sana/pipeline_sana_sprint.py +23 -19
  379. diffusers/pipelines/sana/pipeline_sana_sprint_img2img.py +981 -0
  380. diffusers/pipelines/semantic_stable_diffusion/pipeline_semantic_stable_diffusion.py +7 -6
  381. diffusers/pipelines/shap_e/camera.py +1 -1
  382. diffusers/pipelines/shap_e/pipeline_shap_e.py +1 -1
  383. diffusers/pipelines/shap_e/pipeline_shap_e_img2img.py +1 -1
  384. diffusers/pipelines/shap_e/renderer.py +3 -3
  385. diffusers/pipelines/skyreels_v2/__init__.py +59 -0
  386. diffusers/pipelines/skyreels_v2/pipeline_output.py +20 -0
  387. diffusers/pipelines/skyreels_v2/pipeline_skyreels_v2.py +610 -0
  388. diffusers/pipelines/skyreels_v2/pipeline_skyreels_v2_diffusion_forcing.py +978 -0
  389. diffusers/pipelines/skyreels_v2/pipeline_skyreels_v2_diffusion_forcing_i2v.py +1059 -0
  390. diffusers/pipelines/skyreels_v2/pipeline_skyreels_v2_diffusion_forcing_v2v.py +1063 -0
  391. diffusers/pipelines/skyreels_v2/pipeline_skyreels_v2_i2v.py +745 -0
  392. diffusers/pipelines/stable_audio/modeling_stable_audio.py +1 -1
  393. diffusers/pipelines/stable_audio/pipeline_stable_audio.py +5 -5
  394. diffusers/pipelines/stable_cascade/pipeline_stable_cascade.py +8 -8
  395. diffusers/pipelines/stable_cascade/pipeline_stable_cascade_combined.py +13 -13
  396. diffusers/pipelines/stable_cascade/pipeline_stable_cascade_prior.py +9 -9
  397. diffusers/pipelines/stable_diffusion/__init__.py +0 -7
  398. diffusers/pipelines/stable_diffusion/clip_image_project_model.py +1 -1
  399. diffusers/pipelines/stable_diffusion/convert_from_ckpt.py +11 -4
  400. diffusers/pipelines/stable_diffusion/pipeline_flax_stable_diffusion.py +1 -1
  401. diffusers/pipelines/stable_diffusion/pipeline_flax_stable_diffusion_img2img.py +1 -1
  402. diffusers/pipelines/stable_diffusion/pipeline_flax_stable_diffusion_inpaint.py +1 -1
  403. diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion.py +12 -11
  404. diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion_img2img.py +10 -10
  405. diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion_inpaint.py +11 -11
  406. diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion_upscale.py +10 -10
  407. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion.py +10 -9
  408. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_depth2img.py +5 -5
  409. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_image_variation.py +5 -5
  410. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_img2img.py +5 -5
  411. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_inpaint.py +5 -5
  412. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_instruct_pix2pix.py +5 -5
  413. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_latent_upscale.py +4 -4
  414. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_upscale.py +5 -5
  415. diffusers/pipelines/stable_diffusion/pipeline_stable_unclip.py +7 -7
  416. diffusers/pipelines/stable_diffusion/pipeline_stable_unclip_img2img.py +5 -5
  417. diffusers/pipelines/stable_diffusion/safety_checker.py +1 -1
  418. diffusers/pipelines/stable_diffusion/safety_checker_flax.py +1 -1
  419. diffusers/pipelines/stable_diffusion/stable_unclip_image_normalizer.py +1 -1
  420. diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3.py +13 -12
  421. diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3_img2img.py +7 -7
  422. diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3_inpaint.py +7 -7
  423. diffusers/pipelines/stable_diffusion_attend_and_excite/pipeline_stable_diffusion_attend_and_excite.py +12 -8
  424. diffusers/pipelines/stable_diffusion_diffedit/pipeline_stable_diffusion_diffedit.py +15 -9
  425. diffusers/pipelines/stable_diffusion_gligen/pipeline_stable_diffusion_gligen.py +11 -9
  426. diffusers/pipelines/stable_diffusion_gligen/pipeline_stable_diffusion_gligen_text_image.py +11 -9
  427. diffusers/pipelines/stable_diffusion_k_diffusion/pipeline_stable_diffusion_k_diffusion.py +18 -12
  428. diffusers/pipelines/stable_diffusion_k_diffusion/pipeline_stable_diffusion_xl_k_diffusion.py +11 -8
  429. diffusers/pipelines/stable_diffusion_ldm3d/pipeline_stable_diffusion_ldm3d.py +11 -8
  430. diffusers/pipelines/stable_diffusion_panorama/pipeline_stable_diffusion_panorama.py +15 -12
  431. diffusers/pipelines/stable_diffusion_safe/pipeline_stable_diffusion_safe.py +8 -6
  432. diffusers/pipelines/stable_diffusion_safe/safety_checker.py +1 -1
  433. diffusers/pipelines/stable_diffusion_sag/pipeline_stable_diffusion_sag.py +15 -11
  434. diffusers/pipelines/stable_diffusion_xl/pipeline_flax_stable_diffusion_xl.py +1 -1
  435. diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl.py +16 -15
  436. diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl_img2img.py +18 -17
  437. diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl_inpaint.py +12 -12
  438. diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl_instruct_pix2pix.py +16 -15
  439. diffusers/pipelines/stable_video_diffusion/pipeline_stable_video_diffusion.py +3 -3
  440. diffusers/pipelines/t2i_adapter/pipeline_stable_diffusion_adapter.py +12 -12
  441. diffusers/pipelines/t2i_adapter/pipeline_stable_diffusion_xl_adapter.py +18 -17
  442. diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_synth.py +12 -7
  443. diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_synth_img2img.py +12 -7
  444. diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_zero.py +15 -13
  445. diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_zero_sdxl.py +24 -21
  446. diffusers/pipelines/unclip/pipeline_unclip.py +4 -3
  447. diffusers/pipelines/unclip/pipeline_unclip_image_variation.py +4 -3
  448. diffusers/pipelines/unclip/text_proj.py +2 -2
  449. diffusers/pipelines/unidiffuser/modeling_text_decoder.py +2 -2
  450. diffusers/pipelines/unidiffuser/modeling_uvit.py +1 -1
  451. diffusers/pipelines/unidiffuser/pipeline_unidiffuser.py +8 -7
  452. diffusers/pipelines/visualcloze/__init__.py +52 -0
  453. diffusers/pipelines/visualcloze/pipeline_visualcloze_combined.py +444 -0
  454. diffusers/pipelines/visualcloze/pipeline_visualcloze_generation.py +952 -0
  455. diffusers/pipelines/visualcloze/visualcloze_utils.py +251 -0
  456. diffusers/pipelines/wan/__init__.py +2 -0
  457. diffusers/pipelines/wan/pipeline_wan.py +91 -30
  458. diffusers/pipelines/wan/pipeline_wan_i2v.py +145 -45
  459. diffusers/pipelines/wan/pipeline_wan_vace.py +975 -0
  460. diffusers/pipelines/wan/pipeline_wan_video2video.py +14 -16
  461. diffusers/pipelines/wuerstchen/modeling_paella_vq_model.py +1 -1
  462. diffusers/pipelines/wuerstchen/modeling_wuerstchen_diffnext.py +1 -1
  463. diffusers/pipelines/wuerstchen/modeling_wuerstchen_prior.py +1 -1
  464. diffusers/pipelines/wuerstchen/pipeline_wuerstchen.py +8 -8
  465. diffusers/pipelines/wuerstchen/pipeline_wuerstchen_combined.py +16 -15
  466. diffusers/pipelines/wuerstchen/pipeline_wuerstchen_prior.py +6 -6
  467. diffusers/quantizers/__init__.py +3 -1
  468. diffusers/quantizers/base.py +17 -1
  469. diffusers/quantizers/bitsandbytes/bnb_quantizer.py +4 -0
  470. diffusers/quantizers/bitsandbytes/utils.py +10 -7
  471. diffusers/quantizers/gguf/gguf_quantizer.py +13 -4
  472. diffusers/quantizers/gguf/utils.py +108 -16
  473. diffusers/quantizers/pipe_quant_config.py +202 -0
  474. diffusers/quantizers/quantization_config.py +18 -16
  475. diffusers/quantizers/quanto/quanto_quantizer.py +4 -0
  476. diffusers/quantizers/torchao/torchao_quantizer.py +31 -1
  477. diffusers/schedulers/__init__.py +3 -1
  478. diffusers/schedulers/deprecated/scheduling_karras_ve.py +4 -3
  479. diffusers/schedulers/deprecated/scheduling_sde_vp.py +1 -1
  480. diffusers/schedulers/scheduling_consistency_models.py +1 -1
  481. diffusers/schedulers/scheduling_cosine_dpmsolver_multistep.py +10 -5
  482. diffusers/schedulers/scheduling_ddim.py +8 -8
  483. diffusers/schedulers/scheduling_ddim_cogvideox.py +5 -5
  484. diffusers/schedulers/scheduling_ddim_flax.py +6 -6
  485. diffusers/schedulers/scheduling_ddim_inverse.py +6 -6
  486. diffusers/schedulers/scheduling_ddim_parallel.py +22 -22
  487. diffusers/schedulers/scheduling_ddpm.py +9 -9
  488. diffusers/schedulers/scheduling_ddpm_flax.py +7 -7
  489. diffusers/schedulers/scheduling_ddpm_parallel.py +18 -18
  490. diffusers/schedulers/scheduling_ddpm_wuerstchen.py +2 -2
  491. diffusers/schedulers/scheduling_deis_multistep.py +16 -9
  492. diffusers/schedulers/scheduling_dpm_cogvideox.py +5 -5
  493. diffusers/schedulers/scheduling_dpmsolver_multistep.py +18 -12
  494. diffusers/schedulers/scheduling_dpmsolver_multistep_flax.py +22 -20
  495. diffusers/schedulers/scheduling_dpmsolver_multistep_inverse.py +11 -11
  496. diffusers/schedulers/scheduling_dpmsolver_sde.py +2 -2
  497. diffusers/schedulers/scheduling_dpmsolver_singlestep.py +19 -13
  498. diffusers/schedulers/scheduling_edm_dpmsolver_multistep.py +13 -8
  499. diffusers/schedulers/scheduling_edm_euler.py +20 -11
  500. diffusers/schedulers/scheduling_euler_ancestral_discrete.py +3 -3
  501. diffusers/schedulers/scheduling_euler_discrete.py +3 -3
  502. diffusers/schedulers/scheduling_euler_discrete_flax.py +3 -3
  503. diffusers/schedulers/scheduling_flow_match_euler_discrete.py +20 -5
  504. diffusers/schedulers/scheduling_flow_match_heun_discrete.py +1 -1
  505. diffusers/schedulers/scheduling_flow_match_lcm.py +561 -0
  506. diffusers/schedulers/scheduling_heun_discrete.py +2 -2
  507. diffusers/schedulers/scheduling_ipndm.py +2 -2
  508. diffusers/schedulers/scheduling_k_dpm_2_ancestral_discrete.py +2 -2
  509. diffusers/schedulers/scheduling_k_dpm_2_discrete.py +2 -2
  510. diffusers/schedulers/scheduling_karras_ve_flax.py +5 -5
  511. diffusers/schedulers/scheduling_lcm.py +3 -3
  512. diffusers/schedulers/scheduling_lms_discrete.py +2 -2
  513. diffusers/schedulers/scheduling_lms_discrete_flax.py +1 -1
  514. diffusers/schedulers/scheduling_pndm.py +4 -4
  515. diffusers/schedulers/scheduling_pndm_flax.py +4 -4
  516. diffusers/schedulers/scheduling_repaint.py +9 -9
  517. diffusers/schedulers/scheduling_sasolver.py +15 -15
  518. diffusers/schedulers/scheduling_scm.py +1 -2
  519. diffusers/schedulers/scheduling_sde_ve.py +1 -1
  520. diffusers/schedulers/scheduling_sde_ve_flax.py +2 -2
  521. diffusers/schedulers/scheduling_tcd.py +3 -3
  522. diffusers/schedulers/scheduling_unclip.py +5 -5
  523. diffusers/schedulers/scheduling_unipc_multistep.py +21 -12
  524. diffusers/schedulers/scheduling_utils.py +3 -3
  525. diffusers/schedulers/scheduling_utils_flax.py +2 -2
  526. diffusers/schedulers/scheduling_vq_diffusion.py +1 -1
  527. diffusers/training_utils.py +91 -5
  528. diffusers/utils/__init__.py +15 -0
  529. diffusers/utils/accelerate_utils.py +1 -1
  530. diffusers/utils/constants.py +4 -0
  531. diffusers/utils/doc_utils.py +1 -1
  532. diffusers/utils/dummy_pt_objects.py +432 -0
  533. diffusers/utils/dummy_torch_and_transformers_objects.py +480 -0
  534. diffusers/utils/dynamic_modules_utils.py +85 -8
  535. diffusers/utils/export_utils.py +1 -1
  536. diffusers/utils/hub_utils.py +33 -17
  537. diffusers/utils/import_utils.py +151 -18
  538. diffusers/utils/logging.py +1 -1
  539. diffusers/utils/outputs.py +2 -1
  540. diffusers/utils/peft_utils.py +96 -10
  541. diffusers/utils/state_dict_utils.py +20 -3
  542. diffusers/utils/testing_utils.py +195 -17
  543. diffusers/utils/torch_utils.py +43 -5
  544. diffusers/video_processor.py +2 -2
  545. {diffusers-0.33.1.dist-info → diffusers-0.35.0.dist-info}/METADATA +72 -57
  546. diffusers-0.35.0.dist-info/RECORD +703 -0
  547. {diffusers-0.33.1.dist-info → diffusers-0.35.0.dist-info}/WHEEL +1 -1
  548. diffusers-0.33.1.dist-info/RECORD +0 -608
  549. {diffusers-0.33.1.dist-info → diffusers-0.35.0.dist-info}/LICENSE +0 -0
  550. {diffusers-0.33.1.dist-info → diffusers-0.35.0.dist-info}/entry_points.txt +0 -0
  551. {diffusers-0.33.1.dist-info → diffusers-0.35.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,703 @@
1
+ diffusers/__init__.py,sha256=roQeK8hnoA8Q0qJIV1Qrcfpcu-29_xDziRskP9zZS6E,50085
2
+ diffusers/callbacks.py,sha256=9NgQ7QkUncjVR8pbCHEd-PYvf5xKD-QRDmOoAjyzoXY,10282
3
+ diffusers/configuration_utils.py,sha256=sf1KSxuGJSPo9beQvEXt8PolG0OVXdYF9WDRYssDGug,34942
4
+ diffusers/dependency_versions_check.py,sha256=PcT_deWuvIKrNkjkCnQKi0ZTWCl77tHC02lhttbqQHM,1271
5
+ diffusers/dependency_versions_table.py,sha256=bncDZx3ZD6Zk863bEQjrq9DuL9KCDEYg93F16orogl0,1766
6
+ diffusers/image_processor.py,sha256=6qop7filTHdq3L-ZGVWmJMn0-0s4Bg7W-AaAFBNdO0Q,52868
7
+ diffusers/optimization.py,sha256=CAFI9pabb3C2KD3y_LCr3o_dBISPU_dfDKODtzbkdvs,14741
8
+ diffusers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ diffusers/training_utils.py,sha256=xrMx2prpYWAt5ZyAYxss28t_xVLO-9uin0o02_eeL50,29621
10
+ diffusers/video_processor.py,sha256=jKcIhqCs4EUcEbKEF23u0TJs1nfZrPwdXKr-YzrZ3O0,5398
11
+ diffusers/commands/__init__.py,sha256=KQXlWjcjH6qmwD5B6be8kpniSOPbyWZPTghdXrNquXU,920
12
+ diffusers/commands/custom_blocks.py,sha256=zSoGD6xNWEaJdroYHIWHyetEErTOBZILxUOWTe-wDHs,5242
13
+ diffusers/commands/diffusers_cli.py,sha256=NPeI0w_qB50bKhsITxGENNdQA7bXp5mck7IXMSagxXw,1425
14
+ diffusers/commands/env.py,sha256=IZ2e2id8ZjNQ-BNEG3qt58TyEsM6Qs337kL5KdZmqZ0,6224
15
+ diffusers/commands/fp16_safetensors.py,sha256=ZSecWvNNT4VLVnKKBNfGgH58HEqf14hVGZbM589kwrs,5415
16
+ diffusers/experimental/__init__.py,sha256=0C9ExG0XYiGZuzFJkZuJ53K6Ix5ylF2kWe4PGASchtY,38
17
+ diffusers/experimental/rl/__init__.py,sha256=Gcoznw9rYjfMvswH0seXekKYDAAN1YXXxZ-RWMdzvrE,57
18
+ diffusers/experimental/rl/value_guided_sampling.py,sha256=a1F7YC--u1OgoGC8WGgi2pDUhYBI6XYnF2-RUzPD3dI,6033
19
+ diffusers/guiders/__init__.py,sha256=eJD483D9pOC96HoGCCp1RXo-lW-lb3aTY893Z2UIPXM,1647
20
+ diffusers/guiders/adaptive_projected_guidance.py,sha256=xKUS4-B8mI7vFRckHN8YKoVQZa0n4l2ymu1p4nDIxMA,7466
21
+ diffusers/guiders/auto_guidance.py,sha256=XMFZMbou9YmbixvY9xgS7PYqSdBOUUk3IUj4EihKfEs,8821
22
+ diffusers/guiders/classifier_free_guidance.py,sha256=Jz2_G66U3CssWYhIdGbcCH6YsfrzMG1xlBhp1z7-1Eo,6401
23
+ diffusers/guiders/classifier_free_zero_star_guidance.py,sha256=2WjWnYkt0NPTond63UOPs4ItDjpFi4h5f9cxcdZ7Kes,6458
24
+ diffusers/guiders/frequency_decoupled_guidance.py,sha256=C5T2F3IHsyQHJ-Kcu3E0dD3gE5IbGSZAxW7PYJepFIM,16875
25
+ diffusers/guiders/guider_utils.py,sha256=f3pT6SzfTJapiAyPV75Am8ZZSQFTDD8wT6w1JpFztIM,14898
26
+ diffusers/guiders/perturbed_attention_guidance.py,sha256=tfHKwmxAdaYHDHJnzUXeHM-CbBzuULgMod1krt4GHes,13303
27
+ diffusers/guiders/skip_layer_guidance.py,sha256=PuiURv_J_xkqJAKL_wa5fqA3607j2qr2eZr3WobSkbo,12855
28
+ diffusers/guiders/smoothed_energy_guidance.py,sha256=paMqC7OaiWrpeU0i8BgAr_d0WoSm1NO-Ustf7M8W5Vg,12391
29
+ diffusers/guiders/tangential_classifier_free_guidance.py,sha256=0sDrh4D928pgxB5zkQW57HTXO-hxj96wNk68NQskTgE,5665
30
+ diffusers/hooks/__init__.py,sha256=641xb0eYsaV_telHK4UlvCjQX-hJQxLraKckMwuBuuE,1267
31
+ diffusers/hooks/_common.py,sha256=5RaEdKFVQsVUzYvC0IDcgzSYrhgRPSBmVS3lGofpXEk,2118
32
+ diffusers/hooks/_helpers.py,sha256=e_hA6tGdSuqIbQTeeXvh0OqI4NBDPykUEfrAxDcVJas,10640
33
+ diffusers/hooks/faster_cache.py,sha256=grbt8SqMn5gW6cd4t2lgs7ZkKeAzZEAH92d7GPAx8rw,35059
34
+ diffusers/hooks/first_block_cache.py,sha256=a1gPnVo1CwsORPuxNXoYFUgLvhU2vUusfgyL_LWH2M4,11314
35
+ diffusers/hooks/group_offloading.py,sha256=SGi5bhhyvTe2rYhTYhjxEgK0K3TbjqZyYE5VdJwRq2U,42617
36
+ diffusers/hooks/hooks.py,sha256=g5HMY3CKe0VA-CLzRc50TyxVL6PSiXFUGMXuX8p7PgI,11120
37
+ diffusers/hooks/layer_skip.py,sha256=5Rt4m55qOdrW7FLaoz6egaivf6vtU6jD1ztP1wiHQHw,11938
38
+ diffusers/hooks/layerwise_casting.py,sha256=-qprS9wLEEzlIFqdsRzbvud7lLMEmP0h8SDJLmCGnN0,10459
39
+ diffusers/hooks/pyramid_attention_broadcast.py,sha256=v5ZnvHF0vWh1xKks25nsb01y2SvbSI-xggurmbMIVS8,15586
40
+ diffusers/hooks/smoothed_energy_guidance_utils.py,sha256=8kwsooCrOSnMhYbWGkOwDthc6wEugNuiYOSW4CK_tEk,7428
41
+ diffusers/hooks/utils.py,sha256=tAfigFPYu7mo-poB3xO8-BhzUeSt8UvF_2tywegCwAA,1848
42
+ diffusers/loaders/__init__.py,sha256=gN8qMqOocLyE4-IxHvA3nAdjz6raYHJ8_wu-uaAk4Cg,5522
43
+ diffusers/loaders/ip_adapter.py,sha256=K4w-Nizr6YNOq4ZOyH3oTo3CdUIj432cTF7X_nWVgpI,57233
44
+ diffusers/loaders/lora_base.py,sha256=i0w4XeOOHUsz09xvgTosXTOWGkUQDnsqoucRUvVoGXM,45056
45
+ diffusers/loaders/lora_conversion_utils.py,sha256=Kul7roxt44iltmjPBVCrmJfNjwvH6rgOGSbiMR0dzkw,110182
46
+ diffusers/loaders/lora_pipeline.py,sha256=J8QBsHKkuWVMuzTptfnADtkmOgnSTjudxMs_ImJK5uI,326664
47
+ diffusers/loaders/peft.py,sha256=J7IG4xkWYsJMp1i5MTENmuS8XcqGje4cjFTMFhsjiuA,38939
48
+ diffusers/loaders/single_file.py,sha256=NyDO7tx2ASAENP5rXsWKxpOD320L24wl4QqpPixYYLE,25003
49
+ diffusers/loaders/single_file_model.py,sha256=Id2RtAyYR4YHoVqYUtqcGNbZAVRAIMp15spCYWgnGGk,21816
50
+ diffusers/loaders/single_file_utils.py,sha256=cfK8g_JLQ0FjmtxxJbIcdrHtbnpOnpPqvnrdG75Aawo,163852
51
+ diffusers/loaders/textual_inversion.py,sha256=Yh4Mw-3EAUWaQpDXptIMuNbyAYhNRir-irqoHSPvOx8,26925
52
+ diffusers/loaders/transformer_flux.py,sha256=XakxzS3znQhzp-l-PjOtmQ-DCKw6cElMXvMRdedREAc,8021
53
+ diffusers/loaders/transformer_sd3.py,sha256=sUqwRuIPyvBvOYfe6DqxoB8B43dlJB8_099bRUt2Yys,8636
54
+ diffusers/loaders/unet.py,sha256=V77VNn2W46FDcc30-Dbf1_p6_thy5MWLa6x18uUZEUY,45810
55
+ diffusers/loaders/unet_loader_utils.py,sha256=uXO9JUWxhpQq_JzFEi2QohxySdJ3e57AqBYqkzkRIk4,6271
56
+ diffusers/loaders/utils.py,sha256=tknQHwXnDlc7piArCSDZjFFdgJI3DY6qfffsZlIxLnY,2423
57
+ diffusers/models/__init__.py,sha256=EYlrNtK3-O_PuQqkxi1pJ2JmOPZ0eIpX6Q2HKBl_z-w,11175
58
+ diffusers/models/activations.py,sha256=qxdn6OROfUvxyxgpm6M2VDKeJxH6mDsUI_xP4S3iw6s,6511
59
+ diffusers/models/adapter.py,sha256=NDnqBqD53fg2fWWHt-LUHDyhuH6J-4R7PoStr2ggp-4,24507
60
+ diffusers/models/attention.py,sha256=wxrklJ6tDweVrTFEJ2oCbcUIfdRha4irPQ602wNTEMo,73123
61
+ diffusers/models/attention_dispatch.py,sha256=e7Bm5EWvvdPw0CT-NDvndHD1QahIOmGB9u2-g-rrahM,42265
62
+ diffusers/models/attention_flax.py,sha256=NJTCmsALDnRScOy2EG7r6fZGXaNrJGBVTHQxAluWZEs,20392
63
+ diffusers/models/attention_processor.py,sha256=1WrbKRIhcciXVorgI126bFQJuaQXbeYZbVY8b1bJ35A,239691
64
+ diffusers/models/auto_model.py,sha256=6H0dnsr9atn-kgsEjnjLVpS6f3kzFDXCLhKUusxXdQE,11147
65
+ diffusers/models/cache_utils.py,sha256=h4QDKKM_rQoSmO-Hu4nmpijj1WmVfqiOtcMYv3zj8KM,5196
66
+ diffusers/models/controlnet.py,sha256=RG8RSUtkCk77Dxw6e1nc2o6vdikTVKtskxgALI7ijsg,5774
67
+ diffusers/models/controlnet_flux.py,sha256=bVej9TQJhszOMJOtHqzh2kwK1PLseuwiGSYdbT6b7f4,3442
68
+ diffusers/models/controlnet_sd3.py,sha256=5cPugxXJrWroX4bjIG_DQGMlOWiFlwl2sMZz6pTSLTc,3377
69
+ diffusers/models/controlnet_sparsectrl.py,sha256=ewfJCGXU-bvthUH2OP93RtMI3zZFNfnioYs8YSa-tmo,5904
70
+ diffusers/models/downsampling.py,sha256=ss0au04TEj_eMz1vCgi20a1ZGoUEOLgC1zxeQGTN85s,15829
71
+ diffusers/models/embeddings.py,sha256=2ugs0Nw39LIvoouGfwqQLj54wdBWUMdR29GS9cg8rME,103702
72
+ diffusers/models/embeddings_flax.py,sha256=FMuPD4wNU0wUXOaih81VcFjkKgOg4lyWi7hYIlmnYT4,4361
73
+ diffusers/models/lora.py,sha256=kSZzH-taCGJCSH9PHYEcS1M1LXUGUpIti-taQxRRnS4,18851
74
+ diffusers/models/model_loading_utils.py,sha256=Io5Pspe89GsTpgTRHRrIJVlxrtS83b6RKB-9WT3mXVk,30305
75
+ diffusers/models/modeling_flax_pytorch_utils.py,sha256=f-j9Y-AhcrRp9UvLldjZOHPYBluMC5BXwxmAi6gS1rA,5332
76
+ diffusers/models/modeling_flax_utils.py,sha256=AK52uROOQKfTXRsEJx41kFRm6GzQGFFtwlKUYgDYQHg,26923
77
+ diffusers/models/modeling_outputs.py,sha256=XH3sJO34MRW6UuWqqKo05mVqxGSBFRazpap_-YLwO2I,1042
78
+ diffusers/models/modeling_pytorch_flax_utils.py,sha256=Hz5IoBV0vygRekVw8OZc9Jji22gyuEZ84uAWzXpYLvs,6973
79
+ diffusers/models/modeling_utils.py,sha256=IlQSZYWyxrVpYqJQstp9suVrbRWNjoe0s23QskQbM1U,89143
80
+ diffusers/models/normalization.py,sha256=Hke3BXA1GYAVBKrkJi7X8A0DLT6_NqP2dv2Q7lZFTRU,24616
81
+ diffusers/models/resnet.py,sha256=DIFQHFSh8F0NcrAGjvxaca1fK8ZoArlpTtkTTLm50VU,32254
82
+ diffusers/models/resnet_flax.py,sha256=aXKT-L0yMwFZz-xhSsbLsB5n7M7bNOE2se6RJhPI9Tk,4021
83
+ diffusers/models/upsampling.py,sha256=7oUwSN_b8Wsl3nTuxWgZyXiIid5FOBnTpdeGwS64Xfk,19573
84
+ diffusers/models/vae_flax.py,sha256=862gk7zaRCWBHNY1ZDIRJl7rnoHLWJBJyt6wN4anZ4w,31950
85
+ diffusers/models/vq_model.py,sha256=J6dVRtVAQNUtHbl5LY5KjHYYsab55AbuoATHQttDGX4,1524
86
+ diffusers/models/autoencoders/__init__.py,sha256=XrImN0hDzMiQm1ZLLP-btcgfXCPsBtGhBixp-pKPjv4,915
87
+ diffusers/models/autoencoders/autoencoder_asym_kl.py,sha256=_67adzZxCMsV8N7s0JzOCSOz4_Kewb49c0CuA2KZS-I,7788
88
+ diffusers/models/autoencoders/autoencoder_dc.py,sha256=Eb1ZB9ZwxEz9pA8gCpxV3fMri1XOwD-vLMUsPFL3Kv8,31200
89
+ diffusers/models/autoencoders/autoencoder_kl.py,sha256=HqX20_Jze8ZUKp1e376MfLXgboboWfRXQtm6SvS9Sks,25078
90
+ diffusers/models/autoencoders/autoencoder_kl_allegro.py,sha256=N1tLNJjqtCOGPQREU647RA5LdUsl4fgK2Uiii-mYx2c,45152
91
+ diffusers/models/autoencoders/autoencoder_kl_cogvideox.py,sha256=YDCPc0NugDpHkw4JKBkrNHd0sOgxBbM0QXgovnAToTU,60406
92
+ diffusers/models/autoencoders/autoencoder_kl_cosmos.py,sha256=3DgbRsgpkFXR5NkHDgbE8qje6n5mBQW7WdNMTr5nqMo,53736
93
+ diffusers/models/autoencoders/autoencoder_kl_hunyuan_video.py,sha256=T4ijgoUTrJou5DMnUBkaCnPA7pMZuxutTSHxE31Y3zk,45481
94
+ diffusers/models/autoencoders/autoencoder_kl_ltx.py,sha256=GQEIy5muXUndwYRH4jlCFUQanbgiUCHLNaEnVcL286g,64433
95
+ diffusers/models/autoencoders/autoencoder_kl_magvit.py,sha256=6jrWs8thq0DERB2zOsGBIQHPtFFyjYuuekFYM-fhE9I,45098
96
+ diffusers/models/autoencoders/autoencoder_kl_mochi.py,sha256=EJBSXMnIE4clpodfDKy4tffZbQkC15iYGmlZRowDQHA,46811
97
+ diffusers/models/autoencoders/autoencoder_kl_qwenimage.py,sha256=HVVhOCD61jEmBufZL9jS5cTHqJPAlnbKYUymrp6joaE,42061
98
+ diffusers/models/autoencoders/autoencoder_kl_temporal_decoder.py,sha256=qJ52TwMtQQz7QtczEsFLKXVceS7RLDRSvMMZI-RsjIY,14778
99
+ diffusers/models/autoencoders/autoencoder_kl_wan.py,sha256=K0q55xoiHsxTjRlrjdO_MSlyzCr_7lzDrhwJsk_-xXE,52618
100
+ diffusers/models/autoencoders/autoencoder_oobleck.py,sha256=HV30_00e21-mts-JdT9K9Q-s8Uerk_cMD9_OX9uaNtU,17085
101
+ diffusers/models/autoencoders/autoencoder_tiny.py,sha256=6kLUGAR0fDx7fwy5BiRLaUzkqJg9VQFKUJyisloxF4M,15853
102
+ diffusers/models/autoencoders/consistency_decoder_vae.py,sha256=3uvrzIR2vEgj0etcRvUiBw8YmCQ5RfQ6RdhX4LcCoeM,19761
103
+ diffusers/models/autoencoders/vae.py,sha256=XXm10FfQ9wLhozWomRO2ldfcb6qR85ePF-ShUxYq-6Y,32733
104
+ diffusers/models/autoencoders/vq_model.py,sha256=wCvrranGbiCR8s4Qhq5qNSy_1BP9PGWvWyxvWJEHA8A,7912
105
+ diffusers/models/controlnets/__init__.py,sha256=oKACrY23NZqmM0Hbl-S_nUuDFyQ4NesJMoKBYPzeK0Y,1058
106
+ diffusers/models/controlnets/controlnet.py,sha256=dzIASI0h_bNeSjRi3BQTW2K4Jbo8-eQfJ7F5PeOzpsA,43149
107
+ diffusers/models/controlnets/controlnet_flax.py,sha256=DekqQPnow0gSWDCUlIwcP6ezT16ppiYUGFVn1Ixi0zM,16715
108
+ diffusers/models/controlnets/controlnet_flux.py,sha256=FMqOWrl5HBeI597mgxgJlxmeKmdwDAi3OcQrrFsJXd8,22924
109
+ diffusers/models/controlnets/controlnet_hunyuan.py,sha256=UCyQL-GtHIQEeEu6bP04eIm-DDhsqG92I3hAJJE_m2g,16928
110
+ diffusers/models/controlnets/controlnet_sana.py,sha256=2rYVE1EJAE-BavlAWtkkX4zcVk3nrP_BJkG8ewfOYXc,12519
111
+ diffusers/models/controlnets/controlnet_sd3.py,sha256=E-r-_y2M3sN3sT4rQBm3CYKcTNrYTEvnIVUDqpjzj7c,23227
112
+ diffusers/models/controlnets/controlnet_sparsectrl.py,sha256=ui450jzQEfI-OUU90nrmb1Oud4lcTmw7aiVMLtF3uTE,38357
113
+ diffusers/models/controlnets/controlnet_union.py,sha256=R28jfGxWR6dvMP1jEnIvR-rxQMLYuEgl2douGk2JUxU,41724
114
+ diffusers/models/controlnets/controlnet_xs.py,sha256=aF13vgEAeCf1UygSzuiktKzA_OrGXPiycRg3YzHKOHg,85416
115
+ diffusers/models/controlnets/multicontrolnet.py,sha256=VoccQ64iwREXC04DseYLZjub2bdph9y8tBdga4br1XM,9332
116
+ diffusers/models/controlnets/multicontrolnet_union.py,sha256=o_5BMCsvXUehw7Jni0Fn6e_qNm_66XnAyN4Ull4txrE,10164
117
+ diffusers/models/transformers/__init__.py,sha256=UR6wS27CwqCs4m8M8qrSlhhuFjICMfumR1-RDto_0Os,2214
118
+ diffusers/models/transformers/auraflow_transformer_2d.py,sha256=Lnk2i4c0Ay3SZZXiRHIsTvL-IuTyxIhZvyYMK2X0unU,23439
119
+ diffusers/models/transformers/cogvideox_transformer_3d.py,sha256=gCZBGA7R2kFhf0m-nLxg3eISapfABKxVmzWN09J5rCA,22827
120
+ diffusers/models/transformers/consisid_transformer_3d.py,sha256=ZT4plc4SnCJZczuKVhFTjws_3gPU6kCxm0-lIwAQA14,36023
121
+ diffusers/models/transformers/dit_transformer_2d.py,sha256=4c-KTXuQagfdIr0m6VoysBYaNbAOTGlEt_AAoAfhoI0,10544
122
+ diffusers/models/transformers/dual_transformer_2d.py,sha256=4iU7Ljh9_HQa9uiNwwW2xa7FqZOiEdw2TrTBuWdmR4M,7711
123
+ diffusers/models/transformers/hunyuan_transformer_2d.py,sha256=OKYOjAse6jQn0eeimtPgQ5vhnV7720rznzeZWdVvQoA,24311
124
+ diffusers/models/transformers/latte_transformer_3d.py,sha256=30LmMFjvNQyUKB3DHoVQfFph9wQP5i6BWIcS1zWdVhg,15686
125
+ diffusers/models/transformers/lumina_nextdit2d.py,sha256=THVMjGaMNqvZDy9RXusVMH4lTR-e_q3ns6Vmjq5JZf4,14486
126
+ diffusers/models/transformers/pixart_transformer_2d.py,sha256=K-qrAK5OqbgkZzoPqFZz8KiqKTMSyHCjoFOiCbfJ4hU,20940
127
+ diffusers/models/transformers/prior_transformer.py,sha256=PHWVtGDOIo29k7xyb8BukUFbs-yT9s6Vr4Y8hcgYjo0,17467
128
+ diffusers/models/transformers/sana_transformer.py,sha256=pqXzq-npEsee5ateLL4PS2oHsx8Rz_x36VcSyKWNcYg,25256
129
+ diffusers/models/transformers/stable_audio_transformer.py,sha256=ikFDgj4O5rEk2Nxp3sL9RH76MLM5vzQnfMrR0Donlro,18653
130
+ diffusers/models/transformers/t5_film_transformer.py,sha256=YicaHEHbkOkh7HLjzj8jzIjLA9MobcolI_3ZyCKETCE,16040
131
+ diffusers/models/transformers/transformer_2d.py,sha256=9yiEGNq4poMiHaWIh3OfsfB2dsRKlcIqgTNDW_mV3vY,28305
132
+ diffusers/models/transformers/transformer_allegro.py,sha256=b8fdklklJlmepbUgEwpn83L8AvmhycZao17_-sK2Ehg,17186
133
+ diffusers/models/transformers/transformer_chroma.py,sha256=WeHJGwxRS5Ups2ZiN7FDwfSJ7LWj86Wws0nTNl9GAg4,27051
134
+ diffusers/models/transformers/transformer_cogview3plus.py,sha256=shbvxhjREErZRCl2T16JZC2gnm39PIG6zgyAgMTDNLo,15811
135
+ diffusers/models/transformers/transformer_cogview4.py,sha256=8kx6SBHAEws9wS640NAD1wzUndJG9UDrS57-YSWVFcc,34934
136
+ diffusers/models/transformers/transformer_cosmos.py,sha256=H3Rcw5je76ASarLHSxZ3iD4hLXLT675V1Aw42PFXW4A,24561
137
+ diffusers/models/transformers/transformer_easyanimate.py,sha256=Z5innEWRbaOVoC16o-h-uobbYI6tPqzFG-S2H_Dohgo,22001
138
+ diffusers/models/transformers/transformer_flux.py,sha256=TLEdwpt-9u-sDUpuo14T91CwzMsPIBdFrOOURuwo4z4,33319
139
+ diffusers/models/transformers/transformer_hidream_image.py,sha256=ciuyPRprws2K77apFzuLHmDZADOJ3AzAwsVze3FmR_E,39322
140
+ diffusers/models/transformers/transformer_hunyuan_video.py,sha256=DMVzgTdQv0jrSiJA_qnt4eOcbRfDC_K1W4O9vvrWphw,47084
141
+ diffusers/models/transformers/transformer_hunyuan_video_framepack.py,sha256=p9RgBqN5SWWqQU_wvEmaPZ2W5sCsYZoiGblqFKg6GpM,18698
142
+ diffusers/models/transformers/transformer_ltx.py,sha256=7znlVN1UPdXBR91OXN_zyiwHt895XF71gCocV-BWpVc,22162
143
+ diffusers/models/transformers/transformer_lumina2.py,sha256=ACu9X7vatGMoiKSZKkEOcbEQjIvZwmqZ6nmHaSkD9Wo,22075
144
+ diffusers/models/transformers/transformer_mochi.py,sha256=FbNpuQR3MrH7I7CU8tJ_8Nf00Q2VB5hNUpqwuYXS50Y,18521
145
+ diffusers/models/transformers/transformer_omnigen.py,sha256=nxmuNqRXRG51Mw2G8BNu-DZrRKWMDc3G99DFgPS9yZA,20029
146
+ diffusers/models/transformers/transformer_qwenimage.py,sha256=Jzhx2Pf8odX8bRQLhPN0tn6STAfc3OpZUfVOxSMFEoY,27644
147
+ diffusers/models/transformers/transformer_sd3.py,sha256=2Aw1Di240iPngdlg_TZewlgi4WT2fGAOpB5XFa3RmO0,19232
148
+ diffusers/models/transformers/transformer_skyreels_v2.py,sha256=PpHVausTXRFhm1gQJy_AFdzjtBb3NNThd2oqoPp4pAw,25733
149
+ diffusers/models/transformers/transformer_temporal.py,sha256=GMn5WUbWWX7ZvyqVhO12g6bID7dnrMndYrDN-UZEI0Q,16812
150
+ diffusers/models/transformers/transformer_wan.py,sha256=Y3e_j2CUZ0fce9yrkL7rYmDdAazigulkqeYEZEY1Mec,28852
151
+ diffusers/models/transformers/transformer_wan_vace.py,sha256=KISLOLoYGRlPusyLOJEzjYdckFxFm_adv7b7Jg6jqYM,16477
152
+ diffusers/models/unets/__init__.py,sha256=srYFA7zEcDY7LxyUB2jz3TdRgsLz8elrWCpT6Y4YXuU,695
153
+ diffusers/models/unets/unet_1d.py,sha256=tmSBsH3cPzNj9xCQt1zrV2lApufLEB2xiFTcXulE1Wo,10853
154
+ diffusers/models/unets/unet_1d_blocks.py,sha256=LIuM8MwkcJ0n8wYwS6FBGYSMfl9wYv0-TbQ6FHO6A7k,26829
155
+ diffusers/models/unets/unet_2d.py,sha256=ue2Xbgmra55kSf6D7sq4b_ZCDr4ZmarrZiGWT4qNNXk,16905
156
+ diffusers/models/unets/unet_2d_blocks.py,sha256=r7e-UDzbBRdbx4Iusu-fNGmSm70Vf2YkaDRihltn12w,141758
157
+ diffusers/models/unets/unet_2d_blocks_flax.py,sha256=RWQ-c2gOHFD99nbtWN2TTGvO2khRWNJ6BoQYDg-hqjs,15624
158
+ diffusers/models/unets/unet_2d_condition.py,sha256=oe5lCBbRYXw2elVTd-rU9hFMjNFZMRxUcxt2Pu0m5Jw,67092
159
+ diffusers/models/unets/unet_2d_condition_flax.py,sha256=62kO3PaPNfcPvWbOIL4nws7m_SZ2j4_GMAA1lXVPR4I,22289
160
+ diffusers/models/unets/unet_3d_blocks.py,sha256=OyEIov5NMa_T9kIWzcMoMfmKZVcgDRbe6vH1Wb4ar9o,51676
161
+ diffusers/models/unets/unet_3d_condition.py,sha256=_OscxwREczYttMFghevnaGu-LnIZLlV63LiS8HszdkU,34379
162
+ diffusers/models/unets/unet_i2vgen_xl.py,sha256=BcsJO2K_GDZV3aPt9-VDsJN9hD07xAkFCVf5iE8PA2A,32505
163
+ diffusers/models/unets/unet_kandinsky3.py,sha256=B9kql5-5U7rG7sbZg6Hy49P-4MusRQDwZT78fc2v6FY,20584
164
+ diffusers/models/unets/unet_motion_model.py,sha256=5ct4afFiyEQzq-GhDHbO1HcV0rj-YvaM3gr7jfMpXGo,99370
165
+ diffusers/models/unets/unet_spatio_temporal_condition.py,sha256=LsBj9J6nltqs2vrkIt-OT4weL1GUxJMmcNx3wTMM-vY,23259
166
+ diffusers/models/unets/unet_stable_cascade.py,sha256=6fgr1ksDUhAe54xd_4uRHEqbeGzlVnd7R80GyKAG9_4,27229
167
+ diffusers/models/unets/uvit_2d.py,sha256=0cV3yDVyC1KA9bAMnhcHGGVbT7n9bFl09gX61bcQLeo,17227
168
+ diffusers/modular_pipelines/__init__.py,sha256=4IB38VWi4wcXPv0oagT637HSal4GKlN0ejTZhKA9h9g,2774
169
+ diffusers/modular_pipelines/components_manager.py,sha256=41Ehc9nGxmv_hD_zTxL29TsvZG8-6TPxvHblMSwgBTE,45700
170
+ diffusers/modular_pipelines/modular_pipeline.py,sha256=urxlWlwVJCWefgEyRZzfN2KJ-pzPzrydrrwdt-lPuIs,107173
171
+ diffusers/modular_pipelines/modular_pipeline_utils.py,sha256=Y71ovPdYL7IG6fYgUuH7OtFvCh2VIf1vHfrEraBmB4w,26565
172
+ diffusers/modular_pipelines/node_utils.py,sha256=xKQ2dOtOBnK0IX0q-E9ctE3riYZe84yHtsimej4Werc,25446
173
+ diffusers/modular_pipelines/flux/__init__.py,sha256=1XBMNhPwmkcCMVSEv-wHwBqNncx9u7Ps_Rf6h9HEVhk,1952
174
+ diffusers/modular_pipelines/flux/before_denoise.py,sha256=De5S0XHaJWpTGBp5UvrIr8xl_FuiSaO1DYeFFZUKA9I,29142
175
+ diffusers/modular_pipelines/flux/decoders.py,sha256=Ka4PjOTvFzjWJllgDBJ4wJECxJc6821laHYtw4L2O6s,3911
176
+ diffusers/modular_pipelines/flux/denoise.py,sha256=L4vAJTh7FaP1CQKBmMRN4Tih8FZyatL6GwmdGxBszKo,8311
177
+ diffusers/modular_pipelines/flux/encoders.py,sha256=PcV_SMsxl35RPTmBA4sJ3eM-Y3F6tNeTiWO9L1RAnKM,17217
178
+ diffusers/modular_pipelines/flux/modular_blocks.py,sha256=sp-kAoUEqhTZLfKAl3XBQEWPgDtNVZeHM3_-EAQ7Mgs,6438
179
+ diffusers/modular_pipelines/flux/modular_pipeline.py,sha256=j6k3Ket-QV7DIqqkKrpZZMYleRV_0rxVxwycLikPOok,1861
180
+ diffusers/modular_pipelines/stable_diffusion_xl/__init__.py,sha256=LT9U7_-Vk8WOY3K0yZhNOUQ4iebUwZgbT66xX8s1IIE,2437
181
+ diffusers/modular_pipelines/stable_diffusion_xl/before_denoise.py,sha256=ZAgh-9jqws7-MESw7gLvLlUyAomeqqc0uqaYi2Eck8Y,85999
182
+ diffusers/modular_pipelines/stable_diffusion_xl/decoders.py,sha256=myNOrC4W9jf9Y7qyClDhiOSKjUGofpWkP2SJ8e39sRY,8195
183
+ diffusers/modular_pipelines/stable_diffusion_xl/denoise.py,sha256=ZhMEVquHgq9ufTzBSlvHRaYFNLXOv14ipZx-89rMClo,34677
184
+ diffusers/modular_pipelines/stable_diffusion_xl/encoders.py,sha256=1b3s0gKWk3H_oOl3UhDnUnymQekENVQ3bLZQHP4Ddfw,41281
185
+ diffusers/modular_pipelines/stable_diffusion_xl/modular_blocks.py,sha256=izE2hG5f9_gvWAHWWdlFooCI5fiG_wN95cpJd-5iXpI,16760
186
+ diffusers/modular_pipelines/stable_diffusion_xl/modular_pipeline.py,sha256=LsipRIxSFwyg9zsrt_xicQ_yT5lprGhe4MQXJhT2U1U,15628
187
+ diffusers/modular_pipelines/wan/__init__.py,sha256=ViOGSde0Xrpum0IfynOVGmGiqmugG2C2mvb3g7O3jUw,1939
188
+ diffusers/modular_pipelines/wan/before_denoise.py,sha256=Lo8ebuHn_k_b67rKYxGkZPcKblrHJWqJdLKExWbqsS8,15571
189
+ diffusers/modular_pipelines/wan/decoders.py,sha256=K1HdAeRQ4ohEQVZhRdEGiwuXcwgF3lweBtujfWdtiaQ,3632
190
+ diffusers/modular_pipelines/wan/denoise.py,sha256=xmI6fHZTzA2rxYH1cg-tUbsSqVbEHjbIVTrcc0Qxj8g,10130
191
+ diffusers/modular_pipelines/wan/encoders.py,sha256=sNuIiu2uuDQc0Pf6BtrLlrXOZtmblH2fFe9uzW26Nrk,9496
192
+ diffusers/modular_pipelines/wan/modular_blocks.py,sha256=-DTbXRWMcVY5D5OxubKi9LsWa6p_M0dpBfaTb9oi0Dw,4219
193
+ diffusers/modular_pipelines/wan/modular_pipeline.py,sha256=bqwQclVfRe8lval62b9gGQSJgupTsuWLf2Xs_OH_MOg,2721
194
+ diffusers/pipelines/__init__.py,sha256=xHqA-fv-UIjv_2lyfjnLVtWWNtJsJ1qfiRjHpz6k-lc,34347
195
+ diffusers/pipelines/auto_pipeline.py,sha256=Un7C_kIIUpwyqmevasaAWyDSL0f-x7EBYfBue3hQv5s,58379
196
+ diffusers/pipelines/free_init_utils.py,sha256=SHrGV68cii9sYCKZLbIdBEOB5tANOVbN9vv7KznOlII,7699
197
+ diffusers/pipelines/free_noise_utils.py,sha256=SlcvpUInyDDOOq7CkzXsjbcsC3Z7nY_JBzy6MJorHc4,29691
198
+ diffusers/pipelines/onnx_utils.py,sha256=oTRc_iLHEKpf_IGFw_ka1bloAI-XUa6_ASMLW2LAH4w,8810
199
+ diffusers/pipelines/pipeline_flax_utils.py,sha256=u8wFa0wdJ3CCCVpZdSLCAPDambSNGNLcyArEhiLwuAM,27026
200
+ diffusers/pipelines/pipeline_loading_utils.py,sha256=RDbQqtx4F2Oog8b7jYC3vm-GfSZpa1UAUBQQVnfe_G4,48069
201
+ diffusers/pipelines/pipeline_utils.py,sha256=u-KRiPcVriYKHvEL_dT3PvmlBDCQBiqmFUVnexXx8oE,105794
202
+ diffusers/pipelines/transformers_loading_utils.py,sha256=98wKUHN89Q1nmmat046hgQxLDlnZNj9Ww4TLB5W52pQ,5281
203
+ diffusers/pipelines/allegro/__init__.py,sha256=T1MLZgDf8Fhh6YunF8a4Ta6NNIqneWsJIvmBhiy1ABM,1290
204
+ diffusers/pipelines/allegro/pipeline_allegro.py,sha256=6h-lqIRh_nktZAZeorkOdeMwuaS5UCXskIAVrxhQ9nw,44067
205
+ diffusers/pipelines/allegro/pipeline_output.py,sha256=Q2W_16pT5o5xbzSrCKO8AB3IweqAyvv6BGTlPwAUNhE,722
206
+ diffusers/pipelines/amused/__init__.py,sha256=pzqLeLosNQ29prMLhTxvPpmoIDPB3OFMQMlErOIRkmI,1793
207
+ diffusers/pipelines/amused/pipeline_amused.py,sha256=EJbwGd3ePgst-GmA9CSfIOncKaxRozr4zAi1QzGRKks,16018
208
+ diffusers/pipelines/amused/pipeline_amused_img2img.py,sha256=PvInrMAHCOqES6HjltqGbkAmLWa0T_WvZub4IAAAoIE,17495
209
+ diffusers/pipelines/amused/pipeline_amused_inpaint.py,sha256=zmpdSChNiXl8v4C7GKnlEmyGtuPfhYKXVo3OPpFW0uQ,19181
210
+ diffusers/pipelines/animatediff/__init__.py,sha256=8e7xkGr1MrQerNXsfFBaDT8f7ELe5aoPX9v2qRN1hvg,2324
211
+ diffusers/pipelines/animatediff/pipeline_animatediff.py,sha256=LZWsnSJ0PaWdLcn4hipA3TKSuZxllqYUIAn0M3Uk5oo,42434
212
+ diffusers/pipelines/animatediff/pipeline_animatediff_controlnet.py,sha256=wyKBvLx6UMF_vqgmu42HNkj0wMUBjLggXsBrqyi61Jk,55940
213
+ diffusers/pipelines/animatediff/pipeline_animatediff_sdxl.py,sha256=O1vn-vdJSyLOxk_o9VO2gPzsKV4WZIS18lcgtpkmeP0,66566
214
+ diffusers/pipelines/animatediff/pipeline_animatediff_sparsectrl.py,sha256=hZJ4Bqy857KN0tbzyjVpRQlUCeJE3z9d0byZcNbYCm8,51514
215
+ diffusers/pipelines/animatediff/pipeline_animatediff_video2video.py,sha256=v-KmxoDFQJnWPcToTTrEScO3UIK2gqhLjOJxuKzA71Q,52258
216
+ diffusers/pipelines/animatediff/pipeline_animatediff_video2video_controlnet.py,sha256=6NNBLmnPnr9VoB0Uw6plQR_8HEan3a8yJXo8Mx2pTjI,67610
217
+ diffusers/pipelines/animatediff/pipeline_output.py,sha256=Ggp2OfMwdOPjHh4wIEN5aHJHDiSU0ORyzWzfdysrtcA,729
218
+ diffusers/pipelines/audioldm/__init__.py,sha256=HMUjKqEf7OAtgIeV2CQoGIoDE6oY7b26N55yn4qCIpU,1419
219
+ diffusers/pipelines/audioldm/pipeline_audioldm.py,sha256=R4WZVEilSXA339bzZWMFzcpVDnf8cn1L1Vd-CGlNNqQ,26375
220
+ diffusers/pipelines/audioldm2/__init__.py,sha256=gR7gTyh-YGI4uxTCPnz_LnCGbErpFGtNMEzM_CQdqgE,1605
221
+ diffusers/pipelines/audioldm2/modeling_audioldm2.py,sha256=SpKP4UVjYRznsInmq4gvobBnX2uTlA4wILzyWRHWdY0,70483
222
+ diffusers/pipelines/audioldm2/pipeline_audioldm2.py,sha256=v4RIc2FCqd4-5CMN0qvCt0RI3u7sZL1UbLPhsC2bfUo,54782
223
+ diffusers/pipelines/aura_flow/__init__.py,sha256=TOGRbwqwr7j1XIVGAxIBwAp4lM2zt21C_hYm5dFb76o,1296
224
+ diffusers/pipelines/aura_flow/pipeline_aura_flow.py,sha256=c2d06A6gdkM09Hciw0An8Hfu5y44bDmggyDptFTe_wU,33217
225
+ diffusers/pipelines/blip_diffusion/__init__.py,sha256=v_PoaUspuKZG54FdKtITSccYo6eIhMnO0d6n7Pf3JJU,697
226
+ diffusers/pipelines/blip_diffusion/blip_image_processing.py,sha256=xRyx14zBBKrERosHMm_Pj9HjSfESxFAh6nPmhj42dgE,16742
227
+ diffusers/pipelines/blip_diffusion/modeling_blip2.py,sha256=eBrI0_E7mBN0uctDOHVdcv_tYhHHWpaXGuk7DZoxAQQ,27139
228
+ diffusers/pipelines/blip_diffusion/modeling_ctx_clip.py,sha256=53ggZ2e0gs0Oh7UwpKvSXdrcr70IlYkAUNB-hnkpMYk,9002
229
+ diffusers/pipelines/blip_diffusion/pipeline_blip_diffusion.py,sha256=mxCrWForS6kYGJ8wkg9Im_Nic0gVwQb2KpfNUdQfM9A,15322
230
+ diffusers/pipelines/chroma/__init__.py,sha256=iRH8V4N01bnqzev2gozrhjVu1cRhLAn61RNFCBxFzgg,1611
231
+ diffusers/pipelines/chroma/pipeline_chroma.py,sha256=vZ_gr6H4SfZvQFvf2PXl8nMWIXytBlHgQnsBnkWDEQM,44725
232
+ diffusers/pipelines/chroma/pipeline_chroma_img2img.py,sha256=5-IUqdPIftFAxos3DehF3URoyqE5c9JCDPHZ1hdmwDU,49186
233
+ diffusers/pipelines/chroma/pipeline_output.py,sha256=_LYDjLRSV0vIaNBSwddFVpWwbNGPQ6E5GkNAccpaOQo,600
234
+ diffusers/pipelines/cogvideo/__init__.py,sha256=84bmJbrCvjUtEXFgyCKvX5N4HNtAWorMjQTNvWPh8ZU,1816
235
+ diffusers/pipelines/cogvideo/pipeline_cogvideox.py,sha256=PCG3T12DYLo1udFzAee4JLegxOq5zsUksREuJtz6OIk,37786
236
+ diffusers/pipelines/cogvideo/pipeline_cogvideox_fun_control.py,sha256=g10TK41Y_awT48_7JpR3hEI5TQi_6eUiyO8n-EsTMks,40347
237
+ diffusers/pipelines/cogvideo/pipeline_cogvideox_image2video.py,sha256=lFtN9WK2gRd08ofJGhVBQskcrMw4Y8VQZNKt_gwb2xU,42794
238
+ diffusers/pipelines/cogvideo/pipeline_cogvideox_video2video.py,sha256=W7875-7mgzPNo9HCyX59H-GB3i7bL_lH35ehYVHhTEs,41401
239
+ diffusers/pipelines/cogvideo/pipeline_output.py,sha256=QOyumhJJERjm7moyxnYzU_X27hvN9p99MIkjT_Vf1x0,616
240
+ diffusers/pipelines/cogview3/__init__.py,sha256=ophRMlB8W7AocUEWUJLbmK1o4yJpHEfKvwyDceyMu00,1497
241
+ diffusers/pipelines/cogview3/pipeline_cogview3plus.py,sha256=oCX9IvHfGfY7UbeYWa8jc1-q7xiVhUDjuYNPfzZUV7E,33881
242
+ diffusers/pipelines/cogview3/pipeline_output.py,sha256=qU187W2KZY8KloD6E5EOpkbgJOYrsQFSGHyNHKHqwxs,594
243
+ diffusers/pipelines/cogview4/__init__.py,sha256=DSW0f5XIu2bcirGYm6FE9lhyxADbV5nbiayq1x2ttJg,1633
244
+ diffusers/pipelines/cogview4/pipeline_cogview4.py,sha256=lSjIa73H96hO4iShFmPV9w8IKQbhvL1WOWcOHgbGdXo,33869
245
+ diffusers/pipelines/cogview4/pipeline_cogview4_control.py,sha256=oqZJ5XbE3RblxqH5VzIbMpT1AnnQJV-krevmRc4CXyY,35345
246
+ diffusers/pipelines/cogview4/pipeline_output.py,sha256=l3XZTqGTse6epEQn_VZsGyRAyQF9TpfYRaQrqO5O_Dw,594
247
+ diffusers/pipelines/consisid/__init__.py,sha256=wi4mmbsztby5LLgmrtDhz857JWT_4Jbc2sRzRyL0EpY,1367
248
+ diffusers/pipelines/consisid/consisid_utils.py,sha256=ZoAiyDYhNV_nMJHr2pkhtHgXVFzdcsIhWvAWWzgpoek,14522
249
+ diffusers/pipelines/consisid/pipeline_consisid.py,sha256=Di5fV28wCWfQrRX8fzqhQj9BnwTTBHat1XLpS9emNwA,46715
250
+ diffusers/pipelines/consisid/pipeline_output.py,sha256=bCTmHqOyRXggYJLwx_nBxNg0-yci9Dhge8Div0k_D1U,615
251
+ diffusers/pipelines/consistency_models/__init__.py,sha256=q_nrLK9DH0_kLcLmRIvgvLP-vDVwloC3lBus776596c,484
252
+ diffusers/pipelines/consistency_models/pipeline_consistency_models.py,sha256=-QlWGbE6nflcWLYLY5s7F5drUOUxaR7IXPd35bC3rB8,12596
253
+ diffusers/pipelines/controlnet/__init__.py,sha256=pqndp8HbyQ2D45STcpMp37nO5M4SagpfwADCCOC_2CU,4057
254
+ diffusers/pipelines/controlnet/multicontrolnet.py,sha256=-sluVPEM3oDV_dscvtnklZf3S_KsbRK98-V1fwGKUtg,684
255
+ diffusers/pipelines/controlnet/pipeline_controlnet.py,sha256=ctdh4Nt3TzEHSi8Hsa5xUz4FDvLK7AIFEw_lxUk4fgk,69320
256
+ diffusers/pipelines/controlnet/pipeline_controlnet_blip_diffusion.py,sha256=_1FGKD5-_1KUhVZ_lu2O4TXAAAqmzM7sFhpxqcx-YZU,17685
257
+ diffusers/pipelines/controlnet/pipeline_controlnet_img2img.py,sha256=vr7XO-3CfGRVeLlS4QUAtqyekPZYrWVb0pyTXfcHwn8,67610
258
+ diffusers/pipelines/controlnet/pipeline_controlnet_inpaint.py,sha256=JxW2wNkNUUY4HiI3IhivKwvG7qEDSgJ3kKk_ILS5YBQ,76660
259
+ diffusers/pipelines/controlnet/pipeline_controlnet_inpaint_sd_xl.py,sha256=DsTeSK8OqT9racfudAHSSyPttoXAewKF2hL3hJcgDlA,95313
260
+ diffusers/pipelines/controlnet/pipeline_controlnet_sd_xl.py,sha256=5yUeJMSfgbQ-po-5ljpfPPeCQwK_m_UEc5Gv1ZiJOs4,82765
261
+ diffusers/pipelines/controlnet/pipeline_controlnet_sd_xl_img2img.py,sha256=lBQ72LPNhz7JB6zLRhkDTsMGOH_OwdCN24iFaoysqGA,87279
262
+ diffusers/pipelines/controlnet/pipeline_controlnet_union_inpaint_sd_xl.py,sha256=LL8iV9nrpsgkUM0j6V-pJdBal_9ujbtwkQsgsH_E21Q,97699
263
+ diffusers/pipelines/controlnet/pipeline_controlnet_union_sd_xl.py,sha256=dnMxGNuTTGQthZ6MsAAR20PALwKIoaDGH6E7yN0sNJQ,83410
264
+ diffusers/pipelines/controlnet/pipeline_controlnet_union_sd_xl_img2img.py,sha256=_wfBXwWerLSYvegxq0HoUoT8Ur8fK36cSItuLjEWySI,88822
265
+ diffusers/pipelines/controlnet/pipeline_flax_controlnet.py,sha256=gJ54OTBKXNYMk1wPzaaiE7a60F_mp9S4me7DAElgIsQ,22771
266
+ diffusers/pipelines/controlnet_hunyuandit/__init__.py,sha256=LvB-TNhPTnUIdinVZfxzUX40RFWvNWxrjAzsDDiLBfM,1344
267
+ diffusers/pipelines/controlnet_hunyuandit/pipeline_hunyuandit_controlnet.py,sha256=JmU_qrB_oPBVnu0hnrc5HEgtRCSfWicIZQwSwUFEdRg,51005
268
+ diffusers/pipelines/controlnet_sd3/__init__.py,sha256=_-t5_Jac1hvUKbjACSwVDVWx1lFIBQDCeCE9CVMbsW0,1903
269
+ diffusers/pipelines/controlnet_sd3/pipeline_stable_diffusion_3_controlnet.py,sha256=-2xtwBvccIne5Bau5P7_wOw7SdkOMq5dC9AmEAzGVLI,62633
270
+ diffusers/pipelines/controlnet_sd3/pipeline_stable_diffusion_3_controlnet_inpainting.py,sha256=MOxSarLvTPdiFqFwaVWmAGCqWzOINPSda09taRqPD68,63597
271
+ diffusers/pipelines/controlnet_xs/__init__.py,sha256=TuIgTKgY4MVB6zaoNTduQAEVRsNptBZQZhnxxQ3hpyg,2403
272
+ diffusers/pipelines/controlnet_xs/pipeline_controlnet_xs.py,sha256=I_wHrWyaxKh8DccRvvOn7SBfjn2AoYTJxEFvOQndyiQ,46056
273
+ diffusers/pipelines/controlnet_xs/pipeline_controlnet_xs_sd_xl.py,sha256=xnp5qtiDjVZeq4c6DgleZE8a7qJ7Y1VFv-j54ygvAfE,57342
274
+ diffusers/pipelines/cosmos/__init__.py,sha256=pX1QX9zkM2e4Vo_0A3tvOVE0X-vHxYuFOedVtHUPmfs,1820
275
+ diffusers/pipelines/cosmos/pipeline_cosmos2_text2image.py,sha256=sO54yib9payqZjZpBhvodLdPDkIEtlIonJAgCMJLI5Q,32962
276
+ diffusers/pipelines/cosmos/pipeline_cosmos2_video2world.py,sha256=u94ClHRWm87hYfcoDSbN_Hd4WLX9cx0H0mbRyqdfva4,39284
277
+ diffusers/pipelines/cosmos/pipeline_cosmos_text2world.py,sha256=JxExXGuCdoKaahFC1iux5BwLJnWFCGqA0T9JC9undP8,31639
278
+ diffusers/pipelines/cosmos/pipeline_cosmos_video2world.py,sha256=8NWyFa78NXtHxgwSFB0ecA-Qz29EoqU6CrGh8mOX15o,39983
279
+ diffusers/pipelines/cosmos/pipeline_output.py,sha256=iJIxvS8s2YCd790FLEd3Bl3WNm1TS67MGJlgOF6rqjA,1214
280
+ diffusers/pipelines/dance_diffusion/__init__.py,sha256=SOwr8mpuw34oKEUuy4uVLlhjfHuLRCP0kpMjoSPXADU,453
281
+ diffusers/pipelines/dance_diffusion/pipeline_dance_diffusion.py,sha256=VDSk8B05ddFRCTRD3_cjyVH4qCM0MvqdxSIrg_MPDms,6732
282
+ diffusers/pipelines/ddim/__init__.py,sha256=-zCVlqBSKWZdwY5HSsoiRT4nUEuT6dckiD_KIFen3bs,411
283
+ diffusers/pipelines/ddim/pipeline_ddim.py,sha256=YkknZ2EFsC7Knf-0KJB-ckEU5-xCHjctxUa7karayAk,6910
284
+ diffusers/pipelines/ddpm/__init__.py,sha256=DAj0i0-iba7KACShx0bzGa9gqAV7yxGgf9sy_Hf095Q,425
285
+ diffusers/pipelines/ddpm/pipeline_ddpm.py,sha256=M0hWjZbUbWL2VCiqsJ5oJ2VNDZSjS9jscFUXsF4_bKs,5344
286
+ diffusers/pipelines/deepfloyd_if/__init__.py,sha256=gh1fQ5u6q0d-o3XGExCGD0jPaUK-gWCturfHU-TYIi8,2975
287
+ diffusers/pipelines/deepfloyd_if/pipeline_if.py,sha256=r7908WHOwr0MiDK0IBCQYfDUVncIGZ1nvSkhL84wBXY,35624
288
+ diffusers/pipelines/deepfloyd_if/pipeline_if_img2img.py,sha256=K6d5O6eDU8OJ8GcCa5H3ck_PGX9ttRqpgJN_b0IHApw,40033
289
+ diffusers/pipelines/deepfloyd_if/pipeline_if_img2img_superresolution.py,sha256=G6pRC9JmRlWQn5h7jf9-D2URPzWSJdz4ABJ0PrBvBBo,45073
290
+ diffusers/pipelines/deepfloyd_if/pipeline_if_inpainting.py,sha256=2rT9uoczvSbqvIppIkzZRnJt0KL14gG7X0r9iIJvg-0,45231
291
+ diffusers/pipelines/deepfloyd_if/pipeline_if_inpainting_superresolution.py,sha256=2Osy4qE8PfrKPRUC6yDf536tVVnuAePrvvQF_Hwy8ZY,50070
292
+ diffusers/pipelines/deepfloyd_if/pipeline_if_superresolution.py,sha256=eSFTCAH0GE_Pn6hrMAk_CfQrpZdqHdHw7pm8HDMB-k8,39915
293
+ diffusers/pipelines/deepfloyd_if/pipeline_output.py,sha256=RBxF2VMyXgIiZzJs9ZnmRRPom6GdFzb1DrOnuYmd6uQ,1145
294
+ diffusers/pipelines/deepfloyd_if/safety_checker.py,sha256=zqN0z4Mvf7AtrxlUb6qAoiw_QuxGdDk-6js5YuarxTo,2117
295
+ diffusers/pipelines/deepfloyd_if/timesteps.py,sha256=JO8b-8zlcvk_Tb6s6GGY7MgRPRADs35y0KBcSkqmNDM,5164
296
+ diffusers/pipelines/deepfloyd_if/watermark.py,sha256=d-43jrlsjyJt1NJrXrl7U1LgCPlFD5C1gzJ83GVoijc,1601
297
+ diffusers/pipelines/deprecated/__init__.py,sha256=mXBnea22TkkUdiGxUpZDXTSb1RlURczuRcGeIzn9DcQ,5470
298
+ diffusers/pipelines/deprecated/alt_diffusion/__init__.py,sha256=1SiGoNJytgnMwGmR48q8erVnU9JP5uz5E6XgHvlFDTc,1783
299
+ diffusers/pipelines/deprecated/alt_diffusion/modeling_roberta_series.py,sha256=CmrX8Y2bvoTr1_kZYQ-13nXL9ttMsX6gYX_0yPx1F3g,5530
300
+ diffusers/pipelines/deprecated/alt_diffusion/pipeline_alt_diffusion.py,sha256=AgwVAwzfqBp0xXay6gTADpLygznVEpCUyPuxVGAd-zU,50256
301
+ diffusers/pipelines/deprecated/alt_diffusion/pipeline_alt_diffusion_img2img.py,sha256=cGf3Fi3sjqJTRpgjAub3IGU52lPkrq0fc_WOLJ1vwgk,52976
302
+ diffusers/pipelines/deprecated/alt_diffusion/pipeline_output.py,sha256=wtKrIaa_f-rfw5_bbEGi5mdNnQ6qmsaTGcDVBNBnvJ8,928
303
+ diffusers/pipelines/deprecated/audio_diffusion/__init__.py,sha256=SiFqPmeNbqOYTwuTx2WUaMIpMzgSnJ2SZ_97tIDryOE,507
304
+ diffusers/pipelines/deprecated/audio_diffusion/mel.py,sha256=BjN1eYahKBBWn3FTSlHpn5VqbC1pym253k7u8WfucXw,5764
305
+ diffusers/pipelines/deprecated/audio_diffusion/pipeline_audio_diffusion.py,sha256=E-e-P_zb5rQQ61QYFP_A_ONMkFLaCSB1FNGrt-C06GQ,13239
306
+ diffusers/pipelines/deprecated/latent_diffusion_uncond/__init__.py,sha256=ZWWt671s-zbWawgtJNoIstZsvOE5ucP2M_vp7OMUMeM,448
307
+ diffusers/pipelines/deprecated/latent_diffusion_uncond/pipeline_latent_diffusion_uncond.py,sha256=pl4GRcCIjzva81en87KPzAiX19z3ARqUwrgapzPbKV8,5381
308
+ diffusers/pipelines/deprecated/pndm/__init__.py,sha256=R8RavcZ5QXU-fR4o4HT_xvypifWUcqRKF3bduCgieEI,412
309
+ diffusers/pipelines/deprecated/pndm/pipeline_pndm.py,sha256=H9NvlZdnQ1MfSrsaicaCdvjpVPJdba6yh1a1i9Sa2UY,4662
310
+ diffusers/pipelines/deprecated/repaint/__init__.py,sha256=mlHI_qG20VS7yuags8W0HXpbHkZgObu-jUBuYnOfffo,425
311
+ diffusers/pipelines/deprecated/repaint/pipeline_repaint.py,sha256=nkJmBYTDiF8Znogu769JFGFQDfX1qNY-MjMC201fLl8,10094
312
+ diffusers/pipelines/deprecated/score_sde_ve/__init__.py,sha256=7CLXxU1JqmMFbdm0bLwCHxGUjGJFvS64xueOQdD2X7s,441
313
+ diffusers/pipelines/deprecated/score_sde_ve/pipeline_score_sde_ve.py,sha256=_1vGqiY3cZY-1h_74x7XGUmfT7IZicTl3K6XYlgg49g,4390
314
+ diffusers/pipelines/deprecated/spectrogram_diffusion/__init__.py,sha256=lOJEU-CHJhv0N2BCEM9-dzKmm1Y-HPt1FuF9lGBgIpg,2588
315
+ diffusers/pipelines/deprecated/spectrogram_diffusion/continuous_encoder.py,sha256=7hqiAFb5gYob4MPvNMDaDJPX1IlJNlHzHRfnC52yhGQ,3100
316
+ diffusers/pipelines/deprecated/spectrogram_diffusion/midi_utils.py,sha256=UY5j5rCm2rzkvX1aGrjqzl-dkvh9nHGaV67PiIDXAqk,25096
317
+ diffusers/pipelines/deprecated/spectrogram_diffusion/notes_encoder.py,sha256=1dphTvTIpodYsic9Rn9DpX9MOchZW_PjyS626MIWw1A,2923
318
+ diffusers/pipelines/deprecated/spectrogram_diffusion/pipeline_spectrogram_diffusion.py,sha256=DaKLh1UdQ0jlwo92eU--Js5lL9A027akOx7UaDT5vXs,11528
319
+ diffusers/pipelines/deprecated/stable_diffusion_variants/__init__.py,sha256=mnIQupN59oc3JmKGaQZia7MO92E08wswJrP9QITzWQs,2111
320
+ diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_cycle_diffusion.py,sha256=uZxwoXZLZE4Kd1Qlb9jPvKwhhd_s7EiHYTBHnVS53NY,48035
321
+ diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_onnx_stable_diffusion_inpaint_legacy.py,sha256=d2dTEqsup3V20i9dI8EM1ROGJlBMSrbVLecptK1tBnY,27841
322
+ diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_inpaint_legacy.py,sha256=cr9owvhcPbRtB85QQbJ8CK4hVqdJ__TeacljBe6BunI,42556
323
+ diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_model_editing.py,sha256=CDlbEGKY8M5ZOEwSexMxyq0Re_0PfVwzaFmV8OoFjkQ,41530
324
+ diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_paradigms.py,sha256=DzGD_KpDwTModZFDiRxfrWBrgi-goFEglS3A_w6XJZ8,41216
325
+ diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_pix2pix_zero.py,sha256=xa7GE5lLiAmb_c_5A4y0BqaLV9yBMTIzjdjEOQx6vPc,63563
326
+ diffusers/pipelines/deprecated/stochastic_karras_ve/__init__.py,sha256=WOKqWaBgVgNkDUUf4ZL1--TauXKeaPqtGf3P2fTFYMw,453
327
+ diffusers/pipelines/deprecated/stochastic_karras_ve/pipeline_stochastic_karras_ve.py,sha256=jRhJFQxTQ18_Kr05blYzF415U1xGMuIVPEycF5UGxX8,5277
328
+ diffusers/pipelines/deprecated/versatile_diffusion/__init__.py,sha256=_CRp2PIJD6loFlES3hMcPigZNOUMf2OgTaRFgoit7hc,2838
329
+ diffusers/pipelines/deprecated/versatile_diffusion/modeling_text_unet.py,sha256=s4_K2WJXXXVXXJfrw1pBU14gme12kfgs1Eakjgjm2oc,113024
330
+ diffusers/pipelines/deprecated/versatile_diffusion/pipeline_versatile_diffusion.py,sha256=lBCiSYM8hQrILIEhtxs2bGDQqwsd1RHA2rWHl_xOY2c,21912
331
+ diffusers/pipelines/deprecated/versatile_diffusion/pipeline_versatile_diffusion_dual_guided.py,sha256=Or5-U70TQ716NM2PH5UdEQErlY5trDPj1TsYbJnl5BU,27228
332
+ diffusers/pipelines/deprecated/versatile_diffusion/pipeline_versatile_diffusion_image_variation.py,sha256=PqrXJWL-ZvPhaF3UMwPgbsYcxYMfJ5liVqkNS1mfwyQ,19742
333
+ diffusers/pipelines/deprecated/versatile_diffusion/pipeline_versatile_diffusion_text_to_image.py,sha256=Ut-bWQmxYf6g6zw7YOf_TRnWR8Om0V3Bx9B7l0fMt5k,22946
334
+ diffusers/pipelines/deprecated/vq_diffusion/__init__.py,sha256=CD0X20a3_61pBaOzDxgU_33PLjxN1W8V46TCAwykUgE,1650
335
+ diffusers/pipelines/deprecated/vq_diffusion/pipeline_vq_diffusion.py,sha256=6El_KY-vwVUvYF3LGiwk6K5q5UjwhgT9J9cBw_V5Jv0,15444
336
+ diffusers/pipelines/dit/__init__.py,sha256=w6yUFMbGzaUGPKpLfEfvHlYmrKD0UErczwsHDaDtLuQ,408
337
+ diffusers/pipelines/dit/pipeline_dit.py,sha256=w1Oy-XIXHe_Z1kpHbFBC4rTTEht__PSPeQiAQJgT65A,10476
338
+ diffusers/pipelines/easyanimate/__init__.py,sha256=CeJHlQus6mhlN2rmFk1LA44ygm4jYJVEyMYWMckcxZI,1634
339
+ diffusers/pipelines/easyanimate/pipeline_easyanimate.py,sha256=iNg09pgsMUdZzkvgqxbq5olN0fZBt87jK6Yhiws1xII,35903
340
+ diffusers/pipelines/easyanimate/pipeline_easyanimate_control.py,sha256=evNzX0HHy9HO83ob-yTALTAlDm_ZUyx62-Z92wzKiH8,46131
341
+ diffusers/pipelines/easyanimate/pipeline_easyanimate_inpaint.py,sha256=9OZA8OnhHqaRtxyZFX7SUbrlA6VRMFwPpa7pRYggXdY,58526
342
+ diffusers/pipelines/easyanimate/pipeline_output.py,sha256=cpEvM-GStcMexQOQnPunDqrCOHP_Fk4aNxMvUHYeuxQ,621
343
+ diffusers/pipelines/flux/__init__.py,sha256=heCaE43tK4Ss6WrvDTWtglW9rLHf2AGzPqVpxGcQTH4,3445
344
+ diffusers/pipelines/flux/modeling_flux.py,sha256=46xvV8iCF77ifCJFPQ9tjtvNxBorVnBrQZw_eHRBujQ,1549
345
+ diffusers/pipelines/flux/pipeline_flux.py,sha256=ZQsELxzY_ECGx82qw0JTTobWojOqgaXsuxUU5VOsIJg,47573
346
+ diffusers/pipelines/flux/pipeline_flux_control.py,sha256=4-hD6GpMKdMMIhFVE3jcMaMD6x9ImRcUkkhURfFmB-4,40609
347
+ diffusers/pipelines/flux/pipeline_flux_control_img2img.py,sha256=dcG8jzQXpbP0bl0Mm_wxqGmSCMALaH0Ho7QMIQqdyLI,44578
348
+ diffusers/pipelines/flux/pipeline_flux_control_inpaint.py,sha256=oinQB31pcb74kXLj9D6RqxYJ_dNoywA_FduI74ZpHls,53672
349
+ diffusers/pipelines/flux/pipeline_flux_controlnet.py,sha256=rM6ncrReHwg2zUibGq_Umz1PN-LoNgwSRXEE4z_GuG8,57932
350
+ diffusers/pipelines/flux/pipeline_flux_controlnet_image_to_image.py,sha256=J9XwduDfZEleOUgauZto7ISspbRtC2YSaDBJyXtSh9Q,46514
351
+ diffusers/pipelines/flux/pipeline_flux_controlnet_inpainting.py,sha256=Ij6mzyJVsulsSNu9PdmVzALRSKbJK3NpddTQUqMu3So,55542
352
+ diffusers/pipelines/flux/pipeline_flux_fill.py,sha256=fkeIDQd3fCCA2NOQgKG_1nGmJsH0Yd0DVWPNBtm3omI,49414
353
+ diffusers/pipelines/flux/pipeline_flux_img2img.py,sha256=07SiiP4HAoi8ZW-vDb4PnwoN-O8lhZNEErbOQXAIpeE,52273
354
+ diffusers/pipelines/flux/pipeline_flux_inpaint.py,sha256=bjYwxu92s_nYxHDrJEwYpPz_Pi3LQp9k_GfSdnU8lss,59258
355
+ diffusers/pipelines/flux/pipeline_flux_kontext.py,sha256=IHqqqKPVsX5d7gE0l_r7lRywIq10zoN6ozQnd4uhr1M,55083
356
+ diffusers/pipelines/flux/pipeline_flux_kontext_inpaint.py,sha256=wsDjkNl5qipVuhuCtTZ2SLfMmPKD1rrnqEscgu5Dl2I,71831
357
+ diffusers/pipelines/flux/pipeline_flux_prior_redux.py,sha256=BoAMvn_7x9kVq28Vrnfzyzb70hB5d2VYnKbP--02bgI,21825
358
+ diffusers/pipelines/flux/pipeline_output.py,sha256=dzK14BDdSxbuSabI1nIU9IB5IWtxhVDV1EO0bZvKciU,1283
359
+ diffusers/pipelines/hidream_image/__init__.py,sha256=SeMI0Ae_K8guNBe8doZIX_vJndXz6jWFWhCqtH1s5I0,1499
360
+ diffusers/pipelines/hidream_image/pipeline_hidream_image.py,sha256=DeuisvM2S1pe2S13A-mgnqGmYT7cOVIh0tKuTL9rqno,51321
361
+ diffusers/pipelines/hidream_image/pipeline_output.py,sha256=nfVKQcyZW-RIHpoVd5XUBzP_ekbWvk6xVikTuPbASgU,1229
362
+ diffusers/pipelines/hunyuan_video/__init__.py,sha256=2IhKqUmvwUZpkBWZI1HBbsq15U-_YEC3aSwiNDMogDE,1878
363
+ diffusers/pipelines/hunyuan_video/pipeline_hunyuan_skyreels_image2video.py,sha256=8Z7MjSkajuroRhVI4Vlno578R_eOuMRkxatgk2lR-VU,38826
364
+ diffusers/pipelines/hunyuan_video/pipeline_hunyuan_video.py,sha256=OseIyBQ_6LOpbD781Co1sbB5VKYgx5xHLL586oLRNaQ,35583
365
+ diffusers/pipelines/hunyuan_video/pipeline_hunyuan_video_framepack.py,sha256=MKjgjLDy9OEDN32vKWyfqZ7WlHObgpi3s_bpVVSLeG0,53966
366
+ diffusers/pipelines/hunyuan_video/pipeline_hunyuan_video_image2video.py,sha256=yzvQhYFGcHXa0sfP9sKxRCwN0HfsOjIgouK2qJWOF4w,46321
367
+ diffusers/pipelines/hunyuan_video/pipeline_output.py,sha256=xSreG3mREfUvF_dfDzWDLF2pSdqNiUp47whS-tVl7xI,1417
368
+ diffusers/pipelines/hunyuandit/__init__.py,sha256=Zby0yEsLNAoa4cf6W92QXIzyGoijI54xXRVhmrHGHsc,1302
369
+ diffusers/pipelines/hunyuandit/pipeline_hunyuandit.py,sha256=Rag59kh4-CYhoUhO3eB38c1ZLTKPaQqt-xdQpguQpCM,43442
370
+ diffusers/pipelines/i2vgen_xl/__init__.py,sha256=5Stj50A-AIJ1pPhilpDRx1PARMs_n8OKTDl64cq0LAY,1307
371
+ diffusers/pipelines/i2vgen_xl/pipeline_i2vgen_xl.py,sha256=Uhe3P_65v4M0CaoM5cRqO5PcHrYRH2c-uNNYWEHEQcY,37427
372
+ diffusers/pipelines/kandinsky/__init__.py,sha256=wrxuhSw_CunNhm7TdzA_fm__092mibGxp5_ep1boZmQ,2312
373
+ diffusers/pipelines/kandinsky/pipeline_kandinsky.py,sha256=9bjqUCjOFgsuFX38fzNTOHvLSQVXWLSUH8-2aVHPf1c,17913
374
+ diffusers/pipelines/kandinsky/pipeline_kandinsky_combined.py,sha256=vLWCvPd6Qpv3XNlvpm4t5bFCXaz1Pcz8CA9-hP_GvdA,39610
375
+ diffusers/pipelines/kandinsky/pipeline_kandinsky_img2img.py,sha256=Gbl8MhTC6cfifzDqS_sO0winbWbi3MfLx9oMOyr7r6Y,21920
376
+ diffusers/pipelines/kandinsky/pipeline_kandinsky_inpaint.py,sha256=7nepe82E_RqUAKaYY76hb8TONq70SKcEomsmKTNEYOE,28740
377
+ diffusers/pipelines/kandinsky/pipeline_kandinsky_prior.py,sha256=29gDoi2jh95jyubYbbY_7TDpYiQ3XzmSsrbLonOQhkE,24044
378
+ diffusers/pipelines/kandinsky/text_encoder.py,sha256=zDi1K-p-rPii0ZugI-83D75DR6AW36pkl8SvGBO77bA,1022
379
+ diffusers/pipelines/kandinsky2_2/__init__.py,sha256=WeV8KWoCLj6KTvJ-f3Do87IoX_dR_AZNylBz7_Iu87s,2796
380
+ diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2.py,sha256=Mk61oIckbX_h2Rz6jn93qR46vNPuNAvpKFdUFqz7zmg,14377
381
+ diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_combined.py,sha256=7BW9hMirrEn7QaYjukHgM3C1fKW1lMFOhXIW2URCoX0,44243
382
+ diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_controlnet.py,sha256=TZzib5OqmKlFuWemhCkMxJZubFXsONofoxXNlixqe3M,14342
383
+ diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_controlnet_img2img.py,sha256=nbhz22EZYB-S9Qt_srCwwywYSfLskGQOplcAaR8wQR0,16849
384
+ diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_img2img.py,sha256=9blo8FSUgj4SwVMLJK4YtNNpbphlNeJsNFjZcK85r6o,17167
385
+ diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_inpainting.py,sha256=ljn17ynhnbomb6nJFNJCWX81zhwq7fTkSgNA07D92Xc,25019
386
+ diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_prior.py,sha256=2mIAe7glGkd9aGMfTKjS5t4LV4StkcXYbwZ4uyD-BuA,25648
387
+ diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_prior_emb2emb.py,sha256=f3dL1Bqr8GZP9MV7Fvb8bWlMsfMo7W_clyeZ3agrSzk,25200
388
+ diffusers/pipelines/kandinsky3/__init__.py,sha256=7Mv8Ov-XstHMLmRQU7psdheFn_e_qXJWWTYV7z7uj4U,1461
389
+ diffusers/pipelines/kandinsky3/convert_kandinsky3_unet.py,sha256=FJ8psagvZtQHJupm0hgMUI2mto3IHEXjaoLDXip1LMA,3273
390
+ diffusers/pipelines/kandinsky3/pipeline_kandinsky3.py,sha256=l3_pd1OpfKe34n4HQrHKVqFNcBL3YN01PeW03-3yOqM,27789
391
+ diffusers/pipelines/kandinsky3/pipeline_kandinsky3_img2img.py,sha256=cqQnHdUl_nEr_HRNTFUZ3P4_tHA2i-9a6PF3TUW29_Q,30506
392
+ diffusers/pipelines/kolors/__init__.py,sha256=6Xp5M_K6PfByqqnK1HuMD9RKLkOZYekeNNqrGk4HToM,1791
393
+ diffusers/pipelines/kolors/pipeline_kolors.py,sha256=im6XM1e4I13kqVFT_KOZrKLYAQ4GGgDMo2H63XstZSo,56001
394
+ diffusers/pipelines/kolors/pipeline_kolors_img2img.py,sha256=CsA_xfEmCZbzgxB6hl1hOImhs0WQt5y9unkwJxXHrMM,65879
395
+ diffusers/pipelines/kolors/pipeline_output.py,sha256=1POR3PAcQ-ZtBgf8GOwjVI46TCjdtpXPsv1sdslBFA0,590
396
+ diffusers/pipelines/kolors/text_encoder.py,sha256=xpm-7Qv1gLUMTCdh5oQegPq7n1Yh56hbi4kmjlPpXD4,35059
397
+ diffusers/pipelines/kolors/tokenizer.py,sha256=TzqdOwu1gyi8KJ_tb8lAc7_5M6AdvhkvJW2LKOCcDrI,13428
398
+ diffusers/pipelines/latent_consistency_models/__init__.py,sha256=SfUylLTTBCs_wlGOPpW899lgE1E0GOLGu4GhDPFx-Ls,1560
399
+ diffusers/pipelines/latent_consistency_models/pipeline_latent_consistency_img2img.py,sha256=lDaK8Pg1pokNh97zhbPYavsF3HTsErdGntq-IW6xZO0,49548
400
+ diffusers/pipelines/latent_consistency_models/pipeline_latent_consistency_text2img.py,sha256=LzLz1Fkyz65EzxTRE3kFvT2-gXLoEG6Tb6gonb0S3tA,46056
401
+ diffusers/pipelines/latent_diffusion/__init__.py,sha256=iUkMRZY-pteRsvsROOz2Pacm7t02Q6QvbsgQedJt6-E,1542
402
+ diffusers/pipelines/latent_diffusion/pipeline_latent_diffusion.py,sha256=wDR9k8KbxUoKlvbzQ0UQ6bw_gF8An2YXtP0_-OGvq2w,32607
403
+ diffusers/pipelines/latent_diffusion/pipeline_latent_diffusion_superresolution.py,sha256=Z50tjLw7uJkngAZ-GHFd92iDT8gnyZBhDFzqTDbRnEg,8294
404
+ diffusers/pipelines/latte/__init__.py,sha256=1XMhkoAvpw2akbDmMTsKJbTU4PsR9H6boq4FEhCGbwo,1282
405
+ diffusers/pipelines/latte/pipeline_latte.py,sha256=71-fHckM7jLr84nVlFxZKAnIGN-xILcGCLNsrq-A4ho,42687
406
+ diffusers/pipelines/ledits_pp/__init__.py,sha256=3VaqGS1d39iC5flUifb4vAD_bDJ-sIUFaLIYhBuHbwE,1783
407
+ diffusers/pipelines/ledits_pp/pipeline_leditspp_stable_diffusion.py,sha256=vK7RFmkCw5tdrYbgW2JI3q3WB5hj6Pc2qUFj79Q8y1Y,77462
408
+ diffusers/pipelines/ledits_pp/pipeline_leditspp_stable_diffusion_xl.py,sha256=TgulOyUe1gjg_8jCutH1018qMqqTsnJAl9rNxlT_qiw,89461
409
+ diffusers/pipelines/ledits_pp/pipeline_output.py,sha256=xiAplyxGWB6uCHIdryai6UP7ghtFuXhES52ZYpO3k8A,1579
410
+ diffusers/pipelines/ltx/__init__.py,sha256=6STasTKI0b2ALlgCUi9GMmb_aScZzLWcfKKZxdHWOqo,1878
411
+ diffusers/pipelines/ltx/modeling_latent_upsampler.py,sha256=2Fj74GY82S8By8l2mHKq1DIGaYUZQzUSI3Nf_1s00rA,7482
412
+ diffusers/pipelines/ltx/pipeline_ltx.py,sha256=8LH738HOGbpoX0rrgPB4Pyxe7w7jZZJNJTNYbBqZ5a8,40965
413
+ diffusers/pipelines/ltx/pipeline_ltx_condition.py,sha256=GJR0nrji-wyFlodAfW4FOU_rlHpPFc24CxrjfnYXyeg,62433
414
+ diffusers/pipelines/ltx/pipeline_ltx_image2video.py,sha256=_-lE5wJYicbcs_D3dOMfnsURAtGKUpm1F3tge1JyMSM,45807
415
+ diffusers/pipelines/ltx/pipeline_ltx_latent_upsample.py,sha256=6g5DXLlkMm4U3V4aWjHsGvBpHeO96Y9FSMIrWYlQNJk,11813
416
+ diffusers/pipelines/ltx/pipeline_output.py,sha256=amPUfWP2XV5Qgb0BpfVIbC6L3vIHCMpTWdqgr5nfrvw,605
417
+ diffusers/pipelines/lumina/__init__.py,sha256=AzWsnxikODkQnCxliBN7eDi83TxcSihxfehfLYxRPD4,1336
418
+ diffusers/pipelines/lumina/pipeline_lumina.py,sha256=5LTTbsltMVJg83iMMEjwhstpw64b3QbJfcUjYj8RKWE,44964
419
+ diffusers/pipelines/lumina2/__init__.py,sha256=ZnlJglaTqtwptFJ0uelQ4MKg_p-Lxwzu7eQCd1CFxtc,1342
420
+ diffusers/pipelines/lumina2/pipeline_lumina2.py,sha256=iiuTXnVG1AsOl--0R2F73VX2EKUh82VDUW9NVwHFs7c,38521
421
+ diffusers/pipelines/marigold/__init__.py,sha256=kAs3DZB4oxiYHqLOq9kgAvBCYw3ptpiQKGr01hM2BDQ,1926
422
+ diffusers/pipelines/marigold/marigold_image_processing.py,sha256=veWoIY4QDBKp74-MWHjbrQwgPtD5dOECVPAiTUs2DDE,31409
423
+ diffusers/pipelines/marigold/pipeline_marigold_depth.py,sha256=IQqLiRvuSqFmwr37JlPEMaXZe0DVH8YeCm12MqvewO8,41201
424
+ diffusers/pipelines/marigold/pipeline_marigold_intrinsics.py,sha256=MADfO3Yzh30E5usYZSsf7EurYG3tIar01cy39chDsRY,35861
425
+ diffusers/pipelines/marigold/pipeline_marigold_normals.py,sha256=osc4gL7CVCH5IH530Vej6Q06EGSbDXTeaaAIJBh_oao,34791
426
+ diffusers/pipelines/mochi/__init__.py,sha256=8yDkp3YgOvbC4VhO4Tfin2myNxRlWiX1Mi8rY_UvAh4,1282
427
+ diffusers/pipelines/mochi/pipeline_mochi.py,sha256=CCITjIzarrhyGrPV8C4toGRYs1mt9Or2WdsKOU0XSZs,35691
428
+ diffusers/pipelines/mochi/pipeline_output.py,sha256=RyFrgJRzyCNzbHurysrFsN4wtZLdcax8wTarxhUq-50,609
429
+ diffusers/pipelines/musicldm/__init__.py,sha256=l1I5QzvTwMOOltJkcwpTb6nNcr93bWiP_ErHbDdwz6Y,1411
430
+ diffusers/pipelines/musicldm/pipeline_musicldm.py,sha256=h5Li1cDVFDi-lOwL5i_fPXy-BfuqfC9kkYXCMEiYK08,30670
431
+ diffusers/pipelines/omnigen/__init__.py,sha256=9596QBScCQfCbrybjkWJ7p0N4CnYB7W3hQJsNlGn3dU,1292
432
+ diffusers/pipelines/omnigen/pipeline_omnigen.py,sha256=h2-QMBcfcgYXhimDRIwwQ4Vt_dAGSXIVz4SBxxrLkaQ,23752
433
+ diffusers/pipelines/omnigen/processor_omnigen.py,sha256=iGzPTREszduXazqwAHBmXKfoB2bKPBLITwLsnOJ0Wek,14191
434
+ diffusers/pipelines/pag/__init__.py,sha256=pyv70bIvWZpMgXJgf8I8JH4OWzvdqJqfvxlFax9SzTg,3986
435
+ diffusers/pipelines/pag/pag_utils.py,sha256=FGN5B2UocvZW7Y_EKwm_0B4BToIzfo0qemoHLW9jPvo,10221
436
+ diffusers/pipelines/pag/pipeline_pag_controlnet_sd.py,sha256=DIkyn-6Q0F0cp9DHx84zTZ9bzkMWYATd-Rh_m3LEc30,68337
437
+ diffusers/pipelines/pag/pipeline_pag_controlnet_sd_inpaint.py,sha256=aFeuyLzqCZgT9EoVTEyfsHRQxT88Yab_25Hzi2k3024,79030
438
+ diffusers/pipelines/pag/pipeline_pag_controlnet_sd_xl.py,sha256=hs2zkLmgb5eOHM4O6wUXiDFSSLFWteXcyYsY9CxtfLI,83631
439
+ diffusers/pipelines/pag/pipeline_pag_controlnet_sd_xl_img2img.py,sha256=jxbc1AoLlYVSZHLp_bvyG68TYV185w0a5TvTpeRLbfU,88473
440
+ diffusers/pipelines/pag/pipeline_pag_hunyuandit.py,sha256=Sszu4cI7T9pUM2CXv35k0-sFs5ecDJX8qnZBwKqjsbA,46649
441
+ diffusers/pipelines/pag/pipeline_pag_kolors.py,sha256=G4ezp_hF7AF5LScEswyNAgt7ziU9XhwRQmfetD541ek,59694
442
+ diffusers/pipelines/pag/pipeline_pag_pixart_sigma.py,sha256=2DneQFcaXGRkurJvgmQ2jkvtI0zwzTcbPN4xj2d7Tv0,42103
443
+ diffusers/pipelines/pag/pipeline_pag_sana.py,sha256=aJzap_XDStpd0kSHLJF136lV7gnqxd3_BBtwPCIhyp0,45728
444
+ diffusers/pipelines/pag/pipeline_pag_sd.py,sha256=g2Fac2_uG1qGr0QzdGGLGPoYVR3rOX0J5BrnxT69OQI,55556
445
+ diffusers/pipelines/pag/pipeline_pag_sd_3.py,sha256=08LmpiuzuMZRzVWyIGiIHvq5Axpwa7UXw0sBq1hRTu4,49479
446
+ diffusers/pipelines/pag/pipeline_pag_sd_3_img2img.py,sha256=IFND8xNQbWG2jRxadoIkYdkAqPJHMPhC2z41ZgV-0Fc,53952
447
+ diffusers/pipelines/pag/pipeline_pag_sd_animatediff.py,sha256=GcDAKtLel_OAZ5eoXbSq_Q3iWTRk9SN05BFPFcTwvTQ,43567
448
+ diffusers/pipelines/pag/pipeline_pag_sd_img2img.py,sha256=7v9waEdxFItMC7iJOy3Ac1djLXe0lAgRE_SJ8TEM1hQ,57891
449
+ diffusers/pipelines/pag/pipeline_pag_sd_inpaint.py,sha256=XUjGF65RTE7bylt-mRKjzEng3oIbxC3xF20RBgf5pyo,69978
450
+ diffusers/pipelines/pag/pipeline_pag_sd_xl.py,sha256=gfgXXZw81JPMTgIvMPpw4Vwsf6IstEgXHchJHt-gyRA,70531
451
+ diffusers/pipelines/pag/pipeline_pag_sd_xl_img2img.py,sha256=Pps9YyXn-4QboB2nIqoXl9a--lrF5IN8zWt5IcZrGUo,81967
452
+ diffusers/pipelines/pag/pipeline_pag_sd_xl_inpaint.py,sha256=001uhtBD-1gykVLFeckJP2Sy1t8DxYcKemzlLut54cw,93720
453
+ diffusers/pipelines/paint_by_example/__init__.py,sha256=EL3EGhjCG7CMzwloJRauSDHc6oArjVsETUCj8mOauRs,1566
454
+ diffusers/pipelines/paint_by_example/image_encoder.py,sha256=NT3RadNaIVztZWGP628BDHpvaMRPZ-w3J3j096y3L9s,2484
455
+ diffusers/pipelines/paint_by_example/pipeline_paint_by_example.py,sha256=3PrO9c5yVuNajZ-fDmAJBxcMcCvQZB49YQLoQl3fJ8E,31344
456
+ diffusers/pipelines/pia/__init__.py,sha256=md5F8G279iZg4WGSmLP7N8apWkuHkfssjLQFzv6c2zI,1299
457
+ diffusers/pipelines/pia/pipeline_pia.py,sha256=TxnQBCeUWggseAABRyspi13LDs2zdyn1GbEOy7SJKlA,46525
458
+ diffusers/pipelines/pixart_alpha/__init__.py,sha256=QxcTJF9ryOIejEHQVw3bZAYHn2dah-WPT5pZudE8XxU,1595
459
+ diffusers/pipelines/pixart_alpha/pipeline_pixart_alpha.py,sha256=O7asSDGmb7lAHlneFFNlS2HCuA5u9RfA8trqnu5-8QY,45035
460
+ diffusers/pipelines/pixart_alpha/pipeline_pixart_sigma.py,sha256=V0zzovrP3DC-J7zVIC5oQEpKRlNx_M2M_xTw3M3UB9E,42610
461
+ diffusers/pipelines/qwenimage/__init__.py,sha256=0Bh0rr7S-9V3uA3fm0cZhpi1ASTuChOdTHlq2s2Rv-A,2044
462
+ diffusers/pipelines/qwenimage/pipeline_output.py,sha256=TbhkYg7Uq10TNp_mIDvm7imSEh8LK0hFpQ018gCVaYk,603
463
+ diffusers/pipelines/qwenimage/pipeline_qwenimage.py,sha256=Tqsf8Ax8SKRChYtr7wjL2936miNfp5oqfdUZA9K1xpE,34535
464
+ diffusers/pipelines/qwenimage/pipeline_qwenimage_edit.py,sha256=Z_poI8G1RLq_Jv6s-PHi_N1Rs3Scd5co9K7J-Q96enE,41536
465
+ diffusers/pipelines/qwenimage/pipeline_qwenimage_img2img.py,sha256=FMYy0J8vN_E7Hpcg0bXmvmotJuBiOU7TfwJPoN5185A,40812
466
+ diffusers/pipelines/qwenimage/pipeline_qwenimage_inpaint.py,sha256=wGbXWHnRfmtU0SEPV34y9CTSEpus1OVP7UNbItiBuBs,49677
467
+ diffusers/pipelines/sana/__init__.py,sha256=qkgbJxOAEH4gmyQ4FX4USnOd-PPEDkZGjZ3QO0ID0pA,1719
468
+ diffusers/pipelines/sana/pipeline_output.py,sha256=ErM82CTECCPbaLIpJsEzwl0r_hGNi29IbxKcsJ1mEMM,586
469
+ diffusers/pipelines/sana/pipeline_sana.py,sha256=Y7W4MXlppwU04EWCeE6tkRI31tAystB8mnGiYRdWZ1U,47262
470
+ diffusers/pipelines/sana/pipeline_sana_controlnet.py,sha256=SkMUSXUPVX-Md9mBqtwacqoPWB92ibART5CUE2IPAFo,51742
471
+ diffusers/pipelines/sana/pipeline_sana_sprint.py,sha256=xoLc8_MNB9i9GNlfMLkBeC8CSHOPClzHuDLi8UNJQow,41272
472
+ diffusers/pipelines/sana/pipeline_sana_sprint_img2img.py,sha256=X_PURGwytjQh5S_XRLQEqKE1zERVtHAFNITa775_qE8,45583
473
+ diffusers/pipelines/semantic_stable_diffusion/__init__.py,sha256=4jDvmgpXRVXGeSAcfGN90iQoJJBBRgE7NXzBE_8AYxM,1443
474
+ diffusers/pipelines/semantic_stable_diffusion/pipeline_output.py,sha256=YBxNQ2JiY3jYW-GB44nzNZxeADAswMQBJfnr2tBX0eY,822
475
+ diffusers/pipelines/semantic_stable_diffusion/pipeline_semantic_stable_diffusion.py,sha256=w3qDw26PbhhhPgankdSOnHIACBrrb-9_X5hM8mrmj1s,39024
476
+ diffusers/pipelines/shap_e/__init__.py,sha256=LGToZwsVeVBEsE5eveY0Hc2GgI6UgDz6H_6cB_Snn0Y,2093
477
+ diffusers/pipelines/shap_e/camera.py,sha256=oIKN8kcD6gqpeQWABRDfkdm3wW0MXFCZJSW_qdmUMLo,4942
478
+ diffusers/pipelines/shap_e/pipeline_shap_e.py,sha256=YG8TDX2t_2TVseeyS7Rotxorh2prpJsp8ol4ucUxM48,13398
479
+ diffusers/pipelines/shap_e/pipeline_shap_e_img2img.py,sha256=uCfAsOKkrI85NPR3X1lhfK_10D2IhfOVkDrUJBmxpps,13205
480
+ diffusers/pipelines/shap_e/renderer.py,sha256=Wx9GqWWLUmZjOIXdMgPKGyotodqyrdNzbKIkBrmY9ck,39153
481
+ diffusers/pipelines/skyreels_v2/__init__.py,sha256=kFPdII5Tf0XcyqwcbomlbZn7iHnoSFFM6GwLcBm_hQ4,2159
482
+ diffusers/pipelines/skyreels_v2/pipeline_output.py,sha256=77lDilL2Ozorg4mVku784Nbo2bPNSnD3ABnDNO_G1Qs,619
483
+ diffusers/pipelines/skyreels_v2/pipeline_skyreels_v2.py,sha256=FoI2u0eqSLPtcWpozndl92XB1FImBV34zGyBXYXZ2ew,27095
484
+ diffusers/pipelines/skyreels_v2/pipeline_skyreels_v2_diffusion_forcing.py,sha256=5eWoF4E5qvo-__9lmh4lzEgdzV4NH4-sguuCvx7WiyY,48174
485
+ diffusers/pipelines/skyreels_v2/pipeline_skyreels_v2_diffusion_forcing_i2v.py,sha256=Gj8ets0nc8pNUuWz9hPWn7B6dx9x1UG_knuGsqAVQo8,52504
486
+ diffusers/pipelines/skyreels_v2/pipeline_skyreels_v2_diffusion_forcing_v2v.py,sha256=C-eqaYwUq2hpKm4qTmZeA2ILDmQPS-nDk_idmTfbHXI,51976
487
+ diffusers/pipelines/skyreels_v2/pipeline_skyreels_v2_i2v.py,sha256=UoN3okxSq1yqGAcWXxo7nmZqzs0fnYu048gG7-_QknY,34383
488
+ diffusers/pipelines/stable_audio/__init__.py,sha256=R8Tuxx2LsaWWR0lncRJ0faKOmAdaQ0ilvftdBC_07Eo,1561
489
+ diffusers/pipelines/stable_audio/modeling_stable_audio.py,sha256=vakcN7KjC2PjVWoYbpZSiqW7Fnd63LpvgmYtmoXfSyE,6127
490
+ diffusers/pipelines/stable_audio/pipeline_stable_audio.py,sha256=aph9UJQsqVQs2EJzl2iu6jSY65Nk7TTen7sSd6FWij0,35613
491
+ diffusers/pipelines/stable_cascade/__init__.py,sha256=buKExLbA-qdePd19JSEF29AhOCIaDgqFfLajEmo-Kg4,1672
492
+ diffusers/pipelines/stable_cascade/pipeline_stable_cascade.py,sha256=xXRM34zQrVgayRBVKJrGA11hjU_2u-V-h5slnVcdh0c,26124
493
+ diffusers/pipelines/stable_cascade/pipeline_stable_cascade_combined.py,sha256=CcFI-qOl1VCXQPgbB196gqB12CAcMu23I7m5RjIRnm4,18130
494
+ diffusers/pipelines/stable_cascade/pipeline_stable_cascade_prior.py,sha256=fBpaAE1aPZhvq4EuEg-7Uq6khJLFTP3fYI-hPeIZOFY,31444
495
+ diffusers/pipelines/stable_diffusion/__init__.py,sha256=4DkYPvosNLHumc2wQcV10KkWsGRCRhcyeUogvraHSEM,8555
496
+ diffusers/pipelines/stable_diffusion/clip_image_project_model.py,sha256=9LPlAopNG-vpWhmh8i8pz7CHttqZ203-RnGlvy74xxY,1094
497
+ diffusers/pipelines/stable_diffusion/convert_from_ckpt.py,sha256=7AkKESPubz4W7bYqzGOK87gxsP_HZg5nX5VhRmoCPgg,81729
498
+ diffusers/pipelines/stable_diffusion/pipeline_flax_stable_diffusion.py,sha256=3SsX3YOJJbZ5El0cLf1jf-9M83ZMenIf7NXiaQA86ho,20756
499
+ diffusers/pipelines/stable_diffusion/pipeline_flax_stable_diffusion_img2img.py,sha256=G6V7Okambalqs8-Agpa0iREwSyc_9GZH5-iRhYP_No8,22554
500
+ diffusers/pipelines/stable_diffusion/pipeline_flax_stable_diffusion_inpaint.py,sha256=7F-z40HNgb0a6a_dV_T46nj6ZqSmBDSlsGMPClEPd7U,26130
501
+ diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion.py,sha256=OPd07D2kw71M_Vhc2x00lbRySVg-PkgWwVo5NFjmonM,24415
502
+ diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion_img2img.py,sha256=J-FbiSOueXBLk153qyUUgAcaAzVLHdHTzXwJIi7BPbc,28552
503
+ diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion_inpaint.py,sha256=RNQZgQpFtRvz8deh7lVKBy9LpPb-9k6aeyBWhiPmSpE,29158
504
+ diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion_upscale.py,sha256=KLf1yeCe3e5X3eiFiFMvhK9vQrb6FqglDss_JcBvgWc,27938
505
+ diffusers/pipelines/stable_diffusion/pipeline_output.py,sha256=Io-12AumvYjBOKP4Qq1BJ2rak5pKdtMO-ACcorY6hFE,1496
506
+ diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion.py,sha256=dGYgGQHmhmcWQ0Sp-1hZbZ0lPlJMmt2tOElO5rwffgg,55721
507
+ diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_depth2img.py,sha256=sO7DpfNobnuAal0kDM3mD3z2fe5GRlyTHG7u2x_rZIY,44509
508
+ diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_image_variation.py,sha256=XNLerrOA1__emc2DHlPt7-16pxJR_plP3usFH4_DVGQ,22720
509
+ diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_img2img.py,sha256=Th3gTxeKNQnAHjnPF2DgAB7dKHzLsWNZ6yoGw1XO094,59513
510
+ diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_inpaint.py,sha256=hHJegbumSJD5-Tf213dLcNFy0YY6UTKorL5Y8DuMqbQ,70158
511
+ diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_instruct_pix2pix.py,sha256=_vsAtsPHV40l1LFYPTD-uJRzaaj0_ACMu2Jb4fT-bFA,45826
512
+ diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_latent_upscale.py,sha256=jFgn7dOCcGRa_W8ALhRM2fTSq6umDxqTD5fX6LYRY6U,30985
513
+ diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_upscale.py,sha256=91cjNp53ErZtTQqltnHz6LDHtiOapmCXE_UIXc_6LQY,39757
514
+ diffusers/pipelines/stable_diffusion/pipeline_stable_unclip.py,sha256=-ga6Cxugyl9N1OlJiL5W2-BRAcapI0Us4G2XccZcEcU,45544
515
+ diffusers/pipelines/stable_diffusion/pipeline_stable_unclip_img2img.py,sha256=55kewO9zpxnTmcXrmqwoGDheiRXjSKEdZ5TpedeX3b4,40310
516
+ diffusers/pipelines/stable_diffusion/safety_checker.py,sha256=h3WwFCcuJpWxEebxwgiRs0x7t4-4u4ma0GtLOeERaLA,5759
517
+ diffusers/pipelines/stable_diffusion/safety_checker_flax.py,sha256=RhHxBbrcBrEosONc4uVlA9LgftN3WJv7wn_nV-nSDCk,4476
518
+ diffusers/pipelines/stable_diffusion/stable_unclip_image_normalizer.py,sha256=wgtRMD_dzwanDdbqHTqlc_Ro_1q51SnotP8uqyC7Yr8,1890
519
+ diffusers/pipelines/stable_diffusion_3/__init__.py,sha256=4JrcTgfij4mGbSSnCaHSqRRNhCUry8-HH3zQaUIq3DE,1922
520
+ diffusers/pipelines/stable_diffusion_3/pipeline_output.py,sha256=empNHoFAmdz6__yOCX2kuJqZtVdtoGAvVmH5mW42-3s,610
521
+ diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3.py,sha256=7QxYKoF6bbYU715AGWgw7Nq5JyJq4KPyPlafHgmSnYg,56862
522
+ diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3_img2img.py,sha256=HDuLdQDpuWnxvSBk_ATg5qcKjbyo7j2RbgkTmD3c-Bc,57765
523
+ diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3_inpaint.py,sha256=KvElHFo4l47wHmXx4GpK9EH-J-6PhNGqwMylnZB07FQ,69805
524
+ diffusers/pipelines/stable_diffusion_attend_and_excite/__init__.py,sha256=VpZ5FPx9ACTOT4qiEqun2QYeUtx9Rp0YVDwqhYe28QM,1390
525
+ diffusers/pipelines/stable_diffusion_attend_and_excite/pipeline_stable_diffusion_attend_and_excite.py,sha256=RckQAPyM_I7oqlwmA10pXjGG8Jg2vUTSRCAh5SxbRdg,51576
526
+ diffusers/pipelines/stable_diffusion_diffedit/__init__.py,sha256=JlcUNahRBm0uaPzappogqfjyLDsNW6IeyOfuLs4af5M,1358
527
+ diffusers/pipelines/stable_diffusion_diffedit/pipeline_stable_diffusion_diffedit.py,sha256=Eq_Wm1HEgtPR5wbLU7mKecM0qlta-nHY8jg_Q0zuTLk,78549
528
+ diffusers/pipelines/stable_diffusion_gligen/__init__.py,sha256=b4dZB5bUuZmEAcg7MmCyWZpyxNmMrlrByEQW_xwGGgI,1568
529
+ diffusers/pipelines/stable_diffusion_gligen/pipeline_stable_diffusion_gligen.py,sha256=8Z_67jeBdl2ZCrukTkxYkRW73NazIYUWWGJK5WpWZOY,43505
530
+ diffusers/pipelines/stable_diffusion_gligen/pipeline_stable_diffusion_gligen_text_image.py,sha256=QR2zoPiBxX_6lsfeYyBuiZNoXwrtXgkW0rTfuCOR8I0,52092
531
+ diffusers/pipelines/stable_diffusion_k_diffusion/__init__.py,sha256=EBpyQedEN-jfJ0qeLCFg9t28cFPNbNaniKIGM4ZMF14,1924
532
+ diffusers/pipelines/stable_diffusion_k_diffusion/pipeline_stable_diffusion_k_diffusion.py,sha256=b7pXB2GE2n7W-_he4RoUxiQyvU-JtuUdudhA_tBuv1k,34096
533
+ diffusers/pipelines/stable_diffusion_k_diffusion/pipeline_stable_diffusion_xl_k_diffusion.py,sha256=KYwMUrnxseg_O9fLme-wVBOoNYSekS8YYr6K2lIf2aU,45496
534
+ diffusers/pipelines/stable_diffusion_ldm3d/__init__.py,sha256=8p2npGKPPJbPaTa4swOWRMd24x36E563Bhc_mM29va0,1346
535
+ diffusers/pipelines/stable_diffusion_ldm3d/pipeline_stable_diffusion_ldm3d.py,sha256=vrIqC9I1bJvfv79G8SzuU2slJo3CXXmHzvSX9XMv-tE,51801
536
+ diffusers/pipelines/stable_diffusion_panorama/__init__.py,sha256=af52eZSYshuw1d6kqKwx0C5Teopkx8UpO9ph_A4WI0Q,1358
537
+ diffusers/pipelines/stable_diffusion_panorama/pipeline_stable_diffusion_panorama.py,sha256=l1SmYHbJE-Nz1Iq82WckJEAmeg5xXbwBjxztcsk4X2k,60262
538
+ diffusers/pipelines/stable_diffusion_safe/__init__.py,sha256=rRKtzOjuaHLDqSLSavcy2W8sEljso9MLhmEwrNiJFJ0,2751
539
+ diffusers/pipelines/stable_diffusion_safe/pipeline_output.py,sha256=WGQS6-k9dPH0hYBj_dZMlHFkOvUUti9fjVv0Sf8LCjQ,1459
540
+ diffusers/pipelines/stable_diffusion_safe/pipeline_stable_diffusion_safe.py,sha256=zTC3C_MaqPnEgJjAqoCqpPU14JkKBtGG95AD5PaDstU,39634
541
+ diffusers/pipelines/stable_diffusion_safe/safety_checker.py,sha256=Ewt9xIW9sKMGL0sbdjBgu4OhuzmjN_xqI87E6CwLBg0,5039
542
+ diffusers/pipelines/stable_diffusion_sag/__init__.py,sha256=06vnWbASiG3o4sQ7CDlDrqEm6dSCerKdLODz1FS-EFE,1338
543
+ diffusers/pipelines/stable_diffusion_sag/pipeline_stable_diffusion_sag.py,sha256=66XjcrcYb2AmD2jNsoqJ1fColkmBWBvSQeojNbGlUeg,48087
544
+ diffusers/pipelines/stable_diffusion_xl/__init__.py,sha256=6lTMI458kVDLzQDeZxEBacdFxpj4xAY9CSZ6Xr_FWoY,3022
545
+ diffusers/pipelines/stable_diffusion_xl/pipeline_flax_stable_diffusion_xl.py,sha256=dGnKmKC_XzmMre6JTtdeTbXEYlenI-7CBmnyULK2BME,11280
546
+ diffusers/pipelines/stable_diffusion_xl/pipeline_output.py,sha256=Isy1wE8hgoScXXHWVel5jRAzgPTelP-aZieugTOTgUc,1037
547
+ diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl.py,sha256=QgIJOG9PV7jVKgsneQRDGdbdFq0JZM_s6UPT36GgJ5I,67847
548
+ diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl_img2img.py,sha256=B6z9lXb432zNiY3aiwLvln2u8mXFULjQHlP5EuaYMaM,78850
549
+ diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl_inpaint.py,sha256=XqCUCWpzy2tEA3rpKjRK2TXjhCL87cO23-hqiTTPRKw,90574
550
+ diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl_instruct_pix2pix.py,sha256=NkET5qoCbXLJYVvOELEacOWYjzBk53JfvVepIrFhPtk,52910
551
+ diffusers/pipelines/stable_diffusion_xl/watermark.py,sha256=LDItvRnZKokIUchP0oIrO2Ew9AARhAP4MMrQY8maQ6Q,1458
552
+ diffusers/pipelines/stable_video_diffusion/__init__.py,sha256=QtcDxzfLJ7loCDspiulKyKU6kd-l3twJyWBDPraD_94,1551
553
+ diffusers/pipelines/stable_video_diffusion/pipeline_stable_video_diffusion.py,sha256=x6jEr8eURAGh55q6Iey1pIIhxbWEzxD0NQmzvY_Vd-k,32628
554
+ diffusers/pipelines/t2i_adapter/__init__.py,sha256=PgIg_SzwFAqWOML5BLHvuCTmu4p06MPT66xBpDShx8c,1556
555
+ diffusers/pipelines/t2i_adapter/pipeline_stable_diffusion_adapter.py,sha256=izK-JFnaVGq-hbOcPwJVaymM-MQVBJEJHRo-QcT1PiA,47764
556
+ diffusers/pipelines/t2i_adapter/pipeline_stable_diffusion_xl_adapter.py,sha256=qxnmqebGNnOutOPnQowpa8rmGUS-iJmQND4euuO4z9w,69409
557
+ diffusers/pipelines/text_to_video_synthesis/__init__.py,sha256=7-NplGtgnp5GUu4XN_STE9fqAtFCAc6FF3lphjbDBhs,1979
558
+ diffusers/pipelines/text_to_video_synthesis/pipeline_output.py,sha256=12i4JmK2TgksR46kwOSw02McNrV7qksA4MFAw6KB6_Q,735
559
+ diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_synth.py,sha256=GEH-FNE5tn-dTVB3yt91f_suYhtBzDnrfwEUHnxlvr4,31922
560
+ diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_synth_img2img.py,sha256=EcVA37GTRP5XWFFmKxoGQzW0BH7KLRkM_4uwB0r-EsM,35440
561
+ diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_zero.py,sha256=Y6oKIsoXcLxPOcmeCtZ-YNa7Jg7XX3DU1zocXDWGoIE,45882
562
+ diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_zero_sdxl.py,sha256=Z6hH40KmN_ZD8lMG7xqjW4MeGf1XVF-kyvzNnt7CaV4,64869
563
+ diffusers/pipelines/unclip/__init__.py,sha256=jBYZIN7NhTKM_Oq7ipJ4JaMXO-GtdchmFWe07gDerfA,1752
564
+ diffusers/pipelines/unclip/pipeline_unclip.py,sha256=yR6XocwNUDPzOknyGqq-OepEGMxTJEu9Y99fVN3attc,22445
565
+ diffusers/pipelines/unclip/pipeline_unclip_image_variation.py,sha256=08S5ysw2k0bw0gM3JKU_PEqWWvXcUUBraN02ejB1k7E,19347
566
+ diffusers/pipelines/unclip/text_proj.py,sha256=UkICP2P1vL8tVJr92A6gPFuqrjl03fAs-HiFFkZDvfU,4286
567
+ diffusers/pipelines/unidiffuser/__init__.py,sha256=GvGtf-AToJXNHxv3RAo5_I_9zPQjDFbMTAHICCt-4xY,1814
568
+ diffusers/pipelines/unidiffuser/modeling_text_decoder.py,sha256=pG_QeaB4gBm4sVBgR_LfH_o6Jz91zRqZHrO5ac6xn6o,14111
569
+ diffusers/pipelines/unidiffuser/modeling_uvit.py,sha256=To1JmzOZ1nIKTkHI0Df1qS3Z2ddVuEMECVEjqBhhT8M,54286
570
+ diffusers/pipelines/unidiffuser/pipeline_unidiffuser.py,sha256=7kc_9YFKE4TMoQDQYCZFrgbJc0kUJvxZfG5lAhn8dVo,68891
571
+ diffusers/pipelines/visualcloze/__init__.py,sha256=Cgc6UqhelXaUEYJbmEf_kGBY90hS3wx7eIiO1C5A0g4,1502
572
+ diffusers/pipelines/visualcloze/pipeline_visualcloze_combined.py,sha256=bTEZei9dyD81tk0NBsBFV5RyEv-658XQpVvMTZWONs8,23999
573
+ diffusers/pipelines/visualcloze/pipeline_visualcloze_generation.py,sha256=16iiLTqGAtUEYeLYQRoHpQyLxiq2dfsp4zUAiCNP5fA,45329
574
+ diffusers/pipelines/visualcloze/visualcloze_utils.py,sha256=4DPWGxtCkC51lPoQTMe3Xlv5Lx8RKo5Uoo6tnDAwr-Y,10864
575
+ diffusers/pipelines/wan/__init__.py,sha256=SOHLX5iUuab80gLF9ZYo54pzFWj0hiSoZU4hgWesuuQ,1677
576
+ diffusers/pipelines/wan/pipeline_output.py,sha256=EjM_BX0gQD1hQ78lbUM40OtvwPqTtncuQdvP5YMBjvE,605
577
+ diffusers/pipelines/wan/pipeline_wan.py,sha256=f_Jk-wjV1aoYUZGZqiT1m4REFfpwtlAzBojhqCTcPgw,30860
578
+ diffusers/pipelines/wan/pipeline_wan_i2v.py,sha256=kZeLAKxLjYK1hyUzuvCx2x1VKRcvMg1Beia6f1c0XHE,39605
579
+ diffusers/pipelines/wan/pipeline_wan_vace.py,sha256=zIi7mR0awzfP92IPP9_vJSDVyxoifEEku4iT1Y2zO4M,48300
580
+ diffusers/pipelines/wan/pipeline_wan_video2video.py,sha256=tHloW45GFTDBzE1fggRUZDPKqv2ZznT55-5yQ5jdKAE,33331
581
+ diffusers/pipelines/wuerstchen/__init__.py,sha256=JSCoPCwV_rBJiCy4jbILRoAgQSITS4-j77qOPmzy284,2100
582
+ diffusers/pipelines/wuerstchen/modeling_paella_vq_model.py,sha256=lmTIqLgXK7PXwZw3cGBHpEYn0oCZMtFSGsrGrXHkLTI,6925
583
+ diffusers/pipelines/wuerstchen/modeling_wuerstchen_common.py,sha256=mx0bj5b87g590UQhoFWY_L0ht_RTIynaPQa9DLk9MTU,2713
584
+ diffusers/pipelines/wuerstchen/modeling_wuerstchen_diffnext.py,sha256=-vKLdD7RkbDlUPpX8sgjKUTpbq7bwBdHP6y8L8kPwS0,10423
585
+ diffusers/pipelines/wuerstchen/modeling_wuerstchen_prior.py,sha256=VhlC4cLgRwe0r7Ng5vrJad9NwK_3BOFzcklNpvXzSrI,7335
586
+ diffusers/pipelines/wuerstchen/pipeline_wuerstchen.py,sha256=yujVa8eLz7_NHdbrqhPCg02gR0cz_soxAZQXCA0wHeM,20832
587
+ diffusers/pipelines/wuerstchen/pipeline_wuerstchen_combined.py,sha256=zP-zrPDO0_DMT0BRN_kjkiuw2O9eO0f3uOYfvnvGtyo,16686
588
+ diffusers/pipelines/wuerstchen/pipeline_wuerstchen_prior.py,sha256=d4iA2SSyMsLm6RhHCZliks58a2D55kLXuvB5nMAKPcg,24127
589
+ diffusers/quantizers/__init__.py,sha256=WRPgr_dguadpWwogTAFbdSFgr6ER-DwHtquZVPAONhY,744
590
+ diffusers/quantizers/auto.py,sha256=_rlfK4_5XQuP3Af0ArlPPWgq3E0_gwxv6z-nSQZTls8,5789
591
+ diffusers/quantizers/base.py,sha256=CJj86jYkY4U2X_R5AWeFJexr3yJBe1vpqHdLdZDb8R4,10337
592
+ diffusers/quantizers/pipe_quant_config.py,sha256=2Ob9sGUIOwFw9M_xaIFL3WfewLoWLRuNIT70YbHalM0,9284
593
+ diffusers/quantizers/quantization_config.py,sha256=vkZTAdtuV0vG0L_HOHURI-Qm91Deb__SEdmFPtvP2EE,32541
594
+ diffusers/quantizers/bitsandbytes/__init__.py,sha256=ILCM6ZopnzrhM_fW1oh4J_YCNsaEQAptcoTuSVgXab8,170
595
+ diffusers/quantizers/bitsandbytes/bnb_quantizer.py,sha256=hPg52A4NwlYqW1u5M0lhccXeW-sUGAHH0ipzdI7Etj0,26268
596
+ diffusers/quantizers/bitsandbytes/utils.py,sha256=48clXsL2q2NQ41n4dcCAhXsRNxyrkGgXYoJUUfHmHlY,13690
597
+ diffusers/quantizers/gguf/__init__.py,sha256=2bxvfZbFr4xqm953cZaGJMgSCRiGJAWwbwKxNRQIEs4,42
598
+ diffusers/quantizers/gguf/gguf_quantizer.py,sha256=AP6kUgk9bDh-gBuvLqWhUfaMgrpTF7O_VWEI6QDAfUM,6023
599
+ diffusers/quantizers/gguf/utils.py,sha256=kt-_efSo5tMFuKxzWxCJd28WacG6usGad1Z6n48nvZI,19870
600
+ diffusers/quantizers/quanto/__init__.py,sha256=ynS7j_VTG-QtimbyxHAaihUmi6eVqEDxA5dnKGjeS5M,46
601
+ diffusers/quantizers/quanto/quanto_quantizer.py,sha256=nB7c2FHGzZUseLaiwTBKLSUftmLO7kZSOJGvk5I4hGw,6336
602
+ diffusers/quantizers/quanto/utils.py,sha256=6-EaqWTbhb0dkuJ0C8XRDIpMmowPVjJ_C4rPaNNHMkc,2448
603
+ diffusers/quantizers/torchao/__init__.py,sha256=tJimVpSGQsz3owo3yzh2SuCg7NQfiMnrHkAHyYHkmGA,662
604
+ diffusers/quantizers/torchao/torchao_quantizer.py,sha256=wdMIJeG8iBV6vQ9ZFc-tyGztlLPESD5sUpN2Ep8QmF4,15629
605
+ diffusers/schedulers/__init__.py,sha256=HYxAaUCP3JSJXKm4FVJBGxqqwyqqgdDooE0YupPh7V4,11182
606
+ diffusers/schedulers/scheduling_amused.py,sha256=pioDeoYfXWP2CnAiI3-lczDdfSbkfXRC9m9REN_kmvI,6590
607
+ diffusers/schedulers/scheduling_consistency_decoder.py,sha256=IKNAkeVZIxTPk_hS6QBvFbkjv_h8yWbtU3FmIUSXKVI,6817
608
+ diffusers/schedulers/scheduling_consistency_models.py,sha256=wIgDb_44DIa8phTMn7WPyzAtoWVXRKSkyWLYLF1hI0Q,18699
609
+ diffusers/schedulers/scheduling_cosine_dpmsolver_multistep.py,sha256=JZgxQvw4BJHG2RCUe9wA9dwmjKZbJa9fuR0CJVZVu-w,24873
610
+ diffusers/schedulers/scheduling_ddim.py,sha256=a7PIMKeTepas2b_Du6ttdUBM7aAYnEI4mdA8nTTahZk,24919
611
+ diffusers/schedulers/scheduling_ddim_cogvideox.py,sha256=Fa4lj0jnQDms_cpr26bITHnnylU4HLrWpDQkmgqLDsE,21351
612
+ diffusers/schedulers/scheduling_ddim_flax.py,sha256=4w8-PFsXdvtfx7cE8HKwt50xBF5mR30am7BYIaYOIlY,13146
613
+ diffusers/schedulers/scheduling_ddim_inverse.py,sha256=PPEfEduk6yAHGtok30IfG2uAn_3kvHx0H3BvgpcYzr0,17792
614
+ diffusers/schedulers/scheduling_ddim_parallel.py,sha256=vPmnAxJvA_9Fq66rnzgkxr9hdzc1hDF41iryM51BS-E,31598
615
+ diffusers/schedulers/scheduling_ddpm.py,sha256=g9KnAlLfVxUN0uZRcUsLmwSe9MmjSuY_xUIzmr9im6g,26019
616
+ diffusers/schedulers/scheduling_ddpm_flax.py,sha256=IxYvg6SH17czD-N8zHdvuhGxpCI7JePypvJfOTQsLjk,12574
617
+ diffusers/schedulers/scheduling_ddpm_parallel.py,sha256=2yoo64zf6I0RIAJ9aPDpfnbk7qv9t5GEYuHlgXy_Sog,31041
618
+ diffusers/schedulers/scheduling_ddpm_wuerstchen.py,sha256=w7feuL53AY_363GyU1PWVGXfDHcyzJSbWOOtcXaJrAE,8938
619
+ diffusers/schedulers/scheduling_deis_multistep.py,sha256=Mgo5mSJKqyzyFsxqXF4oYbTuCG1HWKGQUpGafWK-OFM,40024
620
+ diffusers/schedulers/scheduling_dpm_cogvideox.py,sha256=QQ_3P5LLDrQvltlSuXYVkFl7AHSPXvlwBy_GnrJj2CA,23347
621
+ diffusers/schedulers/scheduling_dpmsolver_multistep.py,sha256=nlbQ2bARV-R-HgtTxwEnjyzSZg9vrazkiMh3M32Xceo,55638
622
+ diffusers/schedulers/scheduling_dpmsolver_multistep_flax.py,sha256=UEiHAqI4HWvItbfTqEy90pmDtrig51Owx3I-m66jwc8,28849
623
+ diffusers/schedulers/scheduling_dpmsolver_multistep_inverse.py,sha256=fSTExThSvMHA9nbNCq096KkXSGUkJwKeVMDsybvn860,48871
624
+ diffusers/schedulers/scheduling_dpmsolver_sde.py,sha256=MV6XfmTZhUyJed1uJv4S857Wxlz5gZrV1-R4MEdQDig,29491
625
+ diffusers/schedulers/scheduling_dpmsolver_singlestep.py,sha256=fw0nHyLiQX0Ad22j9KYCxodyhh4gVLjFZSSjnY3CpTk,54561
626
+ diffusers/schedulers/scheduling_edm_dpmsolver_multistep.py,sha256=0b8CYA_EQ0C2CL1AonsiyN6AC5hTBmUi0Venz9vFe90,31915
627
+ diffusers/schedulers/scheduling_edm_euler.py,sha256=lU2uJnAOgIyi2IEr5NI396G049J2Fejm30OpltCEru0,19500
628
+ diffusers/schedulers/scheduling_euler_ancestral_discrete.py,sha256=Z5Azbf97q3XIriLTXtPq92coqTUHHZ3gTST-2aRr5Vg,21098
629
+ diffusers/schedulers/scheduling_euler_discrete.py,sha256=gKhj6feeZ48ORwArAwwaWWmnU5As73MP6BAhkf7zKzY,34944
630
+ diffusers/schedulers/scheduling_euler_discrete_flax.py,sha256=UHWWpKBY-wC6wgXs8f0qMxp1LPH_VXNiTLRrK3vEXcU,10809
631
+ diffusers/schedulers/scheduling_flow_match_euler_discrete.py,sha256=CQ-0P0WfqFHl_w84bsyDThiCbZavW_3MVYKRjwP5Lac,23837
632
+ diffusers/schedulers/scheduling_flow_match_heun_discrete.py,sha256=Yv0bU0HKMhthpzEYULiZs-O8H1Hg934r7T17bgAh8-Y,12154
633
+ diffusers/schedulers/scheduling_flow_match_lcm.py,sha256=gxRWyVmy49gC8Gp7kfWhsnDkTQq6oHs3-4xYO5mpPJ0,23951
634
+ diffusers/schedulers/scheduling_heun_discrete.py,sha256=JkVoEF-vdtBweqjUs57o8JUA3K9uvGW_gHGY5f2tr_8,27708
635
+ diffusers/schedulers/scheduling_ipndm.py,sha256=Ev9x-4E5QnubgRjwLQQimMLXhpEV7NiffKK7RGYWF-c,8768
636
+ diffusers/schedulers/scheduling_k_dpm_2_ancestral_discrete.py,sha256=Zk9Q4-pIu0w0jSkpqPKuDA7UWQmCwN0uA5KYbCeSDr8,27593
637
+ diffusers/schedulers/scheduling_k_dpm_2_discrete.py,sha256=fE24rs9yyxtAR6LAPbtYtgEwYjmv2wG0l5EGWM55vOA,26140
638
+ diffusers/schedulers/scheduling_karras_ve_flax.py,sha256=HFO9Xjg4SBTRFe3e0UgtpDE5dAEHUWOxVA1R3avuXhQ,9630
639
+ diffusers/schedulers/scheduling_lcm.py,sha256=Wcul9ObZdS3JcT2DlW5P9x25AFZLbJYy6Pt4eYdIHx0,32010
640
+ diffusers/schedulers/scheduling_lms_discrete.py,sha256=YbnEAXPU4Rho1-BcMbaNJ0lk4m2dfZ5We1Ih0Cyyq_Y,24372
641
+ diffusers/schedulers/scheduling_lms_discrete_flax.py,sha256=JSeHrj700b-rrDqWpPOUREktzrKwb4S9sHYxUwtlBxc,11077
642
+ diffusers/schedulers/scheduling_pndm.py,sha256=n8P3-s6I6LKA6pU0yZfs6CoopFvArDerMdcSz12zA88,21731
643
+ diffusers/schedulers/scheduling_pndm_flax.py,sha256=o2EiaUcOeeoJKsj4uABXrs3QUH_MwrgQrXCihEXay7U,21555
644
+ diffusers/schedulers/scheduling_repaint.py,sha256=M1dddhIGRnQgnRPMxbOR1m2jgrsBkZo-fPpiSvKbT70,15762
645
+ diffusers/schedulers/scheduling_sasolver.py,sha256=7dYuwAbKLsbr0gjGLwwusqzEhM1eBLa770sC9mNFQMI,55116
646
+ diffusers/schedulers/scheduling_scm.py,sha256=XjQHUhxXPn3weIzWiALHrNXsAYB2IpbQMybYyxC0ZGY,11352
647
+ diffusers/schedulers/scheduling_sde_ve.py,sha256=_y-9IBk2yxbz1iwTKngBJipWSkiFrdk8ky9LDkLvYo4,13321
648
+ diffusers/schedulers/scheduling_sde_ve_flax.py,sha256=6flCFfSIiGpAwEZK_UhjKmWjzsIXOD5UAORrpkIAbgM,12142
649
+ diffusers/schedulers/scheduling_tcd.py,sha256=tiAvTdewr6CtMe2wn4z7_-iUDcVCvWdK27aiMxq5kJM,34749
650
+ diffusers/schedulers/scheduling_unclip.py,sha256=T7HJXANwbhVCo5FaFkvmEuUl6geBDuz-DxVm5s81Z7o,15056
651
+ diffusers/schedulers/scheduling_unipc_multistep.py,sha256=8NM10_P8tWpUvXHAJAFYbDtcGvuZc0Y9y4DBx3lQrSQ,47161
652
+ diffusers/schedulers/scheduling_utils.py,sha256=DnK4OertlJjh55gb6Ii9jnlEWMFHRF2uvZROrP8xDJU,8700
653
+ diffusers/schedulers/scheduling_utils_flax.py,sha256=zMIiPr4IpKuhEIwmVroaUyfLTWeMVRUQLQIDr5Vn5HM,12145
654
+ diffusers/schedulers/scheduling_vq_diffusion.py,sha256=xkYjAqC_dF5kfazvKnct6V0Rg19GdBe9Qq2AHlNYi2Y,22954
655
+ diffusers/schedulers/deprecated/__init__.py,sha256=3QlQ4gSBFu4zUkY3S5KLxd9sukbxLv8Aj4eO0Rymaq0,1349
656
+ diffusers/schedulers/deprecated/scheduling_karras_ve.py,sha256=CrJZjLD0QQ1mY_cE80aIDDMLzh9U6sn1iS2eEuCZFCc,9724
657
+ diffusers/schedulers/deprecated/scheduling_sde_vp.py,sha256=4TK-8FOzNWnvlSrFIaOjhPVdNk57zeTDQYjtBdDgr3k,4294
658
+ diffusers/utils/__init__.py,sha256=gDW4lZcfxdmdJn3Ggjiz9O5Pgh9G_KqoJd3elJMlbro,4885
659
+ diffusers/utils/accelerate_utils.py,sha256=ZkopOK29_6QrrdkIPidHnO078B8BtzzFSts3ul2cP8Q,1839
660
+ diffusers/utils/constants.py,sha256=w4ZB5GWKlzBD4Dt8Y2iLfD8g6We_Qdp94HHXlhgm45E,3616
661
+ diffusers/utils/deprecation_utils.py,sha256=WWegSa1ZBX2DNfFp-L2wQuKAyGqXsc275Eua0vw7Z8o,2103
662
+ diffusers/utils/doc_utils.py,sha256=3x-UhJrm7eNcJiQAYnYefoH7Q-V2qPmc04TzbEr25-o,1348
663
+ diffusers/utils/dummy_bitsandbytes_objects.py,sha256=7uoVirIvcuylaDyUas94Wc9AAKJMJS3GEv-in3bEqJA,527
664
+ diffusers/utils/dummy_flax_and_transformers_objects.py,sha256=XyiqnjacRb86sS9F_VwniBrLLEmff2cgJM2X4T_RAg4,2358
665
+ diffusers/utils/dummy_flax_objects.py,sha256=EIyO7jYPH4yjuBIxysZWE0rka3qPLEl1TmMBt5SwXNA,5316
666
+ diffusers/utils/dummy_gguf_objects.py,sha256=H0SYZuOON9cFlkyYSTcUJJk4skYjgjIu-wDausCm0sU,499
667
+ diffusers/utils/dummy_note_seq_objects.py,sha256=DffX40mDzWTMCyYhKudgIeBhtqTSpiSkVzcAMRue8dY,506
668
+ diffusers/utils/dummy_onnx_objects.py,sha256=4Z61m3P9NUwbebsK58wAKs6y32Id6UaiSRyeHXo3ecA,493
669
+ diffusers/utils/dummy_optimum_quanto_objects.py,sha256=_k-3g7WAYcJO0-38rJrHX7aIAzkkICtj2ISiggVFiz8,529
670
+ diffusers/utils/dummy_pt_objects.py,sha256=TFXNAssckoyrMZqxNeZ4hQZSKzR_lI_0BDjnGZiPK84,60656
671
+ diffusers/utils/dummy_torch_and_librosa_objects.py,sha256=JUfqU2n3tSKHyWbjSXrpdW_jr-YbMxAvAhLlPa2_Rxs,948
672
+ diffusers/utils/dummy_torch_and_scipy_objects.py,sha256=zOLdmqbtma5nakkdYgoErISV28yaztmBLI3wrC2Z_bU,537
673
+ diffusers/utils/dummy_torch_and_torchsde_objects.py,sha256=EJiExfXva8tnRJEn-VaCkcII31WnPr2HqdTh3PBQ-jk,985
674
+ diffusers/utils/dummy_torch_and_transformers_and_k_diffusion_objects.py,sha256=IMw6Qs9tTdRrMUXyM_Bc_BuJBvw0OVVHNZMOk3suF7g,1151
675
+ diffusers/utils/dummy_torch_and_transformers_and_onnx_objects.py,sha256=SiKni7YZ-pmZrurHU3-lhbDGKOGCCVxSK3GJbrARqgU,3023
676
+ diffusers/utils/dummy_torch_and_transformers_and_opencv_objects.py,sha256=Hvskt_HEoCkRikDyiYWQ95CsSv0fX7jYqxDxjJuNIZc,601
677
+ diffusers/utils/dummy_torch_and_transformers_and_sentencepiece_objects.py,sha256=rauUQkG4sLSyBVeEbfp5fhJFJUGqw273oXbN_KC8NIM,1637
678
+ diffusers/utils/dummy_torch_and_transformers_objects.py,sha256=hN67GPTfyf33pmkCr-3gNRbkWSqcPxp0PdCx5JSGHz8,97373
679
+ diffusers/utils/dummy_torchao_objects.py,sha256=XiJAoV11rr_7aSgkb0vgYkdZOGjM1ouTuQZ4YrXzJ4g,502
680
+ diffusers/utils/dummy_transformers_and_torch_and_note_seq_objects.py,sha256=z-JrPgPo2dWv-buMytUqBd6QqEx8Uha6M1cKa6gR4Dc,621
681
+ diffusers/utils/dynamic_modules_utils.py,sha256=4jaBiBdtjTyQ7kBQnU8LPqiQ2J-KNVh63OupxsdDdQw,23090
682
+ diffusers/utils/export_utils.py,sha256=YIleDkRb3-m7a2NryRlnvSXLBbjjpkEfR7U5z-cUdO4,7749
683
+ diffusers/utils/hub_utils.py,sha256=5dOVO3JSqIhuFHsylW0764nwGqTsykOSl51KvmbAias,24506
684
+ diffusers/utils/import_utils.py,sha256=kTYEYflkZ6vy7GCphDrlOs0c0vGd18Hp2zSoZt9aJuk,33552
685
+ diffusers/utils/loading_utils.py,sha256=6Qgm5vRGICI7daRewJOKGSBob4tGaoBOApAHhF5waPY,5300
686
+ diffusers/utils/logging.py,sha256=cFr8Bo_UydpL0NEeIwx7CHMUwyTWaFrZztY__nPfP3s,9470
687
+ diffusers/utils/model_card_template.md,sha256=ZhGhzjnMT2oPLbHnC0UYRNEpVC-okH-MLKjvkYsh-Ds,550
688
+ diffusers/utils/outputs.py,sha256=-bBcKV7uRT5nwB8QnqEN83yk4HhoJ9ToA729sFN3A9E,5030
689
+ diffusers/utils/peft_utils.py,sha256=UtEtf0M_me6mHzibna7LsYH5cwNQj90NMeMou231Hto,14271
690
+ diffusers/utils/pil_utils.py,sha256=mNv1FfHvtdW-lpOemxwe-dNoSfSF_sptgpYELP-bA20,1979
691
+ diffusers/utils/remote_utils.py,sha256=DHtS6_2ggX45YltaE9i_o5mb5gJd-VnGjr7UJ18wg2Q,16117
692
+ diffusers/utils/source_code_parsing_utils.py,sha256=Mk4KHfymwXHYmV2zZdVsDSn-VJ97HvUV6fGfYSuYn8g,1863
693
+ diffusers/utils/state_dict_utils.py,sha256=ygt17dCeHowH5QxwQldJHZpc0sS_E-aCuzpjKmAZ3HA,14470
694
+ diffusers/utils/testing_utils.py,sha256=LSFTPVApvPOK9EHJYmgrUSRXzyYuHXFmEWHzvgF-wfw,56324
695
+ diffusers/utils/torch_utils.py,sha256=ogvNvRfOryc5riP-Ph_nopGEsuZtmIszMIDPrkSgnAY,7775
696
+ diffusers/utils/typing_utils.py,sha256=yeuCJmb1t5n5rG1JRPJo33KO7tg_m9ZwSXQcPKiKyFA,3400
697
+ diffusers/utils/versions.py,sha256=-e7XW1TzZ-tsRo9PMQHp-hNGYHuVDFzLtwg3uAJzqdI,4333
698
+ diffusers-0.35.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
699
+ diffusers-0.35.0.dist-info/METADATA,sha256=OuiQ94khN0Tc_VWQTWZcD2rJilMltLaf6V5fQUevC0I,20120
700
+ diffusers-0.35.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
701
+ diffusers-0.35.0.dist-info/entry_points.txt,sha256=_1bvshKV_6_b63_FAkcUs9W6tUKGeIoQ3SHEZsovEWs,72
702
+ diffusers-0.35.0.dist-info/top_level.txt,sha256=axJl2884vMSvhzrFrSoht36QXA_6gZN9cKtg4xOO72o,10
703
+ diffusers-0.35.0.dist-info/RECORD,,