Skip to content

Commit 4a297d7

Browse files
committed
update diffusers/transformers
Signed-off-by: vladmandic <mandic00@live.com>
1 parent 397631f commit 4a297d7

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
### Highlights for 2026-03-26
66

77
This release brings massive code refactoring to modernize codebase and removal of some obsolete features. Leaner & Faster!
8-
And since its a bit quieter period when it comes to new models, notable additions would be : *FireRed-Image-Edit* *SkyWorks-UniPic-3* and new *Anima-Preview*
8+
And since its a bit quieter period when it comes to new models, notable additions would be : *FireRed-Image-Edit*, *SkyWorks-UniPic-3* and new versions of *Anima-Preview*, *Flux-Klein-KV*
99

1010
If you're on Windows platform, we have a brand new [All-in-one Installer & Launcher](https://github.com/vladmandic/sdnext-launcher): simply download [exe or zip](https://github.com/vladmandic/sdnext-launcher/releases) and done!
1111

@@ -27,6 +27,7 @@ But also many smaller quality-of-life improvements - for full details, see [Chan
2727
- [Skyworks UniPic-3](https://huggingface.co/Skywork/Unipic3), *Consistency and DMD* variants to reference/community section
2828
*Note*: UniPic-3 is a fine-tune of Qwen-Image-Edit with new distillation regardless of its claim of major changes
2929
- [Anima Preview-v2](https://huggingface.co/circlestone-labs/Anima)
30+
- [FLUX.2-Klein-KV](https://huggingface.co/black-forest-labs/FLUX.2-klein-9b-kv), thanks @liutyi
3031
- **Image manipulation**
3132
- new **Color grading** module
3233
apply basic corrections to your images: brightness,contrast,saturation,shadows,highlights

TODO.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
- Add notes: **Enso**
77
- Tips: **Color Grading**
88
- Regen: **Localization**
9+
- Rebuild: **Launcher** with `master`
910

1011
## Internal
1112

installer.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ def check_diffusers():
475475
t_start = time.time()
476476
if args.skip_all:
477477
return
478-
target_commit = "c02c17c6ee7ac508c56925dde4d4a3c587650dc3" # diffusers commit hash
478+
target_commit = "85ffcf1db23c0e981215416abd8e8a748bfd86b6" # diffusers commit hash == 0.37.1.dev-0326
479479
# if args.use_rocm or args.use_zluda or args.use_directml:
480480
# sha = '043ab2520f6a19fce78e6e060a68dbc947edb9f9' # lock diffusers versions for now
481481
pkg = package_spec('diffusers')
@@ -503,7 +503,8 @@ def check_transformers():
503503
pkg_transformers = package_spec('transformers')
504504
pkg_tokenizers = package_spec('tokenizers')
505505
# target_commit = '753d61104116eefc8ffc977327b441ee0c8d599f' # transformers commit hash == 4.57.6
506-
target_commit = "aad13b87ed59f2afcfaebc985f403301887a35fc" # transformers commit hash == 5.3.0
506+
# target_commit = "aad13b87ed59f2afcfaebc985f403301887a35fc" # transformers commit hash == 5.3.0
507+
target_commit = "c9faacd7d57459157656bdffe049dabb6293f011" # transformers commit hash == 5.3.0.dev-0326
507508
if args.use_directml:
508509
target_transformers = '4.52.4'
509510
target_tokenizers = '0.21.4'

modules/intel/ipex/hijacks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ def ipex_hijacks():
379379
# transformers completely breaks when anything is done to torch.tensor
380380
# even straight passthroughs breaks transformers for some reason
381381
#torch.tensor = torch_tensor
382-
382+
383383
torch.empty = torch_empty
384384
torch.randn = torch_randn
385385
torch.ones = torch_ones

0 commit comments

Comments
 (0)