mirror of https://github.com/vladmandic/automatic
parent
4f336d3aab
commit
e66d78f556
|
|
@ -1,8 +1,8 @@
|
|||
# Change Log for SD.Next
|
||||
|
||||
## Update for 2025-10-16
|
||||
## Update for 2025-10-17
|
||||
|
||||
### Highlights for 2025-10-16
|
||||
### Highlights for 2025-10-17
|
||||
|
||||
It's been a month since the last release and number of changes is yet again massive with over 300 commits!
|
||||
Highlight are:
|
||||
|
|
@ -17,7 +17,7 @@ Highlight are:
|
|||
and now you can also test your favorite quantization on-the-fly and then save/load model for future use
|
||||
- Other: support for **Huggingface** mirrors, changes to installer to prevent unwanted `torch-cpu` operations, improved previews, etc.
|
||||
|
||||
### Details for 2025-10-16
|
||||
### Details for 2025-10-17
|
||||
|
||||
- **Models**
|
||||
- [WAN 2.2 14B VACE](https://huggingface.co/alibaba-pai/Wan2.2-VACE-Fun-A14B)
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit da7a2bd553b81d66fab21c2f12559439a36e844c
|
||||
Subproject commit c6dc85eb28a02bc7af268497b7a5a596770c5d7b
|
||||
|
|
@ -1 +1 @@
|
|||
Subproject commit 638a07d70998cc4ffc1fd9fe8a51de180c1c9e08
|
||||
Subproject commit db79b18f6f3f5a247e710b507d10cb39b01cc371
|
||||
|
|
@ -608,7 +608,7 @@ def check_diffusers():
|
|||
if args.skip_git:
|
||||
install('diffusers')
|
||||
return
|
||||
sha = 'f072c64bf22c6a259d38435b19a8ef3eb67c96a8' # diffusers commit hash
|
||||
sha = 'af769881d37fe916afef2c47279f66c79f5f2714' # 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)
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ class Processed:
|
|||
|
||||
self.sampler_name = p.sampler_name or ''
|
||||
self.cfg_scale = p.cfg_scale if p.cfg_scale > 1 else None
|
||||
self.cfg_end = p.cfg_end if p.cfg_end < 0 else None
|
||||
self.cfg_end = p.cfg_end if p.cfg_end < 1 else None
|
||||
self.image_cfg_scale = p.image_cfg_scale or 0
|
||||
self.steps = p.steps or 0
|
||||
self.batch_size = max(1, p.batch_size)
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
"venv": ". venv/bin/activate",
|
||||
"start": ". venv/bin/activate; python launch.py --debug",
|
||||
"localize": "node cli/localize.js",
|
||||
"packages": ". venv/bin/activate && pip install --upgrade transformers accelerate huggingface_hub safetensors tokenizers peft compel pytorch_lightning pylint ruff",
|
||||
"packages": ". venv/bin/activate && pip install --upgrade transformers accelerate huggingface_hub safetensors tokenizers peft pytorch_lightning pylint ruff",
|
||||
"eslint": "eslint . javascript/ extensions-builtin/sdnext-modernui/javascript/",
|
||||
"ruff": ". venv/bin/activate && ruff check",
|
||||
"pylint": ". venv/bin/activate && pylint *.py modules/ pipelines/ scripts/ extensions-builtin/ | grep -v '^*'",
|
||||
|
|
|
|||
Loading…
Reference in New Issue