diffsynth-engine 0.6.1.dev10__tar.gz → 0.6.1.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.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/PKG-INFO +1 -1
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/qwen_image/qwen_image_dit.py +7 -5
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/pipelines/flux_image.py +7 -17
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/pipelines/qwen_image.py +41 -13
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine.egg-info/PKG-INFO +1 -1
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/.gitattributes +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/.gitignore +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/.pre-commit-config.yaml +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/LICENSE +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/MANIFEST.in +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/README.md +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/assets/dingtalk.png +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/assets/showcase.jpeg +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/assets/tongyi.svg +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/noise_scheduler/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/noise_scheduler/base_scheduler.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/noise_scheduler/flow_match/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/noise_scheduler/flow_match/flow_beta.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/noise_scheduler/flow_match/flow_ddim.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/noise_scheduler/flow_match/recifited_flow.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/noise_scheduler/stable_diffusion/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/noise_scheduler/stable_diffusion/beta.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/noise_scheduler/stable_diffusion/ddim.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/noise_scheduler/stable_diffusion/exponential.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/noise_scheduler/stable_diffusion/karras.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/noise_scheduler/stable_diffusion/linear.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/noise_scheduler/stable_diffusion/sgm_uniform.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/sampler/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/sampler/flow_match/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/sampler/flow_match/flow_match_euler.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/sampler/stable_diffusion/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/sampler/stable_diffusion/brownian_tree.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/sampler/stable_diffusion/ddpm.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/sampler/stable_diffusion/deis.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/sampler/stable_diffusion/dpmpp_2m.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/sampler/stable_diffusion/dpmpp_2m_sde.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/sampler/stable_diffusion/dpmpp_3m_sde.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/sampler/stable_diffusion/epsilon.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/sampler/stable_diffusion/euler.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/algorithm/sampler/stable_diffusion/euler_ancestral.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/components/vae.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/flux/flux_dit.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/flux/flux_text_encoder.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/flux/flux_vae.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/qwen_image/qwen2_5_vl_config.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/qwen_image/qwen2_5_vl_vision_config.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/qwen_image/qwen_image_vae.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/qwen_image/qwen_image_vae_keymap.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/sd/sd_text_encoder.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/sd/sd_unet.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/sd3/sd3_dit.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/sd3/sd3_text_encoder.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/sdxl/sdxl_text_encoder.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/sdxl/sdxl_unet.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/wan/dit/wan2.1-flf2v-14b.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/wan/dit/wan2.1-i2v-14b.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/wan/dit/wan2.1-t2v-1.3b.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/wan/dit/wan2.1-t2v-14b.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/wan/dit/wan2.2-i2v-a14b.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/wan/dit/wan2.2-s2v-14b.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/wan/dit/wan2.2-t2v-a14b.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/wan/dit/wan2.2-ti2v-5b.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/wan/vae/wan-vae-keymap.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/wan/vae/wan2.1-vae.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/models/wan/vae/wan2.2-vae.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/flux/tokenizer_1/merges.txt +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/flux/tokenizer_1/special_tokens_map.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/flux/tokenizer_1/tokenizer_config.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/flux/tokenizer_1/vocab.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/flux/tokenizer_2/special_tokens_map.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/flux/tokenizer_2/spiece.model +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/flux/tokenizer_2/tokenizer.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/flux/tokenizer_2/tokenizer_config.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/qwen_image/qwen2_vl_image_processor.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/qwen_image/tokenizer/added_tokens.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/qwen_image/tokenizer/merges.txt +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/qwen_image/tokenizer/special_tokens_map.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/qwen_image/tokenizer/tokenizer.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/qwen_image/tokenizer/tokenizer_config.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/qwen_image/tokenizer/vocab.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/sdxl/tokenizer/merges.txt +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/sdxl/tokenizer/special_tokens_map.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/sdxl/tokenizer/tokenizer_config.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/sdxl/tokenizer/vocab.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/sdxl/tokenizer_2/merges.txt +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/sdxl/tokenizer_2/special_tokens_map.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/sdxl/tokenizer_2/tokenizer_config.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/sdxl/tokenizer_2/vocab.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/wan/umt5-xxl/special_tokens_map.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/wan/umt5-xxl/spiece.model +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/wan/umt5-xxl/tokenizer.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/conf/tokenizers/wan/umt5-xxl/tokenizer_config.json +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/configs/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/configs/controlnet.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/configs/pipeline.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/kernels/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/base.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/basic/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/basic/attention.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/basic/lora.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/basic/relative_position_emb.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/basic/timestep.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/basic/transformer_helper.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/basic/unet_helper.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/flux/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/flux/flux_controlnet.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/flux/flux_dit.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/flux/flux_dit_fbcache.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/flux/flux_ipadapter.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/flux/flux_redux.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/flux/flux_text_encoder.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/flux/flux_vae.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/hunyuan3d/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/hunyuan3d/dino_image_encoder.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/hunyuan3d/hunyuan3d_dit.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/hunyuan3d/hunyuan3d_vae.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/hunyuan3d/moe.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/hunyuan3d/surface_extractor.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/hunyuan3d/volume_decoder.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/qwen_image/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/qwen_image/qwen2_5_vl.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/qwen_image/qwen_image_dit_fbcache.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/qwen_image/qwen_image_vae.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/sd/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/sd/sd_controlnet.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/sd/sd_text_encoder.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/sd/sd_unet.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/sd/sd_vae.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/sd3/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/sd3/sd3_dit.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/sd3/sd3_text_encoder.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/sd3/sd3_vae.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/sdxl/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/sdxl/sdxl_controlnet.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/sdxl/sdxl_text_encoder.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/sdxl/sdxl_unet.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/sdxl/sdxl_vae.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/text_encoder/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/text_encoder/clip.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/text_encoder/siglip.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/text_encoder/t5.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/vae/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/vae/vae.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/wan/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/wan/wan_audio_encoder.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/wan/wan_dit.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/wan/wan_image_encoder.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/wan/wan_s2v_dit.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/wan/wan_text_encoder.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/wan/wan_vae.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/pipelines/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/pipelines/base.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/pipelines/hunyuan3d_shape.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/pipelines/sd_image.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/pipelines/sdxl_image.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/pipelines/utils.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/pipelines/wan_s2v.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/pipelines/wan_video.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/processor/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/processor/canny_processor.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/processor/depth_processor.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/tokenizers/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/tokenizers/base.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/tokenizers/clip.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/tokenizers/qwen2.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/tokenizers/qwen2_vl_image_processor.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/tokenizers/qwen2_vl_processor.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/tokenizers/t5.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/tokenizers/wan.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/tools/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/tools/flux_inpainting_tool.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/tools/flux_outpainting_tool.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/tools/flux_reference_tool.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/tools/flux_replace_tool.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/cache.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/constants.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/download.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/env.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/flag.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/fp8_linear.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/gguf.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/image.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/loader.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/lock.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/logging.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/memory/__init__.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/memory/linear_regression.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/memory/memory_predcit_model.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/offload.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/onnx.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/parallel.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/platform.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/prompt.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/video.py +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine.egg-info/SOURCES.txt +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine.egg-info/dependency_links.txt +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine.egg-info/requires.txt +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine.egg-info/top_level.txt +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/docs/tutorial.md +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/docs/tutorial_zh.md +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/pyproject.toml +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/setup.cfg +0 -0
- {diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/setup.py +0 -0
|
@@ -449,7 +449,7 @@ class QwenImageDiT(PreTrainedModel):
|
|
|
449
449
|
cfg_parallel(
|
|
450
450
|
(
|
|
451
451
|
image,
|
|
452
|
-
edit,
|
|
452
|
+
*(edit if edit is not None else ()),
|
|
453
453
|
timestep,
|
|
454
454
|
text,
|
|
455
455
|
text_seq_lens,
|
|
@@ -472,10 +472,12 @@ class QwenImageDiT(PreTrainedModel):
|
|
|
472
472
|
image = torch.cat([image, context_latents], dim=1)
|
|
473
473
|
video_fhw += [(1, h // 2, w // 2)]
|
|
474
474
|
if edit is not None:
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
475
|
+
for img in edit:
|
|
476
|
+
img = img.to(dtype=image.dtype)
|
|
477
|
+
edit_h, edit_w = img.shape[-2:]
|
|
478
|
+
img = self.patchify(img)
|
|
479
|
+
image = torch.cat([image, img], dim=1)
|
|
480
|
+
video_fhw += [(1, edit_h // 2, edit_w // 2)]
|
|
479
481
|
|
|
480
482
|
rotary_emb = self.pos_embed(video_fhw, text_seq_len, image.device)
|
|
481
483
|
|
|
@@ -45,7 +45,6 @@ class FluxLoRAConverter(LoRAStateDictConverter):
|
|
|
45
45
|
flux_dim = 3072
|
|
46
46
|
dit_rename_dict = flux_dit_config["civitai"]["rename_dict"]
|
|
47
47
|
dit_suffix_rename_dict = flux_dit_config["civitai"]["suffix_rename_dict"]
|
|
48
|
-
clip_rename_dict = flux_text_encoder_config["diffusers"]["rename_dict"]
|
|
49
48
|
clip_attn_rename_dict = flux_text_encoder_config["diffusers"]["attn_rename_dict"]
|
|
50
49
|
|
|
51
50
|
dit_dict = {}
|
|
@@ -138,27 +137,18 @@ class FluxLoRAConverter(LoRAStateDictConverter):
|
|
|
138
137
|
lora_args["rank"] = lora_args["up"].shape[1]
|
|
139
138
|
rename = rename.replace(".weight", "")
|
|
140
139
|
dit_dict[rename] = lora_args
|
|
141
|
-
elif "
|
|
142
|
-
name = key.replace("
|
|
143
|
-
name = name.replace("
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
param = param.reshape((1, param.shape[0], param.shape[1]))
|
|
149
|
-
rename = clip_rename_dict[name]
|
|
150
|
-
elif name.startswith("text_model.encoder.layers."):
|
|
151
|
-
names = name.split(".")
|
|
152
|
-
layer_id, layer_type, tail = names[3], ".".join(names[4:-1]), names[-1]
|
|
153
|
-
rename = ".".join(["encoders", layer_id, clip_attn_rename_dict[layer_type], tail])
|
|
154
|
-
else:
|
|
155
|
-
raise ValueError(f"Unsupported key: {key}")
|
|
140
|
+
elif "lora_te1_text_model_encoder_layers_" in key:
|
|
141
|
+
name = key.replace("lora_te1_text_model_encoder_layers_", "")
|
|
142
|
+
name = name.replace(".alpha", "")
|
|
143
|
+
layer_id, layer_type = name.split("_", 1)
|
|
144
|
+
layer_type = layer_type.replace("self_attn_", "self_attn.").replace("mlp_", "mlp.")
|
|
145
|
+
rename = ".".join(["encoders", layer_id, clip_attn_rename_dict[layer_type]])
|
|
146
|
+
|
|
156
147
|
lora_args = {}
|
|
157
148
|
lora_args["alpha"] = param
|
|
158
149
|
lora_args["up"] = lora_state_dict[origin_key.replace(".alpha", ".lora_up.weight")]
|
|
159
150
|
lora_args["down"] = lora_state_dict[origin_key.replace(".alpha", ".lora_down.weight")]
|
|
160
151
|
lora_args["rank"] = lora_args["up"].shape[1]
|
|
161
|
-
rename = rename.replace(".weight", "")
|
|
162
152
|
te_dict[rename] = lora_args
|
|
163
153
|
else:
|
|
164
154
|
raise ValueError(f"Unsupported key: {key}")
|
|
@@ -107,10 +107,14 @@ class QwenImagePipeline(BasePipeline):
|
|
|
107
107
|
dtype=config.model_dtype,
|
|
108
108
|
)
|
|
109
109
|
self.config = config
|
|
110
|
+
# qwen image
|
|
110
111
|
self.prompt_template_encode = "<|im_start|>system\nDescribe the image by detailing the color, shape, size, texture, quantity, text, spatial relationships of the objects and background:<|im_end|>\n<|im_start|>user\n{}<|im_end|>\n<|im_start|>assistant\n"
|
|
111
112
|
self.prompt_template_encode_start_idx = 34
|
|
112
|
-
|
|
113
|
+
# qwen image edit
|
|
113
114
|
self.edit_prompt_template_encode = "<|im_start|>system\nDescribe the key features of the input image (color, shape, size, texture, objects, background), then explain how the user's text instruction should alter or modify the image. Generate a new image that meets the user's requirements while maintaining consistency with the original input where appropriate.<|im_end|>\n<|im_start|>user\n<|vision_start|><|image_pad|><|vision_end|>{}<|im_end|>\n<|im_start|>assistant\n"
|
|
115
|
+
# qwen image edit plus
|
|
116
|
+
self.edit_plus_prompt_template_encode = "<|im_start|>system\nDescribe the key features of the input image (color, shape, size, texture, objects, background), then explain how the user's text instruction should alter or modify the image. Generate a new image that meets the user's requirements while maintaining consistency with the original input where appropriate.<|im_end|>\n<|im_start|>user\n{}<|im_end|>\n<|im_start|>assistant\n"
|
|
117
|
+
|
|
114
118
|
self.edit_prompt_template_encode_start_idx = 64
|
|
115
119
|
|
|
116
120
|
# sampler
|
|
@@ -282,7 +286,7 @@ class QwenImagePipeline(BasePipeline):
|
|
|
282
286
|
|
|
283
287
|
def unload_loras(self):
|
|
284
288
|
self.dit.unload_loras()
|
|
285
|
-
self.noise_scheduler.
|
|
289
|
+
self.noise_scheduler.restore_config()
|
|
286
290
|
|
|
287
291
|
def apply_scheduler_config(self, scheduler_config: Dict):
|
|
288
292
|
self.noise_scheduler.update_config(scheduler_config)
|
|
@@ -339,16 +343,27 @@ class QwenImagePipeline(BasePipeline):
|
|
|
339
343
|
def encode_prompt_with_image(
|
|
340
344
|
self,
|
|
341
345
|
prompt: Union[str, List[str]],
|
|
342
|
-
|
|
346
|
+
vae_image: List[torch.Tensor],
|
|
347
|
+
condition_image: List[torch.Tensor], # edit plus
|
|
343
348
|
num_images_per_prompt: int = 1,
|
|
344
349
|
max_sequence_length: int = 1024,
|
|
350
|
+
is_edit_plus: bool = True,
|
|
345
351
|
):
|
|
346
352
|
prompt = [prompt] if isinstance(prompt, str) else prompt
|
|
347
353
|
|
|
348
354
|
batch_size = len(prompt)
|
|
349
355
|
template = self.edit_prompt_template_encode
|
|
350
356
|
drop_idx = self.edit_prompt_template_encode_start_idx
|
|
351
|
-
|
|
357
|
+
if not is_edit_plus:
|
|
358
|
+
template = self.edit_prompt_template_encode
|
|
359
|
+
texts = [template.format(txt) for txt in prompt]
|
|
360
|
+
image = vae_image
|
|
361
|
+
else:
|
|
362
|
+
template = self.edit_plus_prompt_template_encode
|
|
363
|
+
img_prompt_template = "Picture {}: <|vision_start|><|image_pad|><|vision_end|>"
|
|
364
|
+
img_prompt = "".join([img_prompt_template.format(i + 1) for i in range(len(condition_image))])
|
|
365
|
+
texts = [template.format(img_prompt + e) for e in prompt]
|
|
366
|
+
image = condition_image
|
|
352
367
|
|
|
353
368
|
model_inputs = self.processor(text=texts, images=image, max_length=max_sequence_length + drop_idx)
|
|
354
369
|
input_ids, attention_mask, pixel_values, image_grid_thw = (
|
|
@@ -454,7 +469,7 @@ class QwenImagePipeline(BasePipeline):
|
|
|
454
469
|
entity_masks = [torch.cat([mask, mask], dim=0) for mask in entity_masks]
|
|
455
470
|
latents = torch.cat([latents, latents], dim=0)
|
|
456
471
|
if image_latents is not None:
|
|
457
|
-
image_latents = torch.cat([
|
|
472
|
+
image_latents = [torch.cat([image_latent, image_latent], dim=0) for image_latent in image_latents]
|
|
458
473
|
if context_latents is not None:
|
|
459
474
|
context_latents = torch.cat([context_latents, context_latents], dim=0)
|
|
460
475
|
timestep = torch.cat([timestep, timestep], dim=0)
|
|
@@ -543,7 +558,8 @@ class QwenImagePipeline(BasePipeline):
|
|
|
543
558
|
self,
|
|
544
559
|
prompt: str,
|
|
545
560
|
negative_prompt: str = "",
|
|
546
|
-
|
|
561
|
+
# single image for edit, list for edit plus(QwenImageEdit2509)
|
|
562
|
+
input_image: List[Image.Image] | Image.Image | None = None,
|
|
547
563
|
cfg_scale: float = 4.0, # true cfg
|
|
548
564
|
height: int = 1328,
|
|
549
565
|
width: int = 1328,
|
|
@@ -555,10 +571,20 @@ class QwenImagePipeline(BasePipeline):
|
|
|
555
571
|
entity_prompts: Optional[List[str]] = None,
|
|
556
572
|
entity_masks: Optional[List[Image.Image]] = None,
|
|
557
573
|
):
|
|
574
|
+
is_edit_plus = isinstance(input_image, list)
|
|
558
575
|
if input_image is not None:
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
576
|
+
if not isinstance(input_image, list):
|
|
577
|
+
input_image = [input_image]
|
|
578
|
+
condition_images = []
|
|
579
|
+
vae_images = []
|
|
580
|
+
for img in input_image:
|
|
581
|
+
img_width, img_height = img.size
|
|
582
|
+
condition_width, condition_height = self.calculate_dimensions(384 * 384, img_width / img_height)
|
|
583
|
+
vae_width, vae_height = self.calculate_dimensions(1024 * 1024, img_width / img_height)
|
|
584
|
+
condition_images.append(img.resize((condition_width, condition_height), Image.LANCZOS))
|
|
585
|
+
vae_images.append(img.resize((vae_width, vae_height), Image.LANCZOS))
|
|
586
|
+
|
|
587
|
+
width, height = vae_images[-1].size
|
|
562
588
|
|
|
563
589
|
self.validate_image_size(height, width, minimum=64, multiple_of=16)
|
|
564
590
|
|
|
@@ -567,7 +593,7 @@ class QwenImagePipeline(BasePipeline):
|
|
|
567
593
|
|
|
568
594
|
context_latents = None
|
|
569
595
|
for param in controlnet_params:
|
|
570
|
-
self.load_lora(param.model, param.scale, fused=
|
|
596
|
+
self.load_lora(param.model, param.scale, fused=False, save_original_weight=False)
|
|
571
597
|
if param.control_type == QwenImageControlType.in_context:
|
|
572
598
|
width, height = param.image.size
|
|
573
599
|
self.validate_image_size(height, width, minimum=64, multiple_of=16)
|
|
@@ -585,16 +611,18 @@ class QwenImagePipeline(BasePipeline):
|
|
|
585
611
|
|
|
586
612
|
self.load_models_to_device(["vae"])
|
|
587
613
|
if input_image:
|
|
588
|
-
image_latents = self.prepare_image_latents(
|
|
614
|
+
image_latents = [self.prepare_image_latents(img) for img in vae_images]
|
|
589
615
|
else:
|
|
590
616
|
image_latents = None
|
|
591
617
|
|
|
592
618
|
self.load_models_to_device(["encoder"])
|
|
593
619
|
if image_latents is not None:
|
|
594
|
-
prompt_emb, prompt_emb_mask = self.encode_prompt_with_image(
|
|
620
|
+
prompt_emb, prompt_emb_mask = self.encode_prompt_with_image(
|
|
621
|
+
prompt, vae_images, condition_images, 1, 4096, is_edit_plus
|
|
622
|
+
)
|
|
595
623
|
if cfg_scale > 1.0 and negative_prompt != "":
|
|
596
624
|
negative_prompt_emb, negative_prompt_emb_mask = self.encode_prompt_with_image(
|
|
597
|
-
negative_prompt,
|
|
625
|
+
negative_prompt, vae_images, condition_images, 1, 4096, is_edit_plus
|
|
598
626
|
)
|
|
599
627
|
else:
|
|
600
628
|
negative_prompt_emb, negative_prompt_emb_mask = None, None
|
|
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.6.1.dev10 → diffsynth_engine-0.6.1.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
|
|
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.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/configs/__init__.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/configs/controlnet.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/configs/pipeline.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/kernels/__init__.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/__init__.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/base.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.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
|
|
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.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/sd/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/sd/sd_unet.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/sd/sd_vae.py
RENAMED
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/sd3/sd3_dit.py
RENAMED
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.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
|
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/vae/vae.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/wan/wan_dit.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/models/wan/wan_vae.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/pipelines/__init__.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/pipelines/base.py
RENAMED
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/pipelines/sd_image.py
RENAMED
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/pipelines/utils.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/pipelines/wan_s2v.py
RENAMED
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/processor/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/tokenizers/base.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/tokenizers/clip.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/tokenizers/qwen2.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/tokenizers/t5.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/tokenizers/wan.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.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.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/__init__.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/cache.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/constants.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/download.py
RENAMED
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/flag.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/fp8_linear.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/gguf.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/image.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/loader.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/lock.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/logging.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/offload.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/onnx.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/parallel.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/platform.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/prompt.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine/utils/video.py
RENAMED
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.dev12}/diffsynth_engine.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{diffsynth_engine-0.6.1.dev10 → diffsynth_engine-0.6.1.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
|