diffusers 0.28.0__py3-none-any.whl → 0.28.1__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 (30) hide show
  1. diffusers/__init__.py +9 -1
  2. diffusers/configuration_utils.py +17 -0
  3. diffusers/models/__init__.py +6 -0
  4. diffusers/models/activations.py +12 -0
  5. diffusers/models/attention_processor.py +108 -0
  6. diffusers/models/embeddings.py +216 -8
  7. diffusers/models/model_loading_utils.py +28 -0
  8. diffusers/models/modeling_outputs.py +14 -0
  9. diffusers/models/modeling_utils.py +57 -1
  10. diffusers/models/normalization.py +2 -1
  11. diffusers/models/transformers/__init__.py +3 -0
  12. diffusers/models/transformers/dit_transformer_2d.py +240 -0
  13. diffusers/models/transformers/hunyuan_transformer_2d.py +427 -0
  14. diffusers/models/transformers/pixart_transformer_2d.py +336 -0
  15. diffusers/models/transformers/transformer_2d.py +37 -45
  16. diffusers/pipelines/__init__.py +2 -0
  17. diffusers/pipelines/dit/pipeline_dit.py +4 -4
  18. diffusers/pipelines/hunyuandit/__init__.py +48 -0
  19. diffusers/pipelines/hunyuandit/pipeline_hunyuandit.py +881 -0
  20. diffusers/pipelines/pipeline_loading_utils.py +1 -0
  21. diffusers/pipelines/pixart_alpha/pipeline_pixart_alpha.py +4 -4
  22. diffusers/pipelines/pixart_alpha/pipeline_pixart_sigma.py +2 -2
  23. diffusers/utils/dummy_pt_objects.py +45 -0
  24. diffusers/utils/dummy_torch_and_transformers_objects.py +15 -0
  25. {diffusers-0.28.0.dist-info → diffusers-0.28.1.dist-info}/METADATA +44 -44
  26. {diffusers-0.28.0.dist-info → diffusers-0.28.1.dist-info}/RECORD +30 -25
  27. {diffusers-0.28.0.dist-info → diffusers-0.28.1.dist-info}/WHEEL +1 -1
  28. {diffusers-0.28.0.dist-info → diffusers-0.28.1.dist-info}/LICENSE +0 -0
  29. {diffusers-0.28.0.dist-info → diffusers-0.28.1.dist-info}/entry_points.txt +0 -0
  30. {diffusers-0.28.0.dist-info → diffusers-0.28.1.dist-info}/top_level.txt +0 -0
@@ -608,6 +608,7 @@ def load_sub_model(
608
608
  cached_folder: Union[str, os.PathLike],
609
609
  ):
610
610
  """Helper method to load the module `name` from `library_name` and `class_name`"""
611
+
611
612
  # retrieve class candidates
612
613
 
