diffsynth-engine 0.7.0__py3-none-any.whl → 0.7.1.dev1__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.
- diffsynth_engine/__init__.py +6 -0
- diffsynth_engine/conf/models/flux2/qwen3_8B_config.json +68 -0
- diffsynth_engine/configs/__init__.py +4 -0
- diffsynth_engine/configs/pipeline.py +50 -1
- diffsynth_engine/models/flux2/__init__.py +7 -0
- diffsynth_engine/models/flux2/flux2_dit.py +1065 -0
- diffsynth_engine/models/flux2/flux2_vae.py +1992 -0
- diffsynth_engine/pipelines/__init__.py +2 -0
- diffsynth_engine/pipelines/flux2_klein_image.py +634 -0
- diffsynth_engine/utils/constants.py +1 -0
- {diffsynth_engine-0.7.0.dist-info → diffsynth_engine-0.7.1.dev1.dist-info}/METADATA +1 -1
- {diffsynth_engine-0.7.0.dist-info → diffsynth_engine-0.7.1.dev1.dist-info}/RECORD +15 -10
- {diffsynth_engine-0.7.0.dist-info → diffsynth_engine-0.7.1.dev1.dist-info}/WHEEL +1 -1
- {diffsynth_engine-0.7.0.dist-info → diffsynth_engine-0.7.1.dev1.dist-info}/licenses/LICENSE +0 -0
- {diffsynth_engine-0.7.0.dist-info → diffsynth_engine-0.7.1.dev1.dist-info}/top_level.txt +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
diffsynth_engine/__init__.py,sha256=
|
|
1
|
+
diffsynth_engine/__init__.py,sha256=lzUI6r47i2CCUiSIwi1IK502TL89ZG7h1yNwmM1eFvI,2588
|
|
2
2
|
diffsynth_engine/algorithm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
diffsynth_engine/algorithm/noise_scheduler/__init__.py,sha256=YvcwE2tCNua-OAX9GEPm0EXsINNWH4XvJMNZb-uaZMM,745
|
|
4
4
|
diffsynth_engine/algorithm/noise_scheduler/base_scheduler.py,sha256=3ve4bYxGyfuERynvoNYdFYSk0agdBgXKCeIOS6O6wgI,819
|
|
@@ -30,6 +30,7 @@ diffsynth_engine/conf/models/components/vae.json,sha256=EvlfeZ8hBCquep6JH1zVTcco
|
|
|
30
30
|
diffsynth_engine/conf/models/flux/flux_dit.json,sha256=fJSC5kdNdJL3sN9CbGJa37GSp6j_62wA9aDRFqAncow,5746
|
|
31
31
|
diffsynth_engine/conf/models/flux/flux_text_encoder.json,sha256=AnSsOuOTesiQKW2UIuRWhpBE4Z_L6uFRpXTm3UN67FQ,748
|
|
32
32
|
diffsynth_engine/conf/models/flux/flux_vae.json,sha256=p84L0RxURF2x_gzaxZa14a2lv_C7qUiY5ymTeJWNy2E,42168
|
|
33
|
+
diffsynth_engine/conf/models/flux2/qwen3_8B_config.json,sha256=S4qQ76rLwOqh8_OiAGM1u7utJoP70GiK2ixDbnE0ITQ,1537
|
|
33
34
|
diffsynth_engine/conf/models/qwen_image/qwen2_5_vl_config.json,sha256=VnOh5-PrKrOMlI3PohcazU-eZ4AaW_qKNGxNX70UVRE,629
|
|
34
35
|
diffsynth_engine/conf/models/qwen_image/qwen2_5_vl_vision_config.json,sha256=pNZ-hKQ50FrYT5qkcnJPWWsNWB2WFV8a5Dqr_0ZAs5M,389
|
|
35
36
|
diffsynth_engine/conf/models/qwen_image/qwen_image_vae.json,sha256=eVLTSRqbXm3JD8QDkLbM6vFfCdynlS-8QxqCfi4BzrI,815
|
|
@@ -84,9 +85,9 @@ diffsynth_engine/conf/tokenizers/z_image/tokenizer/merges.txt,sha256=iDHk8aBERxN
|
|
|
84
85
|
diffsynth_engine/conf/tokenizers/z_image/tokenizer/tokenizer.json,sha256=rrEzB6cazY_oGGHZStVKtonfdzMYgJ7tPL55S0SS2uQ,11422654
|
|
85
86
|
diffsynth_engine/conf/tokenizers/z_image/tokenizer/tokenizer_config.json,sha256=1dCfB7SMMIbFCLMNHJEUvRGJFFt06YKiZTUMkjrNgQE,9732
|
|
86
87
|
diffsynth_engine/conf/tokenizers/z_image/tokenizer/vocab.json,sha256=yhDX6fs-0YV13R4neiV5wW0QjjLydDloSvoOELFECRA,2776833
|
|
87
|
-
diffsynth_engine/configs/__init__.py,sha256=
|
|
88
|
+
diffsynth_engine/configs/__init__.py,sha256=EYhxvpNzNSBNHWFad1EzUB-Vo4mxQW2jWtqev9dd7wg,1515
|
|
88
89
|
diffsynth_engine/configs/controlnet.py,sha256=f3vclyP3lcAjxDGD9C1vevhqqQ7W2LL_c6Wye0uxk3Q,1180
|
|
89
|
-
diffsynth_engine/configs/pipeline.py,sha256=
|
|
90
|
+
diffsynth_engine/configs/pipeline.py,sha256=yBcRFwXQL-FFK_4O-oTmwTCcPKB3i9fJjFutfHyQJlk,17610
|
|
90
91
|
diffsynth_engine/kernels/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
92
|
diffsynth_engine/models/__init__.py,sha256=8Ze7cSE8InetgXWTNb0neVA2Q44K7WlE-h7O-02m2sY,119
|
|
92
93
|
diffsynth_engine/models/base.py,sha256=svao__9WH8VNcyXz5o5dzywYXDcGV0YV9IfkLzDKews,2558
|
|
@@ -107,6 +108,9 @@ diffsynth_engine/models/flux/flux_ipadapter.py,sha256=8YBprBH-V5TRs0bdzQOeGIwAGd
|
|
|
107
108
|
diffsynth_engine/models/flux/flux_redux.py,sha256=-X-eu4NGEu-4PmK9hM-u4nRrWqvW6a4FJ884G8KEE3A,2353
|
|
108
109
|
diffsynth_engine/models/flux/flux_text_encoder.py,sha256=ruqFICZXQfZtHUasXHw5FK6uOi-IJdFjC-_GM0m5bco,3629
|
|
109
110
|
diffsynth_engine/models/flux/flux_vae.py,sha256=lsiqqsl6eT_ry3vGkrqgLi5EVrFFXYm8wUkezspowD8,3705
|
|
111
|
+
diffsynth_engine/models/flux2/__init__.py,sha256=Vpm-oP80mBsiOA1HPHfe0Fjrva4a0i0EB5cRzebUsMk,111
|
|
112
|
+
diffsynth_engine/models/flux2/flux2_dit.py,sha256=VKcd1UQGfOTS_D4kOyr95m9x_N3mnRoKWLtvxd_2PwQ,42107
|
|
113
|
+
diffsynth_engine/models/flux2/flux2_vae.py,sha256=zQ1BQe3S2wnfTHp3t8AwRX_K0SONDZvima2w6Qd8uzE,83021
|
|
110
114
|
diffsynth_engine/models/hunyuan3d/__init__.py,sha256=iWB2mu95TBhOwDseuwQnUjDS_IQxLIZLmcuEW2-bbIg,206
|
|
111
115
|
diffsynth_engine/models/hunyuan3d/dino_image_encoder.py,sha256=KWhVNOlMjaL7sEA_W19OgoFBchauWAaShC-OfQK677k,14273
|
|
112
116
|
diffsynth_engine/models/hunyuan3d/hunyuan3d_dit.py,sha256=Q0ctnz-tcCPysqW3aEDUd3Lw8L1PLhYdjEf6rsv3RwM,8178
|
|
@@ -152,8 +156,9 @@ diffsynth_engine/models/z_image/qwen3.py,sha256=PmT6m46Fc7KZXNzG7ig23Mzj6QfHnMmr
|
|
|
152
156
|
diffsynth_engine/models/z_image/siglip.py,sha256=PjB6ECXXJKgEpU9gF5Fyyt8twjKNA5_jCAG_8qQkoc8,2661
|
|
153
157
|
diffsynth_engine/models/z_image/z_image_dit.py,sha256=kGtYzmfzk_FDe7KWfXpJagN7k7ROXl5J01IhRRs-Bsk,23806
|
|
154
158
|
diffsynth_engine/models/z_image/z_image_dit_omni_base.py,sha256=cfdUFTwGFYRiyBhB_4ptn0lAvYuLAulF6zf0ABqlAzs,44854
|
|
155
|
-
diffsynth_engine/pipelines/__init__.py,sha256=
|
|
159
|
+
diffsynth_engine/pipelines/__init__.py,sha256=pcqwWR-K3jOMYiko82gSKjixYPTrfWCpZAa6qrPmdFg,880
|
|
156
160
|
diffsynth_engine/pipelines/base.py,sha256=h6xOqT1LMFGrJYoTD68_VoHcfRX04je8KUE_y3BUZfM,17279
|
|
161
|
+
diffsynth_engine/pipelines/flux2_klein_image.py,sha256=murraFbh_CTZmE1Ukpd7Gjv1naRXe3k8R5bwDVLvqV8,24844
|
|
157
162
|
diffsynth_engine/pipelines/flux_image.py,sha256=L0ggxpthLD8a5-zdPHu9z668uWBei9YzPb4PFVypDNU,50707
|
|
158
163
|
diffsynth_engine/pipelines/hunyuan3d_shape.py,sha256=TNV0Wr09Dj2bzzlpua9WioCClOj3YiLfE6utI9aWL8A,8164
|
|
159
164
|
diffsynth_engine/pipelines/qwen_image.py,sha256=Xc3H5LiQj2MUdi2KgFD2G2VqDwUa2ehqj4H35sr8iro,35627
|
|
@@ -183,7 +188,7 @@ diffsynth_engine/tools/flux_reference_tool.py,sha256=6v0NRZPsDEHFlPruO-ZJTB4rYWx
|
|
|
183
188
|
diffsynth_engine/tools/flux_replace_tool.py,sha256=AOyEGxHsaNwpTS2VChAieIfECgMxlKsRw0lWPm1k9C0,4627
|
|
184
189
|
diffsynth_engine/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
185
190
|
diffsynth_engine/utils/cache.py,sha256=Ivef22pCuhEq-4H00gSvkLS8ceVZoGis7OSitYL6gH4,2101
|
|
186
|
-
diffsynth_engine/utils/constants.py,sha256=
|
|
191
|
+
diffsynth_engine/utils/constants.py,sha256=Tsn3EAByfZra-nGcx0NEcP9nWTPKaDGdatosE3BuPGE,3846
|
|
187
192
|
diffsynth_engine/utils/download.py,sha256=w9QQjllPfTUEY371UTREU7o_vvdMY-Q2DymDel3ZEZY,6792
|
|
188
193
|
diffsynth_engine/utils/env.py,sha256=k749eYt_qKGq38GocDiXfkhp8nZrowFefNVTZ8R755I,363
|
|
189
194
|
diffsynth_engine/utils/flag.py,sha256=Ubm7FF0vHG197bmJGEplp4XauBlUaQVv-zr-w6VyEIM,2493
|
|
@@ -203,8 +208,8 @@ diffsynth_engine/utils/video.py,sha256=8FCaeqIdUsWMgWI_6SO9SPynsToGcLCQAVYFTc4CD
|
|
|
203
208
|
diffsynth_engine/utils/memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
204
209
|
diffsynth_engine/utils/memory/linear_regression.py,sha256=oW_EQEw13oPoyUrxiL8A7Ksa5AuJ2ynI2qhCbfAuZbg,3930
|
|
205
210
|
diffsynth_engine/utils/memory/memory_predcit_model.py,sha256=EXprSl_zlVjgfMWNXP-iw83Ot3hyMcgYaRPv-dvyL84,3943
|
|
206
|
-
diffsynth_engine-0.7.
|
|
207
|
-
diffsynth_engine-0.7.
|
|
208
|
-
diffsynth_engine-0.7.
|
|
209
|
-
diffsynth_engine-0.7.
|
|
210
|
-
diffsynth_engine-0.7.
|
|
211
|
+
diffsynth_engine-0.7.1.dev1.dist-info/licenses/LICENSE,sha256=x7aBqQuVI0IYnftgoTPI_A0I_rjdjPPQkjnU6N2nikM,11346
|
|
212
|
+
diffsynth_engine-0.7.1.dev1.dist-info/METADATA,sha256=TtCBrrPGk2MynQ4JRTsk6bTACJ-ZNYNXLzpU8YmKF1k,1163
|
|
213
|
+
diffsynth_engine-0.7.1.dev1.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
|
|
214
|
+
diffsynth_engine-0.7.1.dev1.dist-info/top_level.txt,sha256=6zgbiIzEHLbhgDKRyX0uBJOV3F6VnGGBRIQvSiYYn6w,17
|
|
215
|
+
diffsynth_engine-0.7.1.dev1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|