Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2025-10-28 09:10:06 -04:00
parent 195c843a41
commit 3e996eed27
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -50,6 +50,7 @@
- add **Qwen 3-VL** llm for interrogate and prompt enhance, thanks @CalamitousFelicitousness
this includes *2B, 4B and 8B* variants
- when using **shared-t5** *(default)*, it will load standard or pre-quant depending on model
- enhanced LoRA support for **Wan-2.2-14B**
- **Fixes**
- startup error with `--profile` enabled if using `--skip`
- restore orig init image for each batch sequence
@@ -65,6 +66,8 @@
- fix networks display with extended characters, thanks @awsr
- installer handle different `opencv` package variants
- fix using pre-quantized shared-t5
- fix `wan-2.2-14b-vace` single-stage exectution
- fix `wan-2.2-5b` tiled vae decode
- catch `xet` warnings
- validate pipelines on import
+1 -1
View File
@@ -613,7 +613,7 @@ def check_diffusers():
t_start = time.time()
if args.skip_all:
return
sha = '6d1a6486024192951ce696e8f4cf79a39509182f' # diffusers commit hash
sha = '84e16575e4c5e90b6b49301cfa162ced4cf478d2' # diffusers commit hash
# if args.use_rocm or args.use_zluda or args.use_directml:
# sha = '043ab2520f6a19fce78e6e060a68dbc947edb9f9' # lock diffusers versions for now
pkg = pkg_resources.working_set.by_key.get('diffusers', None)