613
614
  class_obj, class_candidates = get_class_obj_and_candidates(
@@ -22,7 +22,7 @@ import torch
22
22
  from transformers import T5EncoderModel, T5Tokenizer
23
23
 
24
24
  from ...image_processor import PixArtImageProcessor
25
- from ...models import AutoencoderKL, Transformer2DModel
25
+ from ...models import AutoencoderKL, PixArtTransformer2DModel
26
26
  from ...schedulers import DPMSolverMultistepScheduler
27
27
  from ...utils import (
28
28
  BACKENDS_MAPPING,
@@ -246,8 +246,8 @@ class PixArtAlphaPipeline(DiffusionPipeline):
246
246
  tokenizer (`T5Tokenizer`):
247
247
  Tokenizer of class
248
248
  [T5Tokenizer](https://huggingface.co/docs/transformers/model_doc/t5#transformers.T5Tokenizer).
249
- transformer ([`Transformer2DModel`]):
250
- A text conditioned `Transformer2DModel` to denoise the encoded image latents.
249
+ transformer ([`PixArtTransformer2DModel`]):
250
+ A text conditioned `PixArtTransformer2DModel` to denoise the encoded image latents.
251
251
  scheduler ([`SchedulerMixin`]):
252
252
  A scheduler to be used in combination with `transformer` to denoise the encoded image latents.
253
253
  """
@@ -276,7 +276,7 @@ class PixArtAlphaPipeline(DiffusionPipeline):
276
276
  tokenizer: T5Tokenizer,
277
277
  text_encoder: T5EncoderModel,
278
278
  vae: AutoencoderKL,
279
- transformer: Transformer2DModel,
279
+ transformer: PixArtTransformer2DModel,
280
280
  scheduler: DPMSolverMultistepScheduler,
281
281
  ):
282
282
  super().__init__()
@@ -22,7 +22,7 @@ import torch
22
22
  from transformers import T5EncoderModel, T5Tokenizer
23
23
 
24
24
  from ...image_processor import PixArtImageProcessor
25
- from ...models import AutoencoderKL, Transformer2DModel
25
+ from ...models import AutoencoderKL, PixArtTransformer2DModel
26
26
  from ...schedulers import KarrasDiffusionSchedulers
27
27
  from ...utils import (
28
28
  BACKENDS_MAPPING,
@@ -202,7 +202,7 @@ class PixArtSigmaPipeline(DiffusionPipeline):
202
202
  tokenizer: T5Tokenizer,
203
203
  text_encoder: T5EncoderModel,
204
204
  vae: AutoencoderKL,
205
- transformer: Transformer2DModel,
205
+ transformer: PixArtTransformer2DModel,
206
206
  scheduler: KarrasDiffusionSchedulers,
207
207
  ):
208
208
  super().__init__()
@@ -107,6 +107,36 @@ class ControlNetXSAdapter(metaclass=DummyObject):
107
107
  requires_backends(cls, ["torch"])
108
108
 
109
109
 
110
+ class DiTTransformer2DModel(metaclass=DummyObject):
111
+ _backends = ["torch"]
112
+
113
+ def __init__(self, *args, **kwargs):
114
+ requires_backends(self, ["torch"])
115
+
116
+ @classmethod
117
+ def from_config(cls, *args, **kwargs):
118
+ requires_backends(cls, ["torch"])
119
+
120
+ @classmethod
121
+ def from_pretrained(cls, *args, **kwargs):
122
+ requires_backends(cls, ["torch"])
123
+
124
+
125
+ class HunyuanDiT2DModel(metaclass=DummyObject):
126
+ _backends = ["torch"]
127
+
128
+ def __init__(self, *args, **kwargs):
129
+ requires_backends(self, ["torch"])
130
+
131
+ @classmethod
132
+ def from_config(cls, *args, **kwargs):
133
+ requires_backends(cls, ["torch"])
134
+
135
+ @classmethod
136
+ def from_pretrained(cls, *args, **kwargs):
137
+ requires_backends(cls, ["torch"])
138
+
139
+
110
140
  class I2VGenXLUNet(metaclass=DummyObject):
111
141
  _backends = ["torch"]
112
142
 
@@ -182,6 +212,21 @@ class MultiAdapter(metaclass=DummyObject):
182
212
  requires_backends(cls, ["torch"])
183
213
 
184
214
 
215
+ class PixArtTransformer2DModel(metaclass=DummyObject):
216
+ _backends = ["torch"]
217
+
218
+ def __init__(self, *args, **kwargs):
219
+ requires_backends(self, ["torch"])
220
+
221
+ @classmethod
222
+ def from_config(cls, *args, **kwargs):
223
+ requires_backends(cls, ["torch"])
224
+
225
+ @classmethod
226
+ def from_pretrained(cls, *args, **kwargs):
227
+ requires_backends(cls, ["torch"])
228
+
229
+
185
230
  class PriorTransformer(metaclass=DummyObject):
186
231
  _backends = ["torch"]
187
232
 
@@ -212,6 +212,21 @@ class CycleDiffusionPipeline(metaclass=DummyObject):
212
212
  requires_backends(cls, ["torch", "transformers"])
213
213
 
214
214
 
215
+ class HunyuanDiTPipeline(metaclass=DummyObject):
216
+ _backends = ["torch", "transformers"]
217
+
218
+ def __init__(self, *args, **kwargs):
219
+ requires_backends(self, ["torch", "transformers"])
220
+
221
+ @classmethod
222
+ def from_config(cls, *args, **kwargs):
223
+ requires_backends(cls, ["torch", "transformers"])
224
+
225
+ @classmethod
226
+ def from_pretrained(cls, *args, **kwargs):
227
+ requires_backends(cls, ["torch", "transformers"])
228
+
229
+
215
230
  class I2VGenXLPipeline(metaclass=DummyObject):
216
231
  _backends = ["torch", "transformers"]
217
232
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: diffusers
3
- Version: 0.28.0
3
+ Version: 0.28.1
4
4
  Summary: State-of-the-art diffusion in PyTorch and JAX.
5
5
  Home-page: https://github.com/huggingface/diffusers
6
6
  Author: The Hugging Face team (past and future) with the help of all our contributors (https://github.com/huggingface/diffusers/graphs/contributors)
@@ -23,81 +23,81 @@ Description-Content-Type: text/markdown
23
23
  License-File: LICENSE
24
24
  Requires-Dist: importlib-metadata
25
25
  Requires-Dist: filelock
26
- Requires-Dist: huggingface-hub (>=0.20.2)
26
+ Requires-Dist: huggingface-hub >=0.20.2
27
27
  Requires-Dist: numpy
28
- Requires-Dist: regex (!=2019.12.17)
28
+ Requires-Dist: regex !=2019.12.17
29
29
  Requires-Dist: requests
30
- Requires-Dist: safetensors (>=0.3.1)
30
+ Requires-Dist: safetensors >=0.3.1
31
31
  Requires-Dist: Pillow
32
32
  Provides-Extra: dev
33
- Requires-Dist: urllib3 (<=2.0.0) ; extra == 'dev'
34
- Requires-Dist: isort (>=5.5.4) ; extra == 'dev'
35
- Requires-Dist: ruff (==0.1.5) ; extra == 'dev'
36
- Requires-Dist: hf-doc-builder (>=0.3.0) ; extra == 'dev'
37
- Requires-Dist: compel (==0.1.8) ; extra == 'dev'
38
- Requires-Dist: GitPython (<3.1.19) ; extra == 'dev'
33
+ Requires-Dist: urllib3 <=2.0.0 ; extra == 'dev'
34
+ Requires-Dist: isort >=5.5.4 ; extra == 'dev'
35
+ Requires-Dist: ruff ==0.1.5 ; extra == 'dev'
36
+ Requires-Dist: hf-doc-builder >=0.3.0 ; extra == 'dev'
37
+ Requires-Dist: compel ==0.1.8 ; extra == 'dev'
38
+ Requires-Dist: GitPython <3.1.19 ; extra == 'dev'
39
39
  Requires-Dist: datasets ; extra == 'dev'
40
40
  Requires-Dist: Jinja2 ; extra == 'dev'
41
- Requires-Dist: invisible-watermark (>=0.2.0) ; extra == 'dev'
42
- Requires-Dist: k-diffusion (>=0.0.12) ; extra == 'dev'
41
+ Requires-Dist: invisible-watermark >=0.2.0 ; extra == 'dev'
42
+ Requires-Dist: k-diffusion >=0.0.12 ; extra == 'dev'
43
43
  Requires-Dist: librosa ; extra == 'dev'
44
44
  Requires-Dist: parameterized ; extra == 'dev'
45
45
  Requires-Dist: pytest ; extra == 'dev'
46
46
  Requires-Dist: pytest-timeout ; extra == 'dev'
47
47
  Requires-Dist: pytest-xdist ; extra == 'dev'
48
- Requires-Dist: requests-mock (==1.10.0) ; extra == 'dev'
49
- Requires-Dist: safetensors (>=0.3.1) ; extra == 'dev'
50
- Requires-Dist: sentencepiece (!=0.1.92,>=0.1.91) ; extra == 'dev'
48
+ Requires-Dist: requests-mock ==1.10.0 ; extra == 'dev'
49
+ Requires-Dist: safetensors >=0.3.1 ; extra == 'dev'
50
+ Requires-Dist: sentencepiece !=0.1.92,>=0.1.91 ; extra == 'dev'
51
51
  Requires-Dist: scipy ; extra == 'dev'
52
52
  Requires-Dist: torchvision ; extra == 'dev'
53
- Requires-Dist: transformers (>=4.25.1) ; extra == 'dev'
54
- Requires-Dist: accelerate (>=0.29.3) ; extra == 'dev'
55
- Requires-Dist: protobuf (<4,>=3.20.3) ; extra == 'dev'
53
+ Requires-Dist: transformers >=4.25.1 ; extra == 'dev'
54
+ Requires-Dist: accelerate >=0.29.3 ; extra == 'dev'
55
+ Requires-Dist: protobuf <4,>=3.20.3 ; extra == 'dev'
56
56
  Requires-Dist: tensorboard ; extra == 'dev'
57
- Requires-Dist: peft (>=0.6.0) ; extra == 'dev'
58
- Requires-Dist: torch (>=1.4) ; extra == 'dev'
59
- Requires-Dist: jax (>=0.4.1) ; extra == 'dev'
60
- Requires-Dist: jaxlib (>=0.4.1) ; extra == 'dev'
61
- Requires-Dist: flax (>=0.4.1) ; extra == 'dev'
57
+ Requires-Dist: peft >=0.6.0 ; extra == 'dev'
58
+ Requires-Dist: torch >=1.4 ; extra == 'dev'
59
+ Requires-Dist: jax >=0.4.1 ; extra == 'dev'
60
+ Requires-Dist: jaxlib >=0.4.1 ; extra == 'dev'
61
+ Requires-Dist: flax >=0.4.1 ; extra == 'dev'
62
62
  Provides-Extra: docs
63
- Requires-Dist: hf-doc-builder (>=0.3.0) ; extra == 'docs'
63
+ Requires-Dist: hf-doc-builder >=0.3.0 ; extra == 'docs'
64
64
  Provides-Extra: flax
65
- Requires-Dist: jax (>=0.4.1) ; extra == 'flax'
66
- Requires-Dist: jaxlib (>=0.4.1) ; extra == 'flax'
67
- Requires-Dist: flax (>=0.4.1) ; extra == 'flax'
65
+ Requires-Dist: jax >=0.4.1 ; extra == 'flax'
66
+ Requires-Dist: jaxlib >=0.4.1 ; extra == 'flax'
67
+ Requires-Dist: flax >=0.4.1 ; extra == 'flax'
68
68
  Provides-Extra: quality
69
- Requires-Dist: urllib3 (<=2.0.0) ; extra == 'quality'
70
- Requires-Dist: isort (>=5.5.4) ; extra == 'quality'
71
- Requires-Dist: ruff (==0.1.5) ; extra == 'quality'
72
- Requires-Dist: hf-doc-builder (>=0.3.0) ; extra == 'quality'
69
+ Requires-Dist: urllib3 <=2.0.0 ; extra == 'quality'
70
+ Requires-Dist: isort >=5.5.4 ; extra == 'quality'
71
+ Requires-Dist: ruff ==0.1.5 ; extra == 'quality'
72
+ Requires-Dist: hf-doc-builder >=0.3.0 ; extra == 'quality'
73
73
  Provides-Extra: test
74
- Requires-Dist: compel (==0.1.8) ; extra == 'test'
75
- Requires-Dist: GitPython (<3.1.19) ; extra == 'test'
74
+ Requires-Dist: compel ==0.1.8 ; extra == 'test'
75
+ Requires-Dist: GitPython <3.1.19 ; extra == 'test'
76
76
  Requires-Dist: datasets ; extra == 'test'
77
77
  Requires-Dist: Jinja2 ; extra == 'test'
78
- Requires-Dist: invisible-watermark (>=0.2.0) ; extra == 'test'
79
- Requires-Dist: k-diffusion (>=0.0.12) ; extra == 'test'
78
+ Requires-Dist: invisible-watermark >=0.2.0 ; extra == 'test'
79
+ Requires-Dist: k-diffusion >=0.0.12 ; extra == 'test'
80
80
  Requires-Dist: librosa ; extra == 'test'
81
81
  Requires-Dist: parameterized ; extra == 'test'
82
82
  Requires-Dist: pytest ; extra == 'test'
83
83
  Requires-Dist: pytest-timeout ; extra == 'test'
84
84
  Requires-Dist: pytest-xdist ; extra == 'test'
85
- Requires-Dist: requests-mock (==1.10.0) ; extra == 'test'
86
- Requires-Dist: safetensors (>=0.3.1) ; extra == 'test'
87
- Requires-Dist: sentencepiece (!=0.1.92,>=0.1.91) ; extra == 'test'
85
+ Requires-Dist: requests-mock ==1.10.0 ; extra == 'test'
86
+ Requires-Dist: safetensors >=0.3.1 ; extra == 'test'
87
+ Requires-Dist: sentencepiece !=0.1.92,>=0.1.91 ; extra == 'test'
88
88
  Requires-Dist: scipy ; extra == 'test'
89
89
  Requires-Dist: torchvision ; extra == 'test'
90
- Requires-Dist: transformers (>=4.25.1) ; extra == 'test'
90
+ Requires-Dist: transformers >=4.25.1 ; extra == 'test'
91
91
  Provides-Extra: torch
92
- Requires-Dist: torch (>=1.4) ; extra == 'torch'
93
- Requires-Dist: accelerate (>=0.29.3) ; extra == 'torch'
92
+ Requires-Dist: torch >=1.4 ; extra == 'torch'
93
+ Requires-Dist: accelerate >=0.29.3 ; extra == 'torch'
94
94
  Provides-Extra: training
95
- Requires-Dist: accelerate (>=0.29.3) ; extra == 'training'
95
+ Requires-Dist: accelerate >=0.29.3 ; extra == 'training'
96
96
  Requires-Dist: datasets ; extra == 'training'
97
- Requires-Dist: protobuf (<4,>=3.20.3) ; extra == 'training'
97
+ Requires-Dist: protobuf <4,>=3.20.3 ; extra == 'training'
98
98
  Requires-Dist: tensorboard ; extra == 'training'
99
99
  Requires-Dist: Jinja2 ; extra == 'training'
100
- Requires-Dist: peft (>=0.6.0) ; extra == 'training'
100
+ Requires-Dist: peft >=0.6.0 ; extra == 'training'
101
101
 
102
102
  <!---
103
103
  Copyright 2022 - The HuggingFace Team. All rights reserved.
@@ -1,6 +1,6 @@
1
- diffusers/__init__.py,sha256=i_M4Av67Egj89w7-aBKxiw_oRQ0Gb1hsW2p5RadcHBY,29351
1
+ diffusers/__init__.py,sha256=tHJ29lILc0e3pYoxSCWRMtvtqijdDqcPynmxFgIhEoc,29631
2
2
  diffusers/callbacks.py,sha256=m8ariuJC-WaPHMZn1zUyXG8hlAvaOvEW_6YWdKo--eo,6717
3
- diffusers/configuration_utils.py,sha256=xySpPr9pGhS6pjaPhH7ERSj5488a9iB8t68KK1x02XI,32106
3
+ diffusers/configuration_utils.py,sha256=6t5iVg-yYJKV7ZZKpXnwYMK1FcJ3X09KBKoInsDy27s,32779
4
4
  diffusers/dependency_versions_check.py,sha256=J_ZAEhVN6uLWAOUZCJrcGJ7PYxUek4f_nwGTFM7LTk8,1271
5
5
  diffusers/dependency_versions_table.py,sha256=-2tAkcFxpVdufD-grKlnHgC0a1jSmNW3JCBC9wwcfgY,1507
6
6
  diffusers/image_processor.py,sha256=pQYdxRJ7d5DFhtPp2An8OpZYabOBQVzVrz1gbzVQ7QM,45242
@@ -29,27 +29,27 @@ diffusers/loaders/textual_inversion.py,sha256=HU8-1SR03UpkQXEQlhJBB0Gxbnlf7njXRh
29
29
  diffusers/loaders/unet.py,sha256=k3lmHdBemk28uP9UAQ4VPzan6m7Z4PPrVKf3dqoLm7k,49818
30
30
  diffusers/loaders/unet_loader_utils.py,sha256=9IHd_RlKqMstSO8G7btUdL1-Y3-fGX7Kbc4frEbRVVM,6220
31
31
  diffusers/loaders/utils.py,sha256=IgI-rwNZ-xRx_jIgp61xHkeLAvqm3FSpJ674s5LzE_k,2423
32
- diffusers/models/__init__.py,sha256=fAeRHbV8412jkf7mKsmrQo8rn3WXr0_OkC1w5y2WNSI,4475
33
- diffusers/models/activations.py,sha256=s4Gogo-pTRJgDk4c1LJuulRmQ6FKLo5OvgA2yFe_3gQ,4852
32
+ diffusers/models/__init__.py,sha256=bW4lG797uJd3gqFLrrO8MNEBh150O5rJm0N2Md3g8hE,4840
33
+ diffusers/models/activations.py,sha256=7gly0cF1lZ7wX_p0w7bk4ja8EAjcqDYnAURQ4-s-f0M,5149
34
34
  diffusers/models/adapter.py,sha256=XuVoUbhLkPEOeClqYiTm8KGMQrXgn2WZU3I73-jkcew,24723
35
35
  diffusers/models/attention.py,sha256=JJeh45SJiWLIl2uwcOm68DKhBR5iJ8TI3-DOMf2t5AU,27889
36
36
  diffusers/models/attention_flax.py,sha256=Ju2KJCqsx_LIiz0i1pBcek7RMKTmVOIF4SvEcOqgJ1c,20250
37
- diffusers/models/attention_processor.py,sha256=tQuCXX-Sim_dclMDsnH20LWk9FeWHQlJQQb-R7ip5ek,118459
37
+ diffusers/models/attention_processor.py,sha256=dlOUGV7PhNBqSI36i0eR2HrIGbJCUhEs-zd-NEYnILQ,122743
38
38
  diffusers/models/controlnet.py,sha256=64prFwCNWkvQTUS94N-YkIZoTdUpSlpBdU4vYeOp9no,43276
39
39
  diffusers/models/controlnet_flax.py,sha256=_UuB-tNxQ9eR8v3dqDhF2Mz-6thIdEI6BlY8BpWpkvU,16710
40
40
  diffusers/models/controlnet_xs.py,sha256=OsZAAmlHuc2vxdwOTr73dWqJGVE2oRcCDizvkq6Lgcg,85281
41
41
  diffusers/models/downsampling.py,sha256=INecPKokYAm-z_l5n9r1cE3a2g1f8OtmBqLOZQBjp2w,12372
42
42
  diffusers/models/dual_transformer_2d.py,sha256=kcyBXJB16ge1TVuBHeCb_vySJInCDn_7X304ztGT5vI,1105
43
- diffusers/models/embeddings.py,sha256=gA5FLQbs5XvyeBiFFt7hAkt502W5KjBKDjaFtZJP2Rs,39235
43
+ diffusers/models/embeddings.py,sha256=bHQAMfQ5x79CflxHaHljWqjP_XkDVAjUdd8aNX1HODg,48317
44
44
  diffusers/models/embeddings_flax.py,sha256=hNN63qtv9Ht6VEeidrIJdrdKWm0o8mumcgzxMNaR2H0,3445
45
45
  diffusers/models/lora.py,sha256=7LbI7bj8yk9GptoOnOLrhzarFcVSQX47LuGoZ1MBK0A,18829
46
- diffusers/models/model_loading_utils.py,sha256=Vc-jxxG-QIMPaU3FoMyAGr6Gy1Txxct49CRDaaAVrAE,5906
46
+ diffusers/models/model_loading_utils.py,sha256=EuFLIZfH1r5zHINTPXWhlJhDlFiRFEcv-HPOeFS2dg0,7024
47
47
  diffusers/models/modeling_flax_pytorch_utils.py,sha256=h8KonTFgb_-4RnESXhJGeuW_buCIQ_cbS9xptt8G2i8,5332
48
48
  diffusers/models/modeling_flax_utils.py,sha256=HL6sB4vubPny4COMuKbuGrcznoOfxrxS9BrLdKF4FSs,27295
49
- diffusers/models/modeling_outputs.py,sha256=pjdW58fxG90QoXZgxHy9oeaKeW6gyAFhTnY7neLHtfY,512
49
+ diffusers/models/modeling_outputs.py,sha256=XH3sJO34MRW6UuWqqKo05mVqxGSBFRazpap_-YLwO2I,1042
50
50
  diffusers/models/modeling_pytorch_flax_utils.py,sha256=sEf_jVR2nF0_derGLAOKIfSUc7HWNLM61RTXDLGoE7A,6973
51
- diffusers/models/modeling_utils.py,sha256=0yVPDQjjn9T6oWmGpSR9xvXMEGdYE-4KoubJtCA40_g,48959
52
- diffusers/models/normalization.py,sha256=u_kJqs_MTuXovGvSoBQ1SJvj6QY2rrHXG9ZVktsF17g,9508
51
+ diffusers/models/modeling_utils.py,sha256=oMDds4p6SNNJmEFpPQnXSDzhLX1rShfc937-pgzNC3c,50855
52
+ diffusers/models/normalization.py,sha256=a1Gdf3YJFzOAVWtNIM5qTMf8ai8pxWSjbuE_2eUzQ9c,9646
53
53
  diffusers/models/prior_transformer.py,sha256=oihNB0R9OM2WGvPMLvDbUE3M--bcsJ6B_JwM6dOqCeo,877
54
54
  diffusers/models/resnet.py,sha256=ML9EdypGYniSay_EsyswuTlmGi7429WJhYqIW7VEBoQ,32241
55
55
  diffusers/models/resnet_flax.py,sha256=tqRZQCZIq7NlXex3eGldyhRpZjr_EXWl1l2eVflFV7c,4021
@@ -71,11 +71,14 @@ diffusers/models/autoencoders/autoencoder_kl_temporal_decoder.py,sha256=_JLLwuaS
71
71
  diffusers/models/autoencoders/autoencoder_tiny.py,sha256=dZQT85kvd38wVzUi-bQH0Gz0wbxwhBMiDg35z3uvTwk,15957
72
72
  diffusers/models/autoencoders/consistency_decoder_vae.py,sha256=eSXHRKWOO4xl5VcDpzVljdiljjLtahQD37mkx8Ku2GE,19670
73
73
  diffusers/models/autoencoders/vae.py,sha256=Xzj7pt2H2D5AnILpzjwCyx29B70RqK-muZZBdafE6ZE,36545
74
- diffusers/models/transformers/__init__.py,sha256=tdzJmrQQY8uCOSepCUQSaU81tB6OfLRVgKX4MRrkbrg,344
74
+ diffusers/models/transformers/__init__.py,sha256=caEgf46v5Coo51MzIIc3aXxwvo7n8QMXiNObQ_kgaRA,524
75
+ diffusers/models/transformers/dit_transformer_2d.py,sha256=o3MT0w2m4BrdGp0KUonm9QqhVpNVzYzRyKuuPnH02Nc,11158
75
76
  diffusers/models/transformers/dual_transformer_2d.py,sha256=RxwHmLqzG4PLytCogrPUPmANQFe3rVGZXq0GWRsgtfA,7655
77
+ diffusers/models/transformers/hunyuan_transformer_2d.py,sha256=RwRuXNqxtha0LEpW0anC39Fr5UeR5WNFEVrvNIniJIU,17169
78
+ diffusers/models/transformers/pixart_transformer_2d.py,sha256=B4Z1HYKKjvo9cOv2n231w30R-RZIApYoPWBkzskdPhc,16947
76
79
  diffusers/models/transformers/prior_transformer.py,sha256=b0qQucaFG6IKJIZwjZ79sTuuBq_CBdA3soLZjSLHEmI,17313
77
80
  diffusers/models/transformers/t5_film_transformer.py,sha256=rem0WHICvYntqtjGtlBqNFVn40BocnMmeH26rY8650s,16024
78
- diffusers/models/transformers/transformer_2d.py,sha256=BeGllSBPs0FSNXb4jVDMhjY8NrLAfK24EechbqZCdPw,28938
81
+ diffusers/models/transformers/transformer_2d.py,sha256=iyGB99H7xC7LGbAbNx9vzP7hBbwK_sQy1Li-u059MdA,28849
79
82
  diffusers/models/transformers/transformer_temporal.py,sha256=Dy1sIOx0vrT2sgTfaoKA_tdVfr_tioUqxktv2S4fxhc,16818
80
83
  diffusers/models/unets/__init__.py,sha256=srYFA7zEcDY7LxyUB2jz3TdRgsLz8elrWCpT6Y4YXuU,695
81
84
  diffusers/models/unets/unet_1d.py,sha256=Yj4XN7jU1Gmu39T8D3zqLCm5TT8SxXMF-wDu-lZM1fo,10769
@@ -93,12 +96,12 @@ diffusers/models/unets/unet_motion_model.py,sha256=59KQEkvJtq-L4ef_gwMmeRQHLztta
93
96
  diffusers/models/unets/unet_spatio_temporal_condition.py,sha256=llCTT0ZzQvT-vz-y5nC4CmB2eslGPRzN2_e96bMJIbM,22081
94
97
  diffusers/models/unets/unet_stable_cascade.py,sha256=JDKRKPrlWiWaDy283R0inv6NpIwmpMLoxs_lR42xx48,28390
95
98
  diffusers/models/unets/uvit_2d.py,sha256=ScLWI09Wref-vU25gWYao4DojlfGxMRz7cmCQUKV01A,17338
96
- diffusers/pipelines/__init__.py,sha256=mmZIxTXgC6DrxIzhQA0rIDbx2Z11axwinCXNOmD1k24,23021
99
+ diffusers/pipelines/__init__.py,sha256=fF-74zCxqzEY2HGlIKiOj_Ry_xrALyiOD-yT9TDsRUM,23133
97
100
  diffusers/pipelines/auto_pipeline.py,sha256=IhT3Uz4TIl0zukS859Q3uFMldC7nQ9ipbuY5zYXxgJs,50299
98
101
  diffusers/pipelines/free_init_utils.py,sha256=LJ4c3eaozTR6u5otrdbbR-rtscOfRluZptp1O1zam_s,7654
99
102
  diffusers/pipelines/onnx_utils.py,sha256=6TK_wddhFsKqPejOrAHL-cavB45j30Sd8bMOfJGprms,8329
100
103
  diffusers/pipelines/pipeline_flax_utils.py,sha256=u71buhRtMaa60F8rniPq4GAMxfbYnI1ce49Grb6aemw,27406
101
- diffusers/pipelines/pipeline_loading_utils.py,sha256=xdGjshOuF4HA6Rrm-IH6NeO9n6pN8tZyQ6ZIzDEiK6w,29652
104
+ diffusers/pipelines/pipeline_loading_utils.py,sha256=mhSwRPo5WUhng7Ss5k5fRuBsUH7jD4aiWP5m-itLeb0,29653
102
105
  diffusers/pipelines/pipeline_utils.py,sha256=NB2nxFfrG30-28gHNJkwLc6EYGUY3k9lajJeXz0sCXM,98337
103
106
  diffusers/pipelines/amused/__init__.py,sha256=pzqLeLosNQ29prMLhTxvPpmoIDPB3OFMQMlErOIRkmI,1793
104
107
  diffusers/pipelines/amused/pipeline_amused.py,sha256=g9A_xetAmk9B23db-IBHMTnuuMhGtnv2BzgX8PZ53Yc,15624
@@ -191,7 +194,9 @@ diffusers/pipelines/deprecated/versatile_diffusion/pipeline_versatile_diffusion_
191
194
  diffusers/pipelines/deprecated/vq_diffusion/__init__.py,sha256=CD0X20a3_61pBaOzDxgU_33PLjxN1W8V46TCAwykUgE,1650
192
195
  diffusers/pipelines/deprecated/vq_diffusion/pipeline_vq_diffusion.py,sha256=YSYuhvOvhFEC1m0YShnLYO2hIoGBHNN_LhhXg928Pr8,15444
193
196
  diffusers/pipelines/dit/__init__.py,sha256=w6yUFMbGzaUGPKpLfEfvHlYmrKD0UErczwsHDaDtLuQ,408
194
- diffusers/pipelines/dit/pipeline_dit.py,sha256=_Ko9z-3GpKOAKYDYlAH_1nk2s6QEXB4MvtKDm8LOtxU,9937
197
+ diffusers/pipelines/dit/pipeline_dit.py,sha256=hrLURHV8-ujtNF6t-nrYXVfARyVKh-_OfO9jAtaWUS0,9949
198
+ diffusers/pipelines/hunyuandit/__init__.py,sha256=Zby0yEsLNAoa4cf6W92QXIzyGoijI54xXRVhmrHGHsc,1302
199
+ diffusers/pipelines/hunyuandit/pipeline_hunyuandit.py,sha256=ScJM_vPa6UGNiQMB0b2AihZKax5RagVvDR0o-jG9lm4,42241
195
200
  diffusers/pipelines/i2vgen_xl/__init__.py,sha256=5Stj50A-AIJ1pPhilpDRx1PARMs_n8OKTDl64cq0LAY,1307
196
201
  diffusers/pipelines/i2vgen_xl/pipeline_i2vgen_xl.py,sha256=R94YOPUYIDfbuFkY_1NUO1JpQAOTUjBuybEbdP259Dg,37043
197
202
  diffusers/pipelines/kandinsky/__init__.py,sha256=wrxuhSw_CunNhm7TdzA_fm__092mibGxp5_ep1boZmQ,2312
@@ -236,8 +241,8 @@ diffusers/pipelines/paint_by_example/pipeline_paint_by_example.py,sha256=DTUixKX
236
241
  diffusers/pipelines/pia/__init__.py,sha256=md5F8G279iZg4WGSmLP7N8apWkuHkfssjLQFzv6c2zI,1299
237
242
  diffusers/pipelines/pia/pipeline_pia.py,sha256=sKncNVLdP_FnReBSVsLyu0cloj8vUj-KH9oE7BcNISk,46522
238
243
  diffusers/pipelines/pixart_alpha/__init__.py,sha256=QxcTJF9ryOIejEHQVw3bZAYHn2dah-WPT5pZudE8XxU,1595
239
- diffusers/pipelines/pixart_alpha/pipeline_pixart_alpha.py,sha256=mrGUQRfHcAUPP61wf7MSKCKZJ_LwcnKwYA9Xe8On_d8,44634
240
- diffusers/pipelines/pixart_alpha/pipeline_pixart_sigma.py,sha256=FMDZWCTkK9gq95NfsjYmzXcaBjJFf_Qd55tFwEOW5sA,40940
244
+ diffusers/pipelines/pixart_alpha/pipeline_pixart_alpha.py,sha256=ut6DX2Z7JVWCqN_ws_xHp6lMc_tjn1qyShWWxydrgh0,44658
245
+ diffusers/pipelines/pixart_alpha/pipeline_pixart_sigma.py,sha256=vi-wPuLGzSfJmA-_D3GS0n6jP4Y5iu5Sxz0B3VeNCEQ,40952
241
246
  diffusers/pipelines/semantic_stable_diffusion/__init__.py,sha256=4jDvmgpXRVXGeSAcfGN90iQoJJBBRgE7NXzBE_8AYxM,1443
242
247
  diffusers/pipelines/semantic_stable_diffusion/pipeline_output.py,sha256=YBxNQ2JiY3jYW-GB44nzNZxeADAswMQBJfnr2tBX0eY,822
243
248
  diffusers/pipelines/semantic_stable_diffusion/pipeline_semantic_stable_diffusion.py,sha256=Oyfqg4po7z_GH3nuNZmczH-NumekSKpHq66E7DWDdy8,38738
@@ -384,13 +389,13 @@ diffusers/utils/dummy_flax_and_transformers_objects.py,sha256=XyiqnjacRb86sS9F_V
384
389
  diffusers/utils/dummy_flax_objects.py,sha256=EIyO7jYPH4yjuBIxysZWE0rka3qPLEl1TmMBt5SwXNA,5316
385
390
  diffusers/utils/dummy_note_seq_objects.py,sha256=DffX40mDzWTMCyYhKudgIeBhtqTSpiSkVzcAMRue8dY,506
386
391
  diffusers/utils/dummy_onnx_objects.py,sha256=4Z61m3P9NUwbebsK58wAKs6y32Id6UaiSRyeHXo3ecA,493
387
- diffusers/utils/dummy_pt_objects.py,sha256=vDjUA6psWwvngtYEX-2GwzMvVXm9_g8INBwKWUf4Ftw,30041
392
+ diffusers/utils/dummy_pt_objects.py,sha256=K6xA82EiC1uYWNYyyl5b7cMJeFNSiZDsZ2dSZPTAsV0,31165
388
393
  diffusers/utils/dummy_torch_and_librosa_objects.py,sha256=JUfqU2n3tSKHyWbjSXrpdW_jr-YbMxAvAhLlPa2_Rxs,948
389
394
  diffusers/utils/dummy_torch_and_scipy_objects.py,sha256=zOLdmqbtma5nakkdYgoErISV28yaztmBLI3wrC2Z_bU,537
390
395
  diffusers/utils/dummy_torch_and_torchsde_objects.py,sha256=JPn6XJ3N3BuMq7XLeyMKRsdtmP9csGEZ0AfTp8A4nG0,550
391
396
  diffusers/utils/dummy_torch_and_transformers_and_k_diffusion_objects.py,sha256=IMw6Qs9tTdRrMUXyM_Bc_BuJBvw0OVVHNZMOk3suF7g,1151
392
397
  diffusers/utils/dummy_torch_and_transformers_and_onnx_objects.py,sha256=SiKni7YZ-pmZrurHU3-lhbDGKOGCCVxSK3GJbrARqgU,3023
393
- diffusers/utils/dummy_torch_and_transformers_objects.py,sha256=KG0HZYDZL4ubR9m3z9V-poXCPRMiljQiP79mr5FviZg,50423
398
+ diffusers/utils/dummy_torch_and_transformers_objects.py,sha256=FMrOtTDnH8cJ4WvfLTENv_KPlVsUTzV9sbd-BckO_dw,50859
394
399
  diffusers/utils/dummy_transformers_and_torch_and_note_seq_objects.py,sha256=z-JrPgPo2dWv-buMytUqBd6QqEx8Uha6M1cKa6gR4Dc,621
395
400
  diffusers/utils/dynamic_modules_utils.py,sha256=-i2UlsQBIYSM063IbtpUkQspoOibf5BbHVPgQIbBetg,19778
396
401
  diffusers/utils/export_utils.py,sha256=hxgE1gEqy5wh0G7NlIyKTFeu_3NFW82Y74o2THknKrs,4425
@@ -406,9 +411,9 @@ diffusers/utils/state_dict_utils.py,sha256=H7v5VRp8mf6TAlmqCeC0toVqn2oWIPrFErzTV
406
411
  diffusers/utils/testing_utils.py,sha256=pBLNH9FxPMYtD7rnadEt1PiG21dCiWg2svifStGRArk,36818
407
412
  diffusers/utils/torch_utils.py,sha256=6e6cJmPMbkEqXXJLlcKuVz0zZF8fIc7dF-azq-_6-Xw,6234
408
413
  diffusers/utils/versions.py,sha256=-e7XW1TzZ-tsRo9PMQHp-hNGYHuVDFzLtwg3uAJzqdI,4333
409
- diffusers-0.28.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
410
- diffusers-0.28.0.dist-info/METADATA,sha256=op9AFd8OUqVuGNjgbg2l-IHOSETBjGncctoE1R5VtVw,19117
411
- diffusers-0.28.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
412
- diffusers-0.28.0.dist-info/entry_points.txt,sha256=_1bvshKV_6_b63_FAkcUs9W6tUKGeIoQ3SHEZsovEWs,72
413
- diffusers-0.28.0.dist-info/top_level.txt,sha256=axJl2884vMSvhzrFrSoht36QXA_6gZN9cKtg4xOO72o,10
414
- diffusers-0.28.0.dist-info/RECORD,,
414
+ diffusers-0.28.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
415
+ diffusers-0.28.1.dist-info/METADATA,sha256=O-x5Wx19HGz9zJ827ZxYZHGVjJYnHUMtpHvVq7iZJ-Y,19031
416
+ diffusers-0.28.1.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
417
+ diffusers-0.28.1.dist-info/entry_points.txt,sha256=_1bvshKV_6_b63_FAkcUs9W6tUKGeIoQ3SHEZsovEWs,72
418
+ diffusers-0.28.1.dist-info/top_level.txt,sha256=axJl2884vMSvhzrFrSoht36QXA_6gZN9cKtg4xOO72o,10
419
+ diffusers-0.28.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.38.4)
2
+ Generator: bdist_wheel (0.41.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5