Commit Graph

12965 Commits

Author SHA1 Message Date
vladmandic e5edfbc8c8 openvino test fp16/bf16 force false
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-12 19:46:30 +02:00
vladmandic 8070e51777 openvino backend
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-12 19:07:20 +02:00
vladmandic d1a40b3ba7 openvino device selecrtion
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-12 19:07:20 +02:00
vladmandic 1e38ff4623 update packages
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-12 19:06:09 +02:00
vladmandic 93f948af13 control add error handling
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-12 19:06:09 +02:00
vladmandic f06eb21d52 add hf-info
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-12 19:06:09 +02:00
vladmandic 49b0fa360f error handler for same-device
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-12 19:06:09 +02:00
vladmandic a00ea46114 add step1x-edit and vibe-edit
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-12 19:06:08 +02:00
vladmandic b103c2c1ff add gemma-4 heretic variant
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-12 19:06:08 +02:00
vladmandic da01e6ced2 add lumina-dimoo
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-12 19:06:08 +02:00
vladmandic 9b54bc5c85 update skills
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-12 19:06:08 +02:00
vladmandic 5f659553a0 add bria-fibo
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-12 19:06:08 +02:00
vladmandic e5e5105452 update todo and instructions
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-12 19:06:08 +02:00
vladmandic 456d17fcd3 cleanup bnb references
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-12 19:06:08 +02:00
vladmandic 91bba59c0d fix lint
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-12 19:06:08 +02:00
vladmandic 86118776a5 add skills and update changelog
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-12 19:06:08 +02:00
vladmandic 4ef2c7ab3b fix check-models
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-12 19:06:08 +02:00
vladmandic 9e6ce8a261 fix check-schedulers
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-12 19:06:08 +02:00
vladmandic 4349479eab add more skills
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-12 18:54:22 +02:00
vladmandic 15c8b2b0c4 fixes from check-api
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-12 18:54:22 +02:00
vladmandic b9a38b5955 ai-agents
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-12 18:54:22 +02:00
CalamitousFelicitousness 8d871af63d Merge pull request #4749 from vladmandic/fix/checkpoints-list-stale-ref
fix sd_checkpoint.list_models leaving stale sd_models.checkpoints_list
2026-04-11 23:23:47 +01:00
CalamitousFelicitousness 79d2f71e87 fix sd_checkpoint.list_models leaving stale sd_models.checkpoints_list reference
list_models() ended with `checkpoints_list = dict(sorted(...))`, which rebound
the module-level name to a fresh dict object. sd_models.py line 18 does
`from modules.sd_checkpoint import ... checkpoints_list`, capturing a reference
to the original dict at import time. Every subsequent list_models() call
cleared and refilled the sd_checkpoint binding but left the sd_models binding
frozen at the state it had after the first call. ui_extra_networks_checkpoints,
ui_models, extras, xyz_grid_classes, and sd-extension-system-info all read
through sd_models.checkpoints_list, so none of them could see models added
after startup without a full restart.

Sort in place instead, preserving dict identity so every importer stays in
sync with sd_checkpoint.checkpoints_list.
2026-04-11 22:27:39 +01:00
CalamitousFelicitousness 3526428673 Merge pull request #4745 from vladmandic/feat/er-sde-solver
add ER-SDE solver scheduler
2026-04-11 17:31:44 +01:00
CalamitousFelicitousness cfdce99957 fix ER-SDE flow-matching parameterization using alpha=1
The VP update formula uses lambda=sigma/alpha which blows up to ~1e8
for flow matching (where alpha=1-sigma approaches 0). This makes
r_fn=fn(next)/fn(curr) collapse to ~0, causing the sampler to discard
the previous sample and independently re-predict x0 at each step.

