mirror of
https://github.com/vladmandic/automatic
synced 2026-09-19 17:24:32 +02:00
update docs
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
||||
# Change Log for SD.Next
|
||||
|
||||
## Update for 2023-12-28
|
||||
## Update for 2023-12-29
|
||||
|
||||
- **Control**
|
||||
- native implementation of all image control methods:
|
||||
|
||||
@@ -20,7 +20,9 @@ All individual features are not listed here, instead check [ChangeLog](CHANGELOG
|
||||
- Multiple backends!
|
||||
▹ **Original | Diffusers**
|
||||
- Multiple diffusion models!
|
||||
▹ **Stable Diffusion | SD-XL | LCM | Segmind | Kandinsky | Pixart-α | Würstchen | DeepFloyd IF | UniDiffusion | SD-Distilled | etc.**
|
||||
▹ **Stable Diffusion 1.5/2.1 | SD-XL | LCM | Segmind | Kandinsky | Pixart-α | Würstchen | aMUSEd | DeepFloyd IF | UniDiffusion | SD-Distilled | BLiP Diffusion | etc.**
|
||||
- Built-in Control for Text, Image, Batch and video processing!
|
||||
▹ **ControlNet | ControlNet XS | Control LLLite | T2I Adapters | IP Adapters**
|
||||
- Multiplatform!
|
||||
▹ **Windows | Linux | MacOS with CPU | nVidia | AMD | IntelArc | DirectML | OpenVINO | ONNX+Olive**
|
||||
- Platform specific autodetection and tuning performed on install
|
||||
@@ -28,7 +30,6 @@ All individual features are not listed here, instead check [ChangeLog](CHANGELOG
|
||||
- Improved prompt parser
|
||||
- Enhanced *Lora*/*LoCon*/*Lyco* code supporting latest trends in training
|
||||
- Built-in queue management
|
||||
- Advanced metadata caching and handling to speed up operations
|
||||
- Enterprise level logging and hardened API
|
||||
- Modern localization and hints engine
|
||||
- Broad compatibility with existing extensions ecosystem and new extensions manager
|
||||
@@ -37,7 +38,8 @@ All individual features are not listed here, instead check [ChangeLog](CHANGELOG
|
||||
|
||||
<br>
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
<br>
|
||||
@@ -62,6 +64,7 @@ Additional models will be added as they become available and there is public int
|
||||
- [StabilityAI Stable Diffusion XL](https://github.com/Stability-AI/generative-models)
|
||||
- [StabilityAI Stable Video Diffusion](https://huggingface.co/stabilityai/stable-video-diffusion-img2vid) Base and XT
|
||||
- [LCM: Latent Consistency Models](https://github.com/openai/consistency_models)
|
||||
- [aMUSEd 256](https://huggingface.co/amused/amused-256) 256 and 512
|
||||
- [Segmind Vega](https://huggingface.co/segmind/Segmind-Vega)
|
||||
- [Segmind SSD-1B](https://huggingface.co/segmind/SSD-1B)
|
||||
- [Kandinsky](https://github.com/ai-forever/Kandinsky-2) *2.1 and 2.2 and latest 3.0*
|
||||
@@ -72,6 +75,8 @@ Additional models will be added as they become available and there is public int
|
||||
- [DeepFloyd IF](https://github.com/deep-floyd/IF) *Medium and Large*
|
||||
- [ModelScope T2V](https://huggingface.co/damo-vilab/text-to-video-ms-1.7b)
|
||||
- [Segmind SD Distilled](https://huggingface.co/blog/sd_distillation) *(all variants)*
|
||||
- [BLIP-Diffusion](https://dxli94.github.io/BLIP-Diffusion-website/)
|
||||
|
||||
|
||||
Also supported are modifiers such as:
|
||||
- **LCM** and **Turbo** (Adversarial Diffusion Distillation) networks
|
||||
|
||||
Submodule extensions-builtin/sd-webui-controlnet updated: b7a9bea231...dc0d590faf
Binary file not shown.
|
After Width: | Height: | Size: 143 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 196 KiB |
@@ -22,6 +22,11 @@ def test_processors(image):
|
||||
else:
|
||||
output = processor(image)
|
||||
processor.reset()
|
||||
if output.size != image.size:
|
||||
output = output.resize(image.size, Image.Resampling.LANCZOS)
|
||||
if output.mode != image.mode:
|
||||
output = output.convert(image.mode)
|
||||
shared.log.debug(f'Testing processor: input={image} mode={image.mode} output={output} mode={output.mode}')
|
||||
diff = ImageChops.difference(image, output)
|
||||
if not diff.getbbox():
|
||||
processor_id = f'{processor_id} null'
|
||||
|
||||
Reference in New Issue
Block a user