mirror of
https://github.com/vladmandic/automatic
synced 2026-09-19 01:04:32 +02:00
remove samplers filtering
Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
+2
-1
@@ -1,6 +1,6 @@
|
||||
# Change Log for SD.Next
|
||||
|
||||
## Update for 2025-08-29
|
||||
## Update for 2025-08-30
|
||||
|
||||
- **Models**
|
||||
- **Chroma** final versions: [Chroma1-HD](https://huggingface.co/lodestones/Chroma1-HD), [Chroma1-Base](https://huggingface.co/lodestones/Chroma1-Base) and [Chroma1-Flash](https://huggingface.co/lodestones/Chroma1-Flash)
|
||||
@@ -35,6 +35,7 @@
|
||||
- add quantized matmul support for all quantization types and group sizes
|
||||
- **Fixes**
|
||||
- normalize path hanlding when deleting images
|
||||
- remove samplers filtering
|
||||
- fix hidden model tags in networks display
|
||||
- fix networks reference models display on windows
|
||||
- fix handling of pre-quantized `flux` models
|
||||
|
||||
@@ -48,11 +48,6 @@ def find_sampler_config(name):
|
||||
return config
|
||||
|
||||
|
||||
def visible_sampler_names():
|
||||
visible_samplers = [x for x in all_samplers if x.name in shared.opts.show_samplers] if len(shared.opts.show_samplers) > 0 else all_samplers
|
||||
return visible_samplers
|
||||
|
||||
|
||||
def restore_default(model):
|
||||
if model is None:
|
||||
return None
|
||||
@@ -131,7 +126,7 @@ def create_sampler(name, model):
|
||||
def set_samplers():
|
||||
global samplers # pylint: disable=global-statement
|
||||
global samplers_for_img2img # pylint: disable=global-statement
|
||||
samplers = visible_sampler_names()
|
||||
samplers = all_samplers
|
||||
# samplers_for_img2img = [x for x in samplers if x.name != "PLMS"]
|
||||
samplers_for_img2img = samplers
|
||||
samplers_map.clear()
|
||||
|
||||
+1
-1
Submodule wiki updated: 7df61988ae...e6232aebea
Reference in New Issue
Block a user