SD.Next: Advanced Implementation of Stable Diffusion
 
 
 
 
Go to file
Vladimir Mandic fa36f33b19 update 2023-01-11 13:48:56 -05:00
.github Merge pull request #6571 from mezotaken/master 2023-01-09 23:45:49 +03:00
configs decouple from origin 2023-01-05 16:58:00 -05:00
docs add homepage 2023-01-11 12:27:14 -05:00
embeddings update 2023-01-08 13:20:44 -05:00
extensions add placeholders 2023-01-06 12:15:25 -05:00
extensions-builtin add homepage 2023-01-11 12:27:14 -05:00
html Merge pull request #6055 from brkirch/sub-quad_attn_opt 2023-01-07 12:26:55 +03:00
javascript Fix keyboard navigation in modal image viewer 2023-01-11 11:41:50 +03:00
localizations revert exif fix 2023-01-06 11:37:56 -05:00
models update 2023-01-08 13:20:44 -05:00
modules update 2023-01-11 13:48:56 -05:00
outputs add placeholders 2023-01-06 12:15:25 -05:00
repositories add placeholders 2023-01-06 12:15:25 -05:00
scripts add extensions 2023-01-09 08:02:38 -05:00
test Merge pull request #9 from AUTOMATIC1111/master 2023-01-10 14:53:49 -05:00
train/templates add homepage 2023-01-11 12:27:14 -05:00
wiki@a5ec2cb2e1 update wiki 2023-01-11 12:27:23 -05:00
.gitignore update 2023-01-08 13:20:44 -05:00
.pylintrc Add basic Pylint to catch syntax errors on PRs 2022-10-15 16:26:07 +03:00
README.md update 2023-01-11 13:48:56 -05:00
artists.csv Update artists.csv 2022-10-18 18:11:20 +03:00
automatic.sh update 2023-01-11 13:48:56 -05:00
config.json update 2023-01-11 13:48:56 -05:00
launch.py Merge pull request #9 from AUTOMATIC1111/master 2023-01-10 14:53:49 -05:00
requirements.txt update 2023-01-07 11:10:44 -05:00
requirements_versions.txt update 2023-01-11 13:48:56 -05:00
script.js better targetting, class tabs was autoassigned 2023-01-03 23:25:34 -08:00
style.css add an option to use old hiresfix width/height behavior 2023-01-09 14:57:47 +03:00
ui-config.json add homepage 2023-01-11 12:27:14 -05:00
user.css add extensions 2023-01-09 08:02:38 -05:00
webui.py make a dropdown for prompt template selection 2023-01-09 23:35:40 +03:00

README.md

Stable Diffusion - Automatic

Heavily opinionated custom fork of https://github.com/AUTOMATIC1111/stable-diffusion-webui


Notes

Fork is as close as up-to-date with origin as time allows
All code changes are merged upstream whenever possible

Fork does differ in few things:

  • Different start script

    ./automatic.sh

  • Drops compatibility with python 3.7 and requires 3.10
  • If you're using PyTorch 2.0 models will be auto-compiled and optimized on load
    Using max-tune
  • Updated Python libraries to latest known compatible versions
    e.g. accelerate, transformers, numpy, etc.
  • Includes opinionated System and Options configuration
    e.g. samplers, upscalers, etc.
  • Includes reskinned UI
    Black and orange dark theme with fixed width options panels and larger previews
  • Includes SD2 configuration files
  • Ships with additional extensions
    e.g. System Info
  • Uses simplified folder structure
    e.g. /train, /outputs/*
  • Modified training templates

Only Python library which is not auto-updated is PyTorch itself as that is very system specific
I'm currently using PyTorch 2.0-nightly compiled with CUDA 11.8 and with Triton optimizations:

pip3 install --pre torch torchvision torchaudio torchtriton --extra-index-url https://download.pytorch.org/whl/nightly/cu118
pip show torch
2.0.0.dev20230111+cu118


Docs