diffsynth-engine 0.3.6.dev10__tar.gz → 0.3.6.dev12__tar.gz
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-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/PKG-INFO +1 -1
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/__init__.py +3 -1
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/configs/__init__.py +2 -1
- diffsynth_engine-0.3.6.dev10/diffsynth_engine/pipelines/controlnet_helper.py → diffsynth_engine-0.3.6.dev12/diffsynth_engine/configs/controlnet.py +19 -9
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/flux/flux_dit_fbcache.py +2 -2
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/pipelines/__init__.py +0 -2
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/pipelines/flux_image.py +2 -2
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/pipelines/sd_image.py +2 -2
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/pipelines/sdxl_image.py +2 -2
- diffsynth_engine-0.3.6.dev12/diffsynth_engine/pipelines/utils.py +6 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine.egg-info/PKG-INFO +1 -1
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine.egg-info/SOURCES.txt +1 -1
- diffsynth_engine-0.3.6.dev10/diffsynth_engine/configs/controlnet.py +0 -17
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/.gitignore +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/.pre-commit-config.yaml +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/LICENSE +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/MANIFEST.in +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/README.md +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/assets/dingtalk.png +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/assets/showcase.jpeg +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/__init__.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/noise_scheduler/__init__.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/noise_scheduler/base_scheduler.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/noise_scheduler/flow_match/__init__.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/noise_scheduler/flow_match/flow_beta.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/noise_scheduler/flow_match/flow_ddim.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/noise_scheduler/flow_match/recifited_flow.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/noise_scheduler/stable_diffusion/__init__.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/noise_scheduler/stable_diffusion/beta.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/noise_scheduler/stable_diffusion/ddim.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/noise_scheduler/stable_diffusion/exponential.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/noise_scheduler/stable_diffusion/karras.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/noise_scheduler/stable_diffusion/linear.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/noise_scheduler/stable_diffusion/sgm_uniform.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/sampler/__init__.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/sampler/flow_match/__init__.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/sampler/flow_match/flow_match_euler.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/sampler/stable_diffusion/__init__.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/sampler/stable_diffusion/brownian_tree.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/sampler/stable_diffusion/ddpm.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/sampler/stable_diffusion/deis.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/sampler/stable_diffusion/dpmpp_2m.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/sampler/stable_diffusion/dpmpp_2m_sde.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/sampler/stable_diffusion/dpmpp_3m_sde.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/sampler/stable_diffusion/epsilon.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/sampler/stable_diffusion/euler.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/sampler/stable_diffusion/euler_ancestral.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/models/components/vae.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/models/flux/flux_dit.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/models/flux/flux_text_encoder.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/models/flux/flux_vae.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/models/sd/sd_text_encoder.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/models/sd/sd_unet.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/models/sd3/sd3_dit.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/models/sd3/sd3_text_encoder.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/models/sdxl/sdxl_text_encoder.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/models/sdxl/sdxl_unet.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/models/wan/dit/1.3b-t2v.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/models/wan/dit/14b-flf2v.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/models/wan/dit/14b-i2v.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/models/wan/dit/14b-t2v.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/tokenizers/flux/tokenizer_1/merges.txt +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/tokenizers/flux/tokenizer_1/special_tokens_map.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/tokenizers/flux/tokenizer_1/tokenizer_config.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/tokenizers/flux/tokenizer_1/vocab.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/tokenizers/flux/tokenizer_2/special_tokens_map.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/tokenizers/flux/tokenizer_2/spiece.model +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/tokenizers/flux/tokenizer_2/tokenizer.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/tokenizers/flux/tokenizer_2/tokenizer_config.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/tokenizers/sdxl/tokenizer/merges.txt +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/tokenizers/sdxl/tokenizer/special_tokens_map.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/tokenizers/sdxl/tokenizer/tokenizer_config.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/tokenizers/sdxl/tokenizer/vocab.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/tokenizers/sdxl/tokenizer_2/merges.txt +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/tokenizers/sdxl/tokenizer_2/special_tokens_map.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/tokenizers/sdxl/tokenizer_2/tokenizer_config.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/tokenizers/sdxl/tokenizer_2/vocab.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/tokenizers/wan/umt5-xxl/special_tokens_map.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/tokenizers/wan/umt5-xxl/spiece.model +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/tokenizers/wan/umt5-xxl/tokenizer.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/conf/tokenizers/wan/umt5-xxl/tokenizer_config.json +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/configs/pipeline.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/kernels/__init__.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/__init__.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/base.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/basic/__init__.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/basic/attention.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/basic/lora.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/basic/relative_position_emb.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/basic/timestep.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/basic/transformer_helper.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/basic/unet_helper.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/flux/__init__.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/flux/flux_controlnet.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/flux/flux_dit.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/flux/flux_ipadapter.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/flux/flux_redux.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/flux/flux_text_encoder.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/flux/flux_vae.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/sd/__init__.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/sd/sd_controlnet.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/sd/sd_text_encoder.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/sd/sd_unet.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/sd/sd_vae.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/sd3/__init__.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/sd3/sd3_dit.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/sd3/sd3_text_encoder.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/sd3/sd3_vae.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/sdxl/__init__.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/sdxl/sdxl_controlnet.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/sdxl/sdxl_text_encoder.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/sdxl/sdxl_unet.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/sdxl/sdxl_vae.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/text_encoder/__init__.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/text_encoder/clip.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/text_encoder/siglip.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/text_encoder/t5.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/utils.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/vae/__init__.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/vae/vae.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/wan/__init__.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/wan/wan_dit.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/wan/wan_image_encoder.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/wan/wan_text_encoder.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/wan/wan_vae.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/pipelines/base.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/pipelines/wan_video.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/processor/__init__.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/processor/canny_processor.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/processor/depth_processor.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/tokenizers/__init__.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/tokenizers/base.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/tokenizers/clip.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/tokenizers/t5.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/tokenizers/wan.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/tools/__init__.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/tools/flux_inpainting_tool.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/tools/flux_outpainting_tool.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/tools/flux_reference_tool.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/tools/flux_replace_tool.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/__init__.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/constants.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/download.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/env.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/flag.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/fp8_linear.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/gguf.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/image.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/loader.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/lock.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/logging.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/offload.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/onnx.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/parallel.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/platform.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/prompt.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/video.py +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine.egg-info/dependency_links.txt +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine.egg-info/requires.txt +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine.egg-info/top_level.txt +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/docs/tutorial.md +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/docs/tutorial_zh.md +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/pyproject.toml +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/setup.cfg +0 -0
- {diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/setup.py +0 -0
|
@@ -3,13 +3,14 @@ from .configs import (
|
|
|
3
3
|
SDXLPipelineConfig,
|
|
4
4
|
FluxPipelineConfig,
|
|
5
5
|
WanPipelineConfig,
|
|
6
|
+
ControlNetParams,
|
|
7
|
+
ControlType,
|
|
6
8
|
)
|
|
7
9
|
from .pipelines import (
|
|
8
10
|
FluxImagePipeline,
|
|
9
11
|
SDXLImagePipeline,
|
|
10
12
|
SDImagePipeline,
|
|
11
13
|
WanVideoPipeline,
|
|
12
|
-
ControlNetParams,
|
|
13
14
|
)
|
|
14
15
|
from .models.flux import FluxControlNet, FluxIPAdapter, FluxRedux
|
|
15
16
|
from .models.sd import SDControlNet
|
|
@@ -44,6 +45,7 @@ __all__ = [
|
|
|
44
45
|
"FluxReplaceByControlTool",
|
|
45
46
|
"FluxReduxRefTool",
|
|
46
47
|
"ControlNetParams",
|
|
48
|
+
"ControlType",
|
|
47
49
|
"fetch_model",
|
|
48
50
|
"fetch_modelscope_model",
|
|
49
51
|
"fetch_civitai_model",
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/configs/__init__.py
RENAMED
|
@@ -8,7 +8,7 @@ from .pipeline import (
|
|
|
8
8
|
FluxPipelineConfig,
|
|
9
9
|
WanPipelineConfig,
|
|
10
10
|
)
|
|
11
|
-
from .controlnet import ControlType
|
|
11
|
+
from .controlnet import ControlType, ControlNetParams
|
|
12
12
|
|
|
13
13
|
__all__ = [
|
|
14
14
|
"BaseConfig",
|
|
@@ -20,4 +20,5 @@ __all__ = [
|
|
|
20
20
|
"FluxPipelineConfig",
|
|
21
21
|
"WanPipelineConfig",
|
|
22
22
|
"ControlType",
|
|
23
|
+
"ControlNetParams",
|
|
23
24
|
]
|
|
@@ -1,12 +1,30 @@
|
|
|
1
|
+
from dataclasses import dataclass
|
|
2
|
+
from enum import Enum
|
|
3
|
+
|
|
1
4
|
import torch
|
|
2
5
|
import torch.nn as nn
|
|
3
6
|
from typing import List, Union, Optional
|
|
4
7
|
from PIL import Image
|
|
5
|
-
from dataclasses import dataclass
|
|
6
8
|
|
|
7
9
|
ImageType = Union[Image.Image, torch.Tensor, List[Image.Image], List[torch.Tensor]]
|
|
8
10
|
|
|
9
11
|
|
|
12
|
+
# FLUX ControlType
|
|
13
|
+
class ControlType(Enum):
|
|
14
|
+
normal = "normal"
|
|
15
|
+
bfl_control = "bfl_control"
|
|
16
|
+
bfl_fill = "bfl_fill"
|
|
17
|
+
bfl_kontext = "bfl_kontext"
|
|
18
|
+
|
|
19
|
+
def get_in_channel(self):
|
|
20
|
+
if self in [ControlType.normal, ControlType.bfl_kontext]:
|
|
21
|
+
return 64
|
|
22
|
+
elif self == ControlType.bfl_control:
|
|
23
|
+
return 128
|
|
24
|
+
elif self == ControlType.bfl_fill:
|
|
25
|
+
return 384
|
|
26
|
+
|
|
27
|
+
|
|
10
28
|
@dataclass
|
|
11
29
|
class ControlNetParams:
|
|
12
30
|
image: ImageType
|
|
@@ -16,11 +34,3 @@ class ControlNetParams:
|
|
|
16
34
|
control_start: float = 0
|
|
17
35
|
control_end: float = 1
|
|
18
36
|
processor_name: Optional[str] = None # only used for sdxl controlnet union now
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
def accumulate(result, new_item):
|
|
22
|
-
if result is None:
|
|
23
|
-
return new_item
|
|
24
|
-
for i, item in enumerate(new_item):
|
|
25
|
-
result[i] += item
|
|
26
|
-
return result
|
|
@@ -188,7 +188,7 @@ class FluxDiTFBCache(FluxDiT):
|
|
|
188
188
|
dtype: torch.dtype,
|
|
189
189
|
in_channel: int = 64,
|
|
190
190
|
attn_kwargs: Optional[Dict[str, Any]] = None,
|
|
191
|
-
|
|
191
|
+
relative_l1_threshold: float = 0.05,
|
|
192
192
|
):
|
|
193
193
|
with no_init_weights():
|
|
194
194
|
model = torch.nn.utils.skip_init(
|
|
@@ -197,7 +197,7 @@ class FluxDiTFBCache(FluxDiT):
|
|
|
197
197
|
dtype=dtype,
|
|
198
198
|
in_channel=in_channel,
|
|
199
199
|
attn_kwargs=attn_kwargs,
|
|
200
|
-
|
|
200
|
+
relative_l1_threshold=relative_l1_threshold,
|
|
201
201
|
)
|
|
202
202
|
model = model.requires_grad_(False) # for loading gguf
|
|
203
203
|
model.load_state_dict(state_dict, assign=True)
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/pipelines/__init__.py
RENAMED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
from .base import BasePipeline, LoRAStateDictConverter
|
|
2
|
-
from .controlnet_helper import ControlNetParams
|
|
3
2
|
from .flux_image import FluxImagePipeline
|
|
4
3
|
from .sdxl_image import SDXLImagePipeline
|
|
5
4
|
from .sd_image import SDImagePipeline
|
|
@@ -13,5 +12,4 @@ __all__ = [
|
|
|
13
12
|
"SDXLImagePipeline",
|
|
14
13
|
"SDImagePipeline",
|
|
15
14
|
"WanVideoPipeline",
|
|
16
|
-
"ControlNetParams",
|
|
17
15
|
]
|
|
@@ -17,10 +17,10 @@ from diffsynth_engine.models.flux import (
|
|
|
17
17
|
flux_dit_config,
|
|
18
18
|
flux_text_encoder_config,
|
|
19
19
|
)
|
|
20
|
-
from diffsynth_engine.configs import FluxPipelineConfig, ControlType
|
|
20
|
+
from diffsynth_engine.configs import FluxPipelineConfig, ControlType, ControlNetParams
|
|
21
21
|
from diffsynth_engine.models.basic.lora import LoRAContext
|
|
22
22
|
from diffsynth_engine.pipelines import BasePipeline, LoRAStateDictConverter
|
|
23
|
-
from diffsynth_engine.pipelines.
|
|
23
|
+
from diffsynth_engine.pipelines.utils import accumulate
|
|
24
24
|
from diffsynth_engine.tokenizers import CLIPTokenizer, T5TokenizerFast
|
|
25
25
|
from diffsynth_engine.algorithm.noise_scheduler import RecifitedFlowScheduler
|
|
26
26
|
from diffsynth_engine.algorithm.sampler import FlowMatchEulerSampler
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/pipelines/sd_image.py
RENAMED
|
@@ -6,12 +6,12 @@ from typing import Callable, Dict, Optional, List
|
|
|
6
6
|
from tqdm import tqdm
|
|
7
7
|
from PIL import Image, ImageOps
|
|
8
8
|
|
|
9
|
-
from diffsynth_engine.configs import SDPipelineConfig
|
|
9
|
+
from diffsynth_engine.configs import SDPipelineConfig, ControlNetParams
|
|
10
10
|
from diffsynth_engine.models.base import split_suffix
|
|
11
11
|
from diffsynth_engine.models.basic.lora import LoRAContext
|
|
12
12
|
from diffsynth_engine.models.sd import SDTextEncoder, SDVAEDecoder, SDVAEEncoder, SDUNet, sd_unet_config
|
|
13
13
|
from diffsynth_engine.pipelines import BasePipeline, LoRAStateDictConverter
|
|
14
|
-
from diffsynth_engine.pipelines.
|
|
14
|
+
from diffsynth_engine.pipelines.utils import accumulate
|
|
15
15
|
from diffsynth_engine.tokenizers import CLIPTokenizer
|
|
16
16
|
from diffsynth_engine.algorithm.noise_scheduler import ScaledLinearScheduler
|
|
17
17
|
from diffsynth_engine.algorithm.sampler import EulerSampler
|
|
@@ -6,7 +6,7 @@ from typing import Callable, Dict, Optional, List
|
|
|
6
6
|
from tqdm import tqdm
|
|
7
7
|
from PIL import Image, ImageOps
|
|
8
8
|
|
|
9
|
-
from diffsynth_engine.configs import SDXLPipelineConfig
|
|
9
|
+
from diffsynth_engine.configs import SDXLPipelineConfig, ControlNetParams
|
|
10
10
|
from diffsynth_engine.models.base import split_suffix
|
|
11
11
|
from diffsynth_engine.models.basic.lora import LoRAContext
|
|
12
12
|
from diffsynth_engine.models.basic.timestep import TemporalTimesteps
|
|
@@ -19,7 +19,7 @@ from diffsynth_engine.models.sdxl import (
|
|
|
19
19
|
sdxl_unet_config,
|
|
20
20
|
)
|
|
21
21
|
from diffsynth_engine.pipelines import BasePipeline, LoRAStateDictConverter
|
|
22
|
-
from diffsynth_engine.pipelines.
|
|
22
|
+
from diffsynth_engine.pipelines.utils import accumulate
|
|
23
23
|
from diffsynth_engine.tokenizers import CLIPTokenizer
|
|
24
24
|
from diffsynth_engine.algorithm.noise_scheduler import ScaledLinearScheduler
|
|
25
25
|
from diffsynth_engine.algorithm.sampler import EulerSampler
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine.egg-info/SOURCES.txt
RENAMED
|
@@ -123,10 +123,10 @@ diffsynth_engine/models/wan/wan_text_encoder.py
|
|
|
123
123
|
diffsynth_engine/models/wan/wan_vae.py
|
|
124
124
|
diffsynth_engine/pipelines/__init__.py
|
|
125
125
|
diffsynth_engine/pipelines/base.py
|
|
126
|
-
diffsynth_engine/pipelines/controlnet_helper.py
|
|
127
126
|
diffsynth_engine/pipelines/flux_image.py
|
|
128
127
|
diffsynth_engine/pipelines/sd_image.py
|
|
129
128
|
diffsynth_engine/pipelines/sdxl_image.py
|
|
129
|
+
diffsynth_engine/pipelines/utils.py
|
|
130
130
|
diffsynth_engine/pipelines/wan_video.py
|
|
131
131
|
diffsynth_engine/processor/__init__.py
|
|
132
132
|
diffsynth_engine/processor/canny_processor.py
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
from enum import Enum
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
# FLUX ControlType
|
|
5
|
-
class ControlType(Enum):
|
|
6
|
-
normal = "normal"
|
|
7
|
-
bfl_control = "bfl_control"
|
|
8
|
-
bfl_fill = "bfl_fill"
|
|
9
|
-
bfl_kontext = "bfl_kontext"
|
|
10
|
-
|
|
11
|
-
def get_in_channel(self):
|
|
12
|
-
if self in [ControlType.normal, ControlType.bfl_kontext]:
|
|
13
|
-
return 64
|
|
14
|
-
elif self == ControlType.bfl_control:
|
|
15
|
-
return 128
|
|
16
|
-
elif self == ControlType.bfl_fill:
|
|
17
|
-
return 384
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/algorithm/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/configs/pipeline.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/kernels/__init__.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/__init__.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/base.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/basic/lora.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/sd/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/sd/sd_unet.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/sd/sd_vae.py
RENAMED
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/sd3/sd3_dit.py
RENAMED
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/sd3/sd3_vae.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/utils.py
RENAMED
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/vae/vae.py
RENAMED
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/wan/wan_dit.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/models/wan/wan_vae.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/pipelines/base.py
RENAMED
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/processor/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/tokenizers/base.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/tokenizers/clip.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/tokenizers/t5.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/tokenizers/wan.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/tools/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/__init__.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/constants.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/download.py
RENAMED
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/flag.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/fp8_linear.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/gguf.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/image.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/loader.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/lock.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/logging.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/offload.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/onnx.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/parallel.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/platform.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/prompt.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine/utils/video.py
RENAMED
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.3.6.dev10 → diffsynth_engine-0.3.6.dev12}/diffsynth_engine.egg-info/requires.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|