Set alpha=1 and lambda=sigma for flow matching so the VP formula
naturally reduces to the correct form r_f*x + (1-r_f)*x0 with
lambda in [0,1] where the noise function produces meaningful ratios.
2026-04-11 16:31:32 +01:00
CalamitousFelicitousness 3f5059f310 fix sign-destroying clamp in ER-SDE higher-order corrections
The 2nd/3rd order derivative denominators (lambda_curr - prev_lambda)
are always negative since lambda decreases during denoising.
The .clamp(min=1e-10) forced these to a tiny positive value, causing
d_x0 to explode by ~1e18 and producing NaN output.

- Add _safe_div helper that returns zero for near-zero denominators
  while preserving the sign for normal values
- Replace .clamp(min=1e-10) with _safe_div in both 2nd and 3rd order
2026-04-11 16:31:32 +01:00
CalamitousFelicitousness 0b0382375a fix flow-matching schedule computed internally when no sigmas provided 2026-04-11 16:31:32 +01:00
CalamitousFelicitousness 153a5febde fix sigmas always populated after set_timesteps 2026-04-11 16:31:32 +01:00
CalamitousFelicitousness 4d347049eb add ER-SDE solver scheduler 2026-04-11 16:31:32 +01:00
Vladimir Mandic 6bbea6a052 Merge pull request #4748 from resonantsky/dev
Cleared default paths.
2026-04-10 19:40:32 +02:00
resonantsky a48136bc78 Cleared default paths. 2026-04-10 19:36:51 +02:00
Disty0 947ba2871e Update OpenVINO to 2026.1.0 2026-04-10 19:52:45 +03:00
Disty0 a16ff95f18 SDNQ add nn.Embedding quantization support and add Gemma4 keys 2026-04-10 18:46:58 +03:00
Vladimir Mandic a64f672a7b Merge pull request #4746 from resonantsky/dev
Linux wheel \bin\ folder to \lib\ folder fix
2026-04-10 14:16:19 +02:00
resonantsky 5696ffefde Linux wheel \bin\ folder to \lib\ folder fix 2026-04-10 14:05:51 +02:00
vladmandic 6a10fca1d0 update image guard
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-09 14:33:35 +02:00
vladmandic 14ba5e4ce7 update nudenet
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-09 13:48:54 +02:00
CalamitousFelicitousness f1d2888f10 fix(lora): case-insensitive stage detection for two-stage LoRA names 2026-04-09 09:11:51 +01:00
vladmandic a16c7ac16e installer auto-restart on upgrade
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-09 09:34:25 +02:00
vladmandic 98cfae8dee update chaangelog
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-09 09:10:19 +02:00
Vladimir Mandic 1a9884fb32 Merge pull request #4743 from resonantsky/dev
ROCm default system path corrections
2026-04-09 09:06:15 +02:00
resonantsky e7ca946381 Merge branch 'vladmandic:dev' into dev 2026-04-09 08:43:58 +02:00
CalamitousFelicitousness 0e5d351099 add google gemma-4-e2b and gemma-4-e4b support
- add to prompt enhance models, img2img, and models_cls
- add to vlm/caption models
- update _load_gemma class selection for gemma 4
- bump transformers pin to 5.5.0.dev for gemma4 architecture support
2026-04-09 03:21:50 +01:00
CalamitousFelicitousness 13fcbd1112 update anima reference model to preview 3
- replace preview 1 and preview 2 entries with single preview 3 entry
- add preview 3 reference image
- update test image reference
2026-04-09 02:44:05 +01:00
vladmandic 7280926b22 disable hidream parser
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-08 22:46:31 +02:00
resonantsky b89439e5b4 some UI clean up 2026-04-08 21:40:06 +02:00
resonantsky 5d7cc3016a some UI clean up 2026-04-08 21:27:36 +02:00
resonantsky 1733de3401 ROCm default system path corrections 2026-04-08 20:43:14 +02:00
vladmandic 900acc9cc6 fix relpath
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-08 11:00:32 +02:00
vladmandic 44cb2f6f9c improve path_to_repo
Signed-off-by: vladmandic <mandic00@live.com>
2026-04-08 09:47:06 +02:00