airomix commited on
Commit
8e68b99
1 Parent(s): 3cca89d

Upload 511 files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .eslintignore +4 -0
  2. .eslintrc.js +98 -0
  3. .git-blame-ignore-revs +2 -0
  4. .github/ISSUE_TEMPLATE/bug_report.yml +105 -0
  5. .github/ISSUE_TEMPLATE/config.yml +5 -0
  6. .github/ISSUE_TEMPLATE/feature_request.yml +40 -0
  7. .github/pull_request_template.md +15 -0
  8. .github/workflows/on_pull_request.yaml +38 -0
  9. .github/workflows/run_tests.yaml +73 -0
  10. .github/workflows/warns_merge_master.yml +19 -0
  11. .gitignore +39 -0
  12. .pylintrc +3 -0
  13. CHANGELOG.md +674 -0
  14. CITATION.cff +7 -0
  15. CODEOWNERS +12 -0
  16. LICENSE.txt +663 -0
  17. README.md +181 -0
  18. config.json +439 -0
  19. configs/alt-diffusion-inference.yaml +72 -0
  20. configs/alt-diffusion-m18-inference.yaml +73 -0
  21. configs/instruct-pix2pix.yaml +98 -0
  22. configs/v1-inference.yaml +70 -0
  23. configs/v1-inpainting-inference.yaml +70 -0
  24. embeddings/Asian-Less-Neg.pt +3 -0
  25. embeddings/BadDream.pt +3 -0
  26. embeddings/CyberRealistic_Negative-neg.pt +3 -0
  27. embeddings/EasyNegativeV2.safetensors +3 -0
  28. embeddings/FastNegativeEmbedding.pt +3 -0
  29. embeddings/HyperStylizeV6.pt +3 -0
  30. embeddings/Place Textual Inversion embeddings here.txt +0 -0
  31. embeddings/UnrealisticDream.pt +3 -0
  32. embeddings/bad-artist-anime.pt +3 -0
  33. embeddings/bad-artist.pt +3 -0
  34. embeddings/bad-hands-5.pt +3 -0
  35. embeddings/bad-image-v2-39000.pt +3 -0
  36. embeddings/bad-picture-chill-75v.pt +3 -0
  37. embeddings/bad_pictures.pt +3 -0
  38. embeddings/bad_prompt.pt +3 -0
  39. embeddings/bad_prompt_version2.pt +3 -0
  40. embeddings/badhandv4.pt +3 -0
  41. embeddings/charturnerv2.pt +3 -0
  42. embeddings/easynegative.safetensors +3 -0
  43. embeddings/epiCNegative.pt +3 -0
  44. embeddings/epiCRealism.pt +3 -0
  45. embeddings/negative_hand-neg.pt +3 -0
  46. embeddings/ng_deepnegative_v1_75t.pt +3 -0
  47. embeddings/pureerosface_v1.pt +3 -0
  48. embeddings/rmadanegative402_sd15-neg.pt +3 -0
  49. embeddings/ulzzang-6500-v1.1.bin +3 -0
  50. embeddings/ulzzang-6500.pt +3 -0
.eslintignore ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ extensions
2
+ extensions-disabled
3
+ repositories
4
+ venv
.eslintrc.js ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* global module */
2
+ module.exports = {
3
+ env: {
4
+ browser: true,
5
+ es2021: true,
6
+ },
7
+ extends: "eslint:recommended",
8
+ parserOptions: {
9
+ ecmaVersion: "latest",
10
+ },
11
+ rules: {
12
+ "arrow-spacing": "error",
13
+ "block-spacing": "error",
14
+ "brace-style": "error",
15
+ "comma-dangle": ["error", "only-multiline"],
16
+ "comma-spacing": "error",
17
+ "comma-style": ["error", "last"],
18
+ "curly": ["error", "multi-line", "consistent"],
19
+ "eol-last": "error",
20
+ "func-call-spacing": "error",
21
+ "function-call-argument-newline": ["error", "consistent"],
22
+ "function-paren-newline": ["error", "consistent"],
23
+ "indent": ["error", 4],
24
+ "key-spacing": "error",
25
+ "keyword-spacing": "error",
26
+ "linebreak-style": ["error", "unix"],
27
+ "no-extra-semi": "error",
28
+ "no-mixed-spaces-and-tabs": "error",
29
+ "no-multi-spaces": "error",
30
+ "no-redeclare": ["error", {builtinGlobals: false}],
31
+ "no-trailing-spaces": "error",
32
+ "no-unused-vars": "off",
33
+ "no-whitespace-before-property": "error",
34
+ "object-curly-newline": ["error", {consistent: true, multiline: true}],
35
+ "object-curly-spacing": ["error", "never"],
36
+ "operator-linebreak": ["error", "after"],
37
+ "quote-props": ["error", "consistent-as-needed"],
38
+ "semi": ["error", "always"],
39
+ "semi-spacing": "error",
40
+ "semi-style": ["error", "last"],
41
+ "space-before-blocks": "error",
42
+ "space-before-function-paren": ["error", "never"],
43
+ "space-in-parens": ["error", "never"],
44
+ "space-infix-ops": "error",
45
+ "space-unary-ops": "error",
46
+ "switch-colon-spacing": "error",
47
+ "template-curly-spacing": ["error", "never"],
48
+ "unicode-bom": "error",
49
+ },
50
+ globals: {
51
+ //script.js
52
+ gradioApp: "readonly",
53
+ executeCallbacks: "readonly",
54
+ onAfterUiUpdate: "readonly",
55
+ onOptionsChanged: "readonly",
56
+ onUiLoaded: "readonly",
57
+ onUiUpdate: "readonly",
58
+ uiCurrentTab: "writable",
59
+ uiElementInSight: "readonly",
60
+ uiElementIsVisible: "readonly",
61
+ //ui.js
62
+ opts: "writable",
63
+ all_gallery_buttons: "readonly",
64
+ selected_gallery_button: "readonly",
65
+ selected_gallery_index: "readonly",
66
+ switch_to_txt2img: "readonly",
67
+ switch_to_img2img_tab: "readonly",
68
+ switch_to_img2img: "readonly",
69
+ switch_to_sketch: "readonly",
70
+ switch_to_inpaint: "readonly",
71
+ switch_to_inpaint_sketch: "readonly",
72
+ switch_to_extras: "readonly",
73
+ get_tab_index: "readonly",
74
+ create_submit_args: "readonly",
75
+ restart_reload: "readonly",
76
+ updateInput: "readonly",
77
+ onEdit: "readonly",
78
+ //extraNetworks.js
79
+ requestGet: "readonly",
80
+ popup: "readonly",
81
+ // from python
82
+ localization: "readonly",
83
+ // progrssbar.js
84
+ randomId: "readonly",
85
+ requestProgress: "readonly",
86
+ // imageviewer.js
87
+ modalPrevImage: "readonly",
88
+ modalNextImage: "readonly",
89
+ // token-counters.js
90
+ setupTokenCounters: "readonly",
91
+ // localStorage.js
92
+ localSet: "readonly",
93
+ localGet: "readonly",
94
+ localRemove: "readonly",
95
+ // resizeHandle.js
96
+ setupResizeHandle: "writable"
97
+ }
98
+ };
.git-blame-ignore-revs ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ # Apply ESlint
2
+ 9c54b78d9dde5601e916f308d9a9d6953ec39430
.github/ISSUE_TEMPLATE/bug_report.yml ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Bug Report
2
+ description: You think something is broken in the UI
3
+ title: "[Bug]: "
4
+ labels: ["bug-report"]
5
+
6
+ body:
7
+ - type: markdown
8
+ attributes:
9
+ value: |
10
+ > The title of the bug report should be short and descriptive.
11
+ > Use relevant keywords for searchability.
12
+ > Do not leave it blank, but also do not put an entire error log in it.
13
+ - type: checkboxes
14
+ attributes:
15
+ label: Checklist
16
+ description: |
17
+ Please perform basic debugging to see if extensions or configuration is the cause of the issue.
18
+ Basic debug procedure
19
+  1. Disable all third-party extensions - check if extension is the cause
20
+  2. Update extensions and webui - sometimes things just need to be updated
21
+  3. Backup and remove your config.json and ui-config.json - check if the issue is caused by bad configuration
22
+  4. Delete venv with third-party extensions disabled - sometimes extensions might cause wrong libraries to be installed
23
+  5. Try a fresh installation webui in a different directory - see if a clean installation solves the issue
24
+ Before making a issue report please, check that the issue hasn't been reported recently.
25
+ options:
26
+ - label: The issue exists after disabling all extensions
27
+ - label: The issue exists on a clean installation of webui
28
+ - label: The issue is caused by an extension, but I believe it is caused by a bug in the webui
29
+ - label: The issue exists in the current version of the webui
30
+ - label: The issue has not been reported before recently
31
+ - label: The issue has been reported before but has not been fixed yet
32
+ - type: markdown
33
+ attributes:
34
+ value: |
35
+ > Please fill this form with as much information as possible. Don't forget to "Upload Sysinfo" and "What browsers" and provide screenshots if possible
36
+ - type: textarea
37
+ id: what-did
38
+ attributes:
39
+ label: What happened?
40
+ description: Tell us what happened in a very clear and simple way
41
+ placeholder: |
42
+ txt2img is not working as intended.
43
+ validations:
44
+ required: true
45
+ - type: textarea
46
+ id: steps
47
+ attributes:
48
+ label: Steps to reproduce the problem
49
+ description: Please provide us with precise step by step instructions on how to reproduce the bug
50
+ placeholder: |
51
+ 1. Go to ...
52
+ 2. Press ...
53
+ 3. ...
54
+ validations:
55
+ required: true
56
+ - type: textarea
57
+ id: what-should
58
+ attributes:
59
+ label: What should have happened?
60
+ description: Tell us what you think the normal behavior should be
61
+ placeholder: |
62
+ WebUI should ...
63
+ validations:
64
+ required: true
65
+ - type: dropdown
66
+ id: browsers
67
+ attributes:
68
+ label: What browsers do you use to access the UI ?
69
+ multiple: true
70
+ options:
71
+ - Mozilla Firefox
72
+ - Google Chrome
73
+ - Brave
74
+ - Apple Safari
75
+ - Microsoft Edge
76
+ - Android
77
+ - iOS
78
+ - Other
79
+ - type: textarea
80
+ id: sysinfo
81
+ attributes:
82
+ label: Sysinfo
83
+ description: System info file, generated by WebUI. You can generate it in settings, on the Sysinfo page. Drag the file into the field to upload it. If you submit your report without including the sysinfo file, the report will be closed. If needed, review the report to make sure it includes no personal information you don't want to share. If you can't start WebUI, you can use --dump-sysinfo commandline argument to generate the file.
84
+ placeholder: |
85
+ 1. Go to WebUI Settings -> Sysinfo -> Download system info.
86
+ If WebUI fails to launch, use --dump-sysinfo commandline argument to generate the file
87
+ 2. Upload the Sysinfo as a attached file, Do NOT paste it in as plain text.
88
+ validations:
89
+ required: true
90
+ - type: textarea
91
+ id: logs
92
+ attributes:
93
+ label: Console logs
94
+ description: Please provide **full** cmd/terminal logs from the moment you started UI to the end of it, after the bug occured. If it's very long, provide a link to pastebin or similar service.
95
+ render: Shell
96
+ validations:
97
+ required: true
98
+ - type: textarea
99
+ id: misc
100
+ attributes:
101
+ label: Additional information
102
+ description: |
103
+ Please provide us with any relevant additional info or context.
104
+ Examples:
105
+  I have updated my GPU driver recently.
.github/ISSUE_TEMPLATE/config.yml ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ blank_issues_enabled: false
2
+ contact_links:
3
+ - name: WebUI Community Support
4
+ url: https://github.com/AUTOMATIC1111/stable-diffusion-webui/discussions
5
+ about: Please ask and answer questions here.
.github/ISSUE_TEMPLATE/feature_request.yml ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Feature request
2
+ description: Suggest an idea for this project
3
+ title: "[Feature Request]: "
4
+ labels: ["enhancement"]
5
+
6
+ body:
7
+ - type: checkboxes
8
+ attributes:
9
+ label: Is there an existing issue for this?
10
+ description: Please search to see if an issue already exists for the feature you want, and that it's not implemented in a recent build/commit.
11
+ options:
12
+ - label: I have searched the existing issues and checked the recent builds/commits
13
+ required: true
14
+ - type: markdown
15
+ attributes:
16
+ value: |
17
+ *Please fill this form with as much information as possible, provide screenshots and/or illustrations of the feature if possible*
18
+ - type: textarea
19
+ id: feature
20
+ attributes:
21
+ label: What would your feature do ?
22
+ description: Tell us about your feature in a very clear and simple way, and what problem it would solve
23
+ validations:
24
+ required: true
25
+ - type: textarea
26
+ id: workflow
27
+ attributes:
28
+ label: Proposed workflow
29
+ description: Please provide us with step by step information on how you'd like the feature to be accessed and used
30
+ value: |
31
+ 1. Go to ....
32
+ 2. Press ....
33
+ 3. ...
34
+ validations:
35
+ required: true
36
+ - type: textarea
37
+ id: misc
38
+ attributes:
39
+ label: Additional information
40
+ description: Add any other context or screenshots about the feature request here.
.github/pull_request_template.md ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Description
2
+
3
+ * a simple description of what you're trying to accomplish
4
+ * a summary of changes in code
5
+ * which issues it fixes, if any
6
+
7
+ ## Screenshots/videos:
8
+
9
+
10
+ ## Checklist:
11
+
12
+ - [ ] I have read [contributing wiki page](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Contributing)
13
+ - [ ] I have performed a self-review of my own code
14
+ - [ ] My code follows the [style guidelines](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Contributing#code-style)
15
+ - [ ] My code passes [tests](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Tests)
.github/workflows/on_pull_request.yaml ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Linter
2
+
3
+ on:
4
+ - push
5
+ - pull_request
6
+
7
+ jobs:
8
+ lint-python:
9
+ name: ruff
10
+ runs-on: ubuntu-latest
11
+ if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
12
+ steps:
13
+ - name: Checkout Code
14
+ uses: actions/checkout@v3
15
+ - uses: actions/setup-python@v4
16
+ with:
17
+ python-version: 3.11
18
+ # NB: there's no cache: pip here since we're not installing anything
19
+ # from the requirements.txt file(s) in the repository; it's faster
20
+ # not to have GHA download an (at the time of writing) 4 GB cache
21
+ # of PyTorch and other dependencies.
22
+ - name: Install Ruff
23
+ run: pip install ruff==0.1.6
24
+ - name: Run Ruff
25
+ run: ruff .
26
+ lint-js:
27
+ name: eslint
28
+ runs-on: ubuntu-latest
29
+ if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
30
+ steps:
31
+ - name: Checkout Code
32
+ uses: actions/checkout@v3
33
+ - name: Install Node.js
34
+ uses: actions/setup-node@v3
35
+ with:
36
+ node-version: 18
37
+ - run: npm i --ci
38
+ - run: npm run lint
.github/workflows/run_tests.yaml ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Tests
2
+
3
+ on:
4
+ - push
5
+ - pull_request
6
+
7
+ jobs:
8
+ test:
9
+ name: tests on CPU with empty model
10
+ runs-on: ubuntu-latest
11
+ if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
12
+ steps:
13
+ - name: Checkout Code
14
+ uses: actions/checkout@v3
15
+ - name: Set up Python 3.10
16
+ uses: actions/setup-python@v4
17
+ with:
18
+ python-version: 3.10.6
19
+ cache: pip
20
+ cache-dependency-path: |
21
+ **/requirements*txt
22
+ launch.py
23
+ - name: Install test dependencies
24
+ run: pip install wait-for-it -r requirements-test.txt
25
+ env:
26
+ PIP_DISABLE_PIP_VERSION_CHECK: "1"
27
+ PIP_PROGRESS_BAR: "off"
28
+ - name: Setup environment
29
+ run: python launch.py --skip-torch-cuda-test --exit
30
+ env:
31
+ PIP_DISABLE_PIP_VERSION_CHECK: "1"
32
+ PIP_PROGRESS_BAR: "off"
33
+ TORCH_INDEX_URL: https://download.pytorch.org/whl/cpu
34
+ WEBUI_LAUNCH_LIVE_OUTPUT: "1"
35
+ PYTHONUNBUFFERED: "1"
36
+ - name: Start test server
37
+ run: >
38
+ python -m coverage run
39
+ --data-file=.coverage.server
40
+ launch.py
41
+ --skip-prepare-environment
42
+ --skip-torch-cuda-test
43
+ --test-server
44
+ --do-not-download-clip
45
+ --no-half
46
+ --disable-opt-split-attention
47
+ --use-cpu all
48
+ --api-server-stop
49
+ 2>&1 | tee output.txt &
50
+ - name: Run tests
51
+ run: |
52
+ wait-for-it --service 127.0.0.1:7860 -t 600
53
+ python -m pytest -vv --junitxml=test/results.xml --cov . --cov-report=xml --verify-base-url test
54
+ - name: Kill test server
55
+ if: always()
56
+ run: curl -vv -XPOST http://127.0.0.1:7860/sdapi/v1/server-stop && sleep 10
57
+ - name: Show coverage
58
+ run: |
59
+ python -m coverage combine .coverage*
60
+ python -m coverage report -i
61
+ python -m coverage html -i
62
+ - name: Upload main app output
63
+ uses: actions/upload-artifact@v3
64
+ if: always()
65
+ with:
66
+ name: output
67
+ path: output.txt
68
+ - name: Upload coverage HTML
69
+ uses: actions/upload-artifact@v3
70
+ if: always()
71
+ with:
72
+ name: htmlcov
73
+ path: htmlcov
.github/workflows/warns_merge_master.yml ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Pull requests can't target master branch
2
+
3
+ "on":
4
+ pull_request:
5
+ types:
6
+ - opened
7
+ - synchronize
8
+ - reopened
9
+ branches:
10
+ - master
11
+
12
+ jobs:
13
+ check:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Warning marge into master
17
+ run: |
18
+ echo -e "::warning::This pull request directly merge into \"master\" branch, normally development happens on \"dev\" branch."
19
+ exit 1
.gitignore ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ __pycache__
2
+ *.ckpt
3
+ *.safetensors
4
+ *.pth
5
+ /ESRGAN/*
6
+ /SwinIR/*
7
+ /repositories
8
+ /venv
9
+ /tmp
10
+ /model.ckpt
11
+ /models/**/*
12
+ /GFPGANv1.3.pth
13
+ /gfpgan/weights/*.pth
14
+ /ui-config.json
15
+ /outputs
16
+ /config.json
17
+ /log
18
+ /webui.settings.bat
19
+ /embeddings
20
+ /styles.csv
21
+ /params.txt
22
+ /styles.csv.bak
23
+ /webui-user.bat
24
+ /webui-user.sh
25
+ /interrogate
26
+ /user.css
27
+ /.idea
28
+ notification.mp3
29
+ /SwinIR
30
+ /textual_inversion
31
+ .vscode
32
+ /extensions
33
+ /test/stdout.txt
34
+ /test/stderr.txt
35
+ /cache.json*
36
+ /config_states/
37
+ /node_modules
38
+ /package-lock.json
39
+ /.coverage*
.pylintrc ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ # See https://pylint.pycqa.org/en/latest/user_guide/messages/message_control.html
2
+ [MESSAGES CONTROL]
3
+ disable=C,R,W,E,I
CHANGELOG.md ADDED
@@ -0,0 +1,674 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## 1.7.0
2
+
3
+ ### Features:
4
+ * settings tab rework: add search field, add categories, split UI settings page into many
5
+ * add altdiffusion-m18 support ([#13364](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13364))
6
+ * support inference with LyCORIS GLora networks ([#13610](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13610))
7
+ * add lora-embedding bundle system ([#13568](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13568))
8
+ * option to move prompt from top row into generation parameters
9
+ * add support for SSD-1B ([#13865](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13865))
10
+ * support inference with OFT networks ([#13692](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13692))
11
+ * script metadata and DAG sorting mechanism ([#13944](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13944))
12
+ * support HyperTile optimization ([#13948](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13948))
13
+ * add support for SD 2.1 Turbo ([#14170](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14170))
14
+ * remove Train->Preprocessing tab and put all its functionality into Extras tab
15
+ * initial IPEX support for Intel Arc GPU ([#14171](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14171))
16
+
17
+ ### Minor:
18
+ * allow reading model hash from images in img2img batch mode ([#12767](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12767))
19
+ * add option to align with sgm repo's sampling implementation ([#12818](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12818))
20
+ * extra field for lora metadata viewer: `ss_output_name` ([#12838](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12838))
21
+ * add action in settings page to calculate all SD checkpoint hashes ([#12909](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12909))
22
+ * add button to copy prompt to style editor ([#12975](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12975))
23
+ * add --skip-load-model-at-start option ([#13253](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13253))
24
+ * write infotext to gif images
25
+ * read infotext from gif images ([#13068](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13068))
26
+ * allow configuring the initial state of InputAccordion in ui-config.json ([#13189](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13189))
27
+ * allow editing whitespace delimiters for ctrl+up/ctrl+down prompt editing ([#13444](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13444))
28
+ * prevent accidentally closing popup dialogs ([#13480](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13480))
29
+ * added option to play notification sound or not ([#13631](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13631))
30
+ * show the preview image in the full screen image viewer if available ([#13459](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13459))
31
+ * support for webui.settings.bat ([#13638](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13638))
32
+ * add an option to not print stack traces on ctrl+c
33
+ * start/restart generation by Ctrl (Alt) + Enter ([#13644](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13644))
34
+ * update prompts_from_file script to allow concatenating entries with the general prompt ([#13733](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13733))
35
+ * added a visible checkbox to input accordion
36
+ * added an option to hide all txt2img/img2img parameters in an accordion ([#13826](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13826))
37
+ * added 'Path' sorting option for Extra network cards ([#13968](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13968))
38
+ * enable prompt hotkeys in style editor ([#13931](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13931))
39
+ * option to show batch img2img results in UI ([#14009](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14009))
40
+ * infotext updates: add option to disregard certain infotext fields, add option to not include VAE in infotext, add explanation to infotext settings page, move some options to infotext settings page
41
+ * add FP32 fallback support on sd_vae_approx ([#14046](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14046))
42
+ * support XYZ scripts / split hires path from unet ([#14126](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14126))
43
+ * allow use of mutiple styles csv files ([#14125](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14125))
44
+
45
+ ### Extensions and API:
46
+ * update gradio to 3.41.2
47
+ * support installed extensions list api ([#12774](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12774))
48
+ * update pnginfo API to return dict with parsed values
49
+ * add noisy latent to `ExtraNoiseParams` for callback ([#12856](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12856))
50
+ * show extension datetime in UTC ([#12864](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12864), [#12865](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12865), [#13281](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13281))
51
+ * add an option to choose how to combine hires fix and refiner
52
+ * include program version in info response. ([#13135](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13135))
53
+ * sd_unet support for SDXL
54
+ * patch DDPM.register_betas so that users can put given_betas in model yaml ([#13276](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13276))
55
+ * xyz_grid: add prepare ([#13266](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13266))
56
+ * allow multiple localization files with same language in extensions ([#13077](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13077))
57
+ * add onEdit function for js and rework token-counter.js to use it
58
+ * fix the key error exception when processing override_settings keys ([#13567](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13567))
59
+ * ability for extensions to return custom data via api in response.images ([#13463](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13463))
60
+ * call state.jobnext() before postproces*() ([#13762](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13762))
61
+ * add option to set notification sound volume ([#13884](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13884))
62
+ * update Ruff to 0.1.6 ([#14059](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14059))
63
+ * add Block component creation callback ([#14119](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14119))
64
+ * catch uncaught exception with ui creation scripts ([#14120](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14120))
65
+ * use extension name for determining an extension is installed in the index ([#14063](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14063))
66
+ * update is_installed() from launch_utils.py to fix reinstalling already installed packages ([#14192](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14192))
67
+
68
+ ### Bug Fixes:
69
+ * fix pix2pix producing bad results
70
+ * fix defaults settings page breaking when any of main UI tabs are hidden
71
+ * fix error that causes some extra networks to be disabled if both <lora:> and <lyco:> are present in the prompt
72
+ * fix for Reload UI function: if you reload UI on one tab, other opened tabs will no longer stop working
73
+ * prevent duplicate resize handler ([#12795](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12795))
74
+ * small typo: vae resolve bug ([#12797](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12797))
75
+ * hide broken image crop tool ([#12792](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12792))
76
+ * don't show hidden samplers in dropdown for XYZ script ([#12780](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12780))
77
+ * fix style editing dialog breaking if it's opened in both img2img and txt2img tabs
78
+ * hide --gradio-auth and --api-auth values from /internal/sysinfo report
79
+ * add missing infotext for RNG in options ([#12819](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12819))
80
+ * fix notification not playing when built-in webui tab is inactive ([#12834](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12834))
81
+ * honor `--skip-install` for extension installers ([#12832](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12832))
82
+ * don't print blank stdout in extension installers ([#12833](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12833), [#12855](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12855))
83
+ * get progressbar to display correctly in extensions tab
84
+ * keep order in list of checkpoints when loading model that doesn't have a checksum
85
+ * fix inpainting models in txt2img creating black pictures
86
+ * fix generation params regex ([#12876](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12876))
87
+ * fix batch img2img output dir with script ([#12926](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12926))
88
+ * fix #13080 - Hypernetwork/TI preview generation ([#13084](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13084))
89
+ * fix bug with sigma min/max overrides. ([#12995](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12995))
90
+ * more accurate check for enabling cuDNN benchmark on 16XX cards ([#12924](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12924))
91
+ * don't use multicond parser for negative prompt counter ([#13118](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13118))
92
+ * fix data-sort-name containing spaces ([#13412](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13412))
93
+ * update card on correct tab when editing metadata ([#13411](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13411))
94
+ * fix viewing/editing metadata when filename contains an apostrophe ([#13395](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13395))
95
+ * fix: --sd_model in "Prompts from file or textbox" script is not working ([#13302](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13302))
96
+ * better Support for Portable Git ([#13231](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13231))
97
+ * fix issues when webui_dir is not work_dir ([#13210](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13210))
98
+ * fix: lora-bias-backup don't reset cache ([#13178](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13178))
99
+ * account for customizable extra network separators whyen removing extra network text from the prompt ([#12877](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12877))
100
+ * re fix batch img2img output dir with script ([#13170](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13170))
101
+ * fix `--ckpt-dir` path separator and option use `short name` for checkpoint dropdown ([#13139](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13139))
102
+ * consolidated allowed preview formats, Fix extra network `.gif` not woking as preview ([#13121](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13121))
103
+ * fix venv_dir=- environment variable not working as expected on linux ([#13469](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13469))
104
+ * repair unload sd checkpoint button
105
+ * edit-attention fixes ([#13533](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13533))
106
+ * fix bug when using --gfpgan-models-path ([#13718](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13718))
107
+ * properly apply sort order for extra network cards when selected from dropdown
108
+ * fixes generation restart not working for some users when 'Ctrl+Enter' is pressed ([#13962](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13962))
109
+ * thread safe extra network list_items ([#13014](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13014))
110
+ * fix not able to exit metadata popup when pop up is too big ([#14156](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14156))
111
+ * fix auto focal point crop for opencv >= 4.8 ([#14121](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14121))
112
+ * make 'use-cpu all' actually apply to 'all' ([#14131](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14131))
113
+ * extras tab batch: actually use original filename
114
+ * make webui not crash when running with --disable-all-extensions option
115
+
116
+ ### Other:
117
+ * non-local condition ([#12814](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12814))
118
+ * fix minor typos ([#12827](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12827))
119
+ * remove xformers Python version check ([#12842](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12842))
120
+ * style: file-metadata word-break ([#12837](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12837))
121
+ * revert SGM noise multiplier change for img2img because it breaks hires fix
122
+ * do not change quicksettings dropdown option when value returned is `None` ([#12854](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12854))
123
+ * [RC 1.6.0 - zoom is partly hidden] Update style.css ([#12839](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12839))
124
+ * chore: change extension time format ([#12851](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12851))
125
+ * WEBUI.SH - Use torch 2.1.0 release candidate for Navi 3 ([#12929](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12929))
126
+ * add Fallback at images.read_info_from_image if exif data was invalid ([#13028](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13028))
127
+ * update cmd arg description ([#12986](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12986))
128
+ * fix: update shared.opts.data when add_option ([#12957](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12957), [#13213](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13213))
129
+ * restore missing tooltips ([#12976](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12976))
130
+ * use default dropdown padding on mobile ([#12880](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12880))
131
+ * put enable console prompts option into settings from commandline args ([#13119](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13119))
132
+ * fix some deprecated types ([#12846](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12846))
133
+ * bump to torchsde==0.2.6 ([#13418](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13418))
134
+ * update dragdrop.js ([#13372](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13372))
135
+ * use orderdict as lru cache:opt/bug ([#13313](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13313))
136
+ * XYZ if not include sub grids do not save sub grid ([#13282](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13282))
137
+ * initialize state.time_start befroe state.job_count ([#13229](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13229))
138
+ * fix fieldname regex ([#13458](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13458))
139
+ * change denoising_strength default to None. ([#13466](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13466))
140
+ * fix regression ([#13475](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13475))
141
+ * fix IndexError ([#13630](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13630))
142
+ * fix: checkpoints_loaded:{checkpoint:state_dict}, model.load_state_dict issue in dict value empty ([#13535](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13535))
143
+ * update bug_report.yml ([#12991](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12991))
144
+ * requirements_versions httpx==0.24.1 ([#13839](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13839))
145
+ * fix parenthesis auto selection ([#13829](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13829))
146
+ * fix #13796 ([#13797](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13797))
147
+ * corrected a typo in `modules/cmd_args.py` ([#13855](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13855))
148
+ * feat: fix randn found element of type float at pos 2 ([#14004](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14004))
149
+ * adds tqdm handler to logging_config.py for progress bar integration ([#13996](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13996))
150
+ * hotfix: call shared.state.end() after postprocessing done ([#13977](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13977))
151
+ * fix dependency address patch 1 ([#13929](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13929))
152
+ * save sysinfo as .json ([#14035](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14035))
153
+ * move exception_records related methods to errors.py ([#14084](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14084))
154
+ * compatibility ([#13936](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13936))
155
+ * json.dump(ensure_ascii=False) ([#14108](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14108))
156
+ * dir buttons start with / so only the correct dir will be shown and no… ([#13957](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13957))
157
+ * alternate implementation for unet forward replacement that does not depend on hijack being applied
158
+ * re-add `keyedit_delimiters_whitespace` setting lost as part of commit e294e46 ([#14178](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14178))
159
+ * fix `save_samples` being checked early when saving masked composite ([#14177](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14177))
160
+ * slight optimization for mask and mask_composite ([#14181](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14181))
161
+ * add import_hook hack to work around basicsr/torchvision incompatibility ([#14186](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14186))
162
+
163
+ ## 1.6.1
164
+
165
+ ### Bug Fixes:
166
+ * fix an error causing the webui to fail to start ([#13839](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13839))
167
+
168
+ ## 1.6.0
169
+
170
+ ### Features:
171
+ * refiner support [#12371](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12371)
172
+ * add NV option for Random number generator source setting, which allows to generate same pictures on CPU/AMD/Mac as on NVidia videocards
173
+ * add style editor dialog
174
+ * hires fix: add an option to use a different checkpoint for second pass ([#12181](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12181))
175
+ * option to keep multiple loaded models in memory ([#12227](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12227))
176
+ * new samplers: Restart, DPM++ 2M SDE Exponential, DPM++ 2M SDE Heun, DPM++ 2M SDE Heun Karras, DPM++ 2M SDE Heun Exponential, DPM++ 3M SDE, DPM++ 3M SDE Karras, DPM++ 3M SDE Exponential ([#12300](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12300), [#12519](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12519), [#12542](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12542))
177
+ * rework DDIM, PLMS, UniPC to use CFG denoiser same as in k-diffusion samplers:
178
+ * makes all of them work with img2img
179
+ * makes prompt composition posssible (AND)
180
+ * makes them available for SDXL
181
+ * always show extra networks tabs in the UI ([#11808](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/11808))
182
+ * use less RAM when creating models ([#11958](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/11958), [#12599](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12599))
183
+ * textual inversion inference support for SDXL
184
+ * extra networks UI: show metadata for SD checkpoints
185
+ * checkpoint merger: add metadata support
186
+ * prompt editing and attention: add support for whitespace after the number ([ red : green : 0.5 ]) (seed breaking change) ([#12177](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12177))
187
+ * VAE: allow selecting own VAE for each checkpoint (in user metadata editor)
188
+ * VAE: add selected VAE to infotext
189
+ * options in main UI: add own separate setting for txt2img and img2img, correctly read values from pasted infotext, add setting for column count ([#12551](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12551))
190
+ * add resize handle to txt2img and img2img tabs, allowing to change the amount of horizontable space given to generation parameters and resulting image gallery ([#12687](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12687), [#12723](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12723))
191
+ * change default behavior for batching cond/uncond -- now it's on by default, and is disabled by an UI setting (Optimizatios -> Batch cond/uncond) - if you are on lowvram/medvram and are getting OOM exceptions, you will need to enable it
192
+ * show current position in queue and make it so that requests are processed in the order of arrival ([#12707](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12707))
193
+ * add `--medvram-sdxl` flag that only enables `--medvram` for SDXL models
194
+ * prompt editing timeline has separate range for first pass and hires-fix pass (seed breaking change) ([#12457](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12457))
195
+
196
+ ### Minor:
197
+ * img2img batch: RAM savings, VRAM savings, .tif, .tiff in img2img batch ([#12120](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12120), [#12514](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12514), [#12515](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12515))
198
+ * postprocessing/extras: RAM savings ([#12479](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12479))
199
+ * XYZ: in the axis labels, remove pathnames from model filenames
200
+ * XYZ: support hires sampler ([#12298](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12298))
201
+ * XYZ: new option: use text inputs instead of dropdowns ([#12491](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12491))
202
+ * add gradio version warning
203
+ * sort list of VAE checkpoints ([#12297](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12297))
204
+ * use transparent white for mask in inpainting, along with an option to select the color ([#12326](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12326))
205
+ * move some settings to their own section: img2img, VAE
206
+ * add checkbox to show/hide dirs for extra networks
207
+ * Add TAESD(or more) options for all the VAE encode/decode operation ([#12311](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12311))
208
+ * gradio theme cache, new gradio themes, along with explanation that the user can input his own values ([#12346](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12346), [#12355](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12355))
209
+ * sampler fixes/tweaks: s_tmax, s_churn, s_noise, s_tmax ([#12354](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12354), [#12356](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12356), [#12357](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12357), [#12358](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12358), [#12375](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12375), [#12521](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12521))
210
+ * update README.md with correct instructions for Linux installation ([#12352](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12352))
211
+ * option to not save incomplete images, on by default ([#12338](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12338))
212
+ * enable cond cache by default
213
+ * git autofix for repos that are corrupted ([#12230](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12230))
214
+ * allow to open images in new browser tab by middle mouse button ([#12379](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12379))
215
+ * automatically open webui in browser when running "locally" ([#12254](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12254))
216
+ * put commonly used samplers on top, make DPM++ 2M Karras the default choice
217
+ * zoom and pan: option to auto-expand a wide image, improved integration ([#12413](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12413), [#12727](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12727))
218
+ * option to cache Lora networks in memory
219
+ * rework hires fix UI to use accordion
220
+ * face restoration and tiling moved to settings - use "Options in main UI" setting if you want them back
221
+ * change quicksettings items to have variable width
222
+ * Lora: add Norm module, add support for bias ([#12503](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12503))
223
+ * Lora: output warnings in UI rather than fail for unfitting loras; switch to logging for error output in console
224
+ * support search and display of hashes for all extra network items ([#12510](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12510))
225
+ * add extra noise param for img2img operations ([#12564](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12564))
226
+ * support for Lora with bias ([#12584](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12584))
227
+ * make interrupt quicker ([#12634](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12634))
228
+ * configurable gallery height ([#12648](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12648))
229
+ * make results column sticky ([#12645](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12645))
230
+ * more hash filename patterns ([#12639](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12639))
231
+ * make image viewer actually fit the whole page ([#12635](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12635))
232
+ * make progress bar work independently from live preview display which results in it being updated a lot more often
233
+ * forbid Full live preview method for medvram and add a setting to undo the forbidding
234
+ * make it possible to localize tooltips and placeholders
235
+ * add option to align with sgm repo's sampling implementation ([#12818](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12818))
236
+ * Restore faces and Tiling generation parameters have been moved to settings out of main UI
237
+ * if you want to put them back into main UI, use `Options in main UI` setting on the UI page.
238
+
239
+ ### Extensions and API:
240
+ * gradio 3.41.2
241
+ * also bump versions for packages: transformers, GitPython, accelerate, scikit-image, timm, tomesd
242
+ * support tooltip kwarg for gradio elements: gr.Textbox(label='hello', tooltip='world')
243
+ * properly clear the total console progressbar when using txt2img and img2img from API
244
+ * add cmd_arg --disable-extra-extensions and --disable-all-extensions ([#12294](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12294))
245
+ * shared.py and webui.py split into many files
246
+ * add --loglevel commandline argument for logging
247
+ * add a custom UI element that combines accordion and checkbox
248
+ * avoid importing gradio in tests because it spams warnings
249
+ * put infotext label for setting into OptionInfo definition rather than in a separate list
250
+ * make `StableDiffusionProcessingImg2Img.mask_blur` a property, make more inline with PIL `GaussianBlur` ([#12470](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12470))
251
+ * option to make scripts UI without gr.Group
252
+ * add a way for scripts to register a callback for before/after just a single component's creation
253
+ * use dataclass for StableDiffusionProcessing
254
+ * store patches for Lora in a specialized module instead of inside torch
255
+ * support http/https URLs in API ([#12663](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12663), [#12698](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12698))
256
+ * add extra noise callback ([#12616](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12616))
257
+ * dump current stack traces when exiting with SIGINT
258
+ * add type annotations for extra fields of shared.sd_model
259
+
260
+ ### Bug Fixes:
261
+ * Don't crash if out of local storage quota for javascriot localStorage
262
+ * XYZ plot do not fail if an exception occurs
263
+ * fix missing TI hash in infotext if generation uses both negative and positive TI ([#12269](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12269))
264
+ * localization fixes ([#12307](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12307))
265
+ * fix sdxl model invalid configuration after the hijack
266
+ * correctly toggle extras checkbox for infotext paste ([#12304](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12304))
267
+ * open raw sysinfo link in new page ([#12318](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12318))
268
+ * prompt parser: Account for empty field in alternating words syntax ([#12319](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12319))
269
+ * add tab and carriage return to invalid filename chars ([#12327](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12327))
270
+ * fix api only Lora not working ([#12387](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12387))
271
+ * fix options in main UI misbehaving when there's just one element
272
+ * make it possible to use a sampler from infotext even if it's hidden in the dropdown
273
+ * fix styles missing from the prompt in infotext when making a grid of batch of multiplie images
274
+ * prevent bogus progress output in console when calculating hires fix dimensions
275
+ * fix --use-textbox-seed
276
+ * fix broken `Lora/Networks: use old method` option ([#12466](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12466))
277
+ * properly return `None` for VAE hash when using `--no-hashing` ([#12463](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12463))
278
+ * MPS/macOS fixes and optimizations ([#12526](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12526))
279
+ * add second_order to samplers that mistakenly didn't have it
280
+ * when refreshing cards in extra networks UI, do not discard user's custom resolution
281
+ * fix processing error that happens if batch_size is not a multiple of how many prompts/negative prompts there are ([#12509](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12509))
282
+ * fix inpaint upload for alpha masks ([#12588](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12588))
283
+ * fix exception when image sizes are not integers ([#12586](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12586))
284
+ * fix incorrect TAESD Latent scale ([#12596](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12596))
285
+ * auto add data-dir to gradio-allowed-path ([#12603](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12603))
286
+ * fix exception if extensuions dir is missing ([#12607](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12607))
287
+ * fix issues with api model-refresh and vae-refresh ([#12638](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12638))
288
+ * fix img2img background color for transparent images option not being used ([#12633](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12633))
289
+ * attempt to resolve NaN issue with unstable VAEs in fp32 mk2 ([#12630](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12630))
290
+ * implement missing undo hijack for SDXL
291
+ * fix xyz swap axes ([#12684](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12684))
292
+ * fix errors in backup/restore tab if any of config files are broken ([#12689](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12689))
293
+ * fix SD VAE switch error after model reuse ([#12685](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12685))
294
+ * fix trying to create images too large for the chosen format ([#12667](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12667))
295
+ * create Gradio temp directory if necessary ([#12717](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12717))
296
+ * prevent possible cache loss if exiting as it's being written by using an atomic operation to replace the cache with the new version
297
+ * set devices.dtype_unet correctly
298
+ * run RealESRGAN on GPU for non-CUDA devices ([#12737](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12737))
299
+ * prevent extra network buttons being obscured by description for very small card sizes ([#12745](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12745))
300
+ * fix error that causes some extra networks to be disabled if both <lora:> and <lyco:> are present in the prompt
301
+ * fix defaults settings page breaking when any of main UI tabs are hidden
302
+ * fix incorrect save/display of new values in Defaults page in settings
303
+ * fix for Reload UI function: if you reload UI on one tab, other opened tabs will no longer stop working
304
+ * fix an error that prevents VAE being reloaded after an option change if a VAE near the checkpoint exists ([#12797](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12737))
305
+ * hide broken image crop tool ([#12792](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12737))
306
+ * don't show hidden samplers in dropdown for XYZ script ([#12780](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12737))
307
+ * fix style editing dialog breaking if it's opened in both img2img and txt2img tabs
308
+ * fix a bug allowing users to bypass gradio and API authentication (reported by vysecurity)
309
+ * fix notification not playing when built-in webui tab is inactive ([#12834](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12834))
310
+ * honor `--skip-install` for extension installers ([#12832](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12832))
311
+ * don't print blank stdout in extension installers ([#12833](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12832), [#12855](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12855))
312
+ * do not change quicksettings dropdown option when value returned is `None` ([#12854](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12854))
313
+ * get progressbar to display correctly in extensions tab
314
+
315
+
316
+ ## 1.5.2
317
+
318
+ ### Bug Fixes:
319
+ * fix memory leak when generation fails
320
+ * update doggettx cross attention optimization to not use an unreasonable amount of memory in some edge cases -- suggestion by MorkTheOrk
321
+
322
+
323
+ ## 1.5.1
324
+
325
+ ### Minor:
326
+ * support parsing text encoder blocks in some new LoRAs
327
+ * delete scale checker script due to user demand
328
+
329
+ ### Extensions and API:
330
+ * add postprocess_batch_list script callback
331
+
332
+ ### Bug Fixes:
333
+ * fix TI training for SD1
334
+ * fix reload altclip model error
335
+ * prepend the pythonpath instead of overriding it
336
+ * fix typo in SD_WEBUI_RESTARTING
337
+ * if txt2img/img2img raises an exception, finally call state.end()
338
+ * fix composable diffusion weight parsing
339
+ * restyle Startup profile for black users
340
+ * fix webui not launching with --nowebui
341
+ * catch exception for non git extensions
342
+ * fix some options missing from /sdapi/v1/options
343
+ * fix for extension update status always saying "unknown"
344
+ * fix display of extra network cards that have `<>` in the name
345
+ * update lora extension to work with python 3.8
346
+
347
+
348
+ ## 1.5.0
349
+
350
+ ### Features:
351
+ * SD XL support
352
+ * user metadata system for custom networks
353
+ * extended Lora metadata editor: set activation text, default weight, view tags, training info
354
+ * Lora extension rework to include other types of networks (all that were previously handled by LyCORIS extension)
355
+ * show github stars for extenstions
356
+ * img2img batch mode can read extra stuff from png info
357
+ * img2img batch works with subdirectories
358
+ * hotkeys to move prompt elements: alt+left/right
359
+ * restyle time taken/VRAM display
360
+ * add textual inversion hashes to infotext
361
+ * optimization: cache git extension repo information
362
+ * move generate button next to the generated picture for mobile clients
363
+ * hide cards for networks of incompatible Stable Diffusion version in Lora extra networks interface
364
+ * skip installing packages with pip if they all are already installed - startup speedup of about 2 seconds
365
+
366
+ ### Minor:
367
+ * checkbox to check/uncheck all extensions in the Installed tab
368
+ * add gradio user to infotext and to filename patterns
369
+ * allow gif for extra network previews
370
+ * add options to change colors in grid
371
+ * use natural sort for items in extra networks
372
+ * Mac: use empty_cache() from torch 2 to clear VRAM
373
+ * added automatic support for installing the right libraries for Navi3 (AMD)
374
+ * add option SWIN_torch_compile to accelerate SwinIR upscale
375
+ * suppress printing TI embedding info at start to console by default
376
+ * speedup extra networks listing
377
+ * added `[none]` filename token.
378
+ * removed thumbs extra networks view mode (use settings tab to change width/height/scale to get thumbs)
379
+ * add always_discard_next_to_last_sigma option to XYZ plot
380
+ * automatically switch to 32-bit float VAE if the generated picture has NaNs without the need for `--no-half-vae` commandline flag.
381
+
382
+ ### Extensions and API:
383
+ * api endpoints: /sdapi/v1/server-kill, /sdapi/v1/server-restart, /sdapi/v1/server-stop
384
+ * allow Script to have custom metaclass
385
+ * add model exists status check /sdapi/v1/options
386
+ * rename --add-stop-route to --api-server-stop
387
+ * add `before_hr` script callback
388
+ * add callback `after_extra_networks_activate`
389
+ * disable rich exception output in console for API by default, use WEBUI_RICH_EXCEPTIONS env var to enable
390
+ * return http 404 when thumb file not found
391
+ * allow replacing extensions index with environment variable
392
+
393
+ ### Bug Fixes:
394
+ * fix for catch errors when retrieving extension index #11290
395
+ * fix very slow loading speed of .safetensors files when reading from network drives
396
+ * API cache cleanup
397
+ * fix UnicodeEncodeError when writing to file CLIP Interrogator batch mode
398
+ * fix warning of 'has_mps' deprecated from PyTorch
399
+ * fix problem with extra network saving images as previews losing generation info
400
+ * fix throwing exception when trying to resize image with I;16 mode
401
+ * fix for #11534: canvas zoom and pan extension hijacking shortcut keys
402
+ * fixed launch script to be runnable from any directory
403
+ * don't add "Seed Resize: -1x-1" to API image metadata
404
+ * correctly remove end parenthesis with ctrl+up/down
405
+ * fixing --subpath on newer gradio version
406
+ * fix: check fill size none zero when resize (fixes #11425)
407
+ * use submit and blur for quick settings textbox
408
+ * save img2img batch with images.save_image()
409
+ * prevent running preload.py for disabled extensions
410
+ * fix: previously, model name was added together with directory name to infotext and to [model_name] filename pattern; directory name is now not included
411
+
412
+
413
+ ## 1.4.1
414
+
415
+ ### Bug Fixes:
416
+ * add queue lock for refresh-checkpoints
417
+
418
+ ## 1.4.0
419
+
420
+ ### Features:
421
+ * zoom controls for inpainting
422
+ * run basic torch calculation at startup in parallel to reduce the performance impact of first generation
423
+ * option to pad prompt/neg prompt to be same length
424
+ * remove taming_transformers dependency
425
+ * custom k-diffusion scheduler settings
426
+ * add an option to show selected settings in main txt2img/img2img UI
427
+ * sysinfo tab in settings
428
+ * infer styles from prompts when pasting params into the UI
429
+ * an option to control the behavior of the above
430
+
431
+ ### Minor:
432
+ * bump Gradio to 3.32.0
433
+ * bump xformers to 0.0.20
434
+ * Add option to disable token counters
435
+ * tooltip fixes & optimizations
436
+ * make it possible to configure filename for the zip download
437
+ * `[vae_filename]` pattern for filenames
438
+ * Revert discarding penultimate sigma for DPM-Solver++(2M) SDE
439
+ * change UI reorder setting to multiselect
440
+ * read version info form CHANGELOG.md if git version info is not available
441
+ * link footer API to Wiki when API is not active
442
+ * persistent conds cache (opt-in optimization)
443
+
444
+ ### Extensions:
445
+ * After installing extensions, webui properly restarts the process rather than reloads the UI
446
+ * Added VAE listing to web API. Via: /sdapi/v1/sd-vae
447
+ * custom unet support
448
+ * Add onAfterUiUpdate callback
449
+ * refactor EmbeddingDatabase.register_embedding() to allow unregistering
450
+ * add before_process callback for scripts
451
+ * add ability for alwayson scripts to specify section and let user reorder those sections
452
+
453
+ ### Bug Fixes:
454
+ * Fix dragging text to prompt
455
+ * fix incorrect quoting for infotext values with colon in them
456
+ * fix "hires. fix" prompt sharing same labels with txt2img_prompt
457
+ * Fix s_min_uncond default type int
458
+ * Fix for #10643 (Inpainting mask sometimes not working)
459
+ * fix bad styling for thumbs view in extra networks #10639
460
+ * fix for empty list of optimizations #10605
461
+ * small fixes to prepare_tcmalloc for Debian/Ubuntu compatibility
462
+ * fix --ui-debug-mode exit
463
+ * patch GitPython to not use leaky persistent processes
464
+ * fix duplicate Cross attention optimization after UI reload
465
+ * torch.cuda.is_available() check for SdOptimizationXformers
466
+ * fix hires fix using wrong conds in second pass if using Loras.
467
+ * handle exception when parsing generation parameters from png info
468
+ * fix upcast attention dtype error
469
+ * forcing Torch Version to 1.13.1 for RX 5000 series GPUs
470
+ * split mask blur into X and Y components, patch Outpainting MK2 accordingly
471
+ * don't die when a LoRA is a broken symlink
472
+ * allow activation of Generate Forever during generation
473
+
474
+
475
+ ## 1.3.2
476
+
477
+ ### Bug Fixes:
478
+ * fix files served out of tmp directory even if they are saved to disk
479
+ * fix postprocessing overwriting parameters
480
+
481
+ ## 1.3.1
482
+
483
+ ### Features:
484
+ * revert default cross attention optimization to Doggettx
485
+
486
+ ### Bug Fixes:
487
+ * fix bug: LoRA don't apply on dropdown list sd_lora
488
+ * fix png info always added even if setting is not enabled
489
+ * fix some fields not applying in xyz plot
490
+ * fix "hires. fix" prompt sharing same labels with txt2img_prompt
491
+ * fix lora hashes not being added properly to infotex if there is only one lora
492
+ * fix --use-cpu failing to work properly at startup
493
+ * make --disable-opt-split-attention command line option work again
494
+
495
+ ## 1.3.0
496
+
497
+ ### Features:
498
+ * add UI to edit defaults
499
+ * token merging (via dbolya/tomesd)
500
+ * settings tab rework: add a lot of additional explanations and links
501
+ * load extensions' Git metadata in parallel to loading the main program to save a ton of time during startup
502
+ * update extensions table: show branch, show date in separate column, and show version from tags if available
503
+ * TAESD - another option for cheap live previews
504
+ * allow choosing sampler and prompts for second pass of hires fix - hidden by default, enabled in settings
505
+ * calculate hashes for Lora
506
+ * add lora hashes to infotext
507
+ * when pasting infotext, use infotext's lora hashes to find local loras for `<lora:xxx:1>` entries whose hashes match loras the user has
508
+ * select cross attention optimization from UI
509
+
510
+ ### Minor:
511
+ * bump Gradio to 3.31.0
512
+ * bump PyTorch to 2.0.1 for macOS and Linux AMD
513
+ * allow setting defaults for elements in extensions' tabs
514
+ * allow selecting file type for live previews
515
+ * show "Loading..." for extra networks when displaying for the first time
516
+ * suppress ENSD infotext for samplers that don't use it
517
+ * clientside optimizations
518
+ * add options to show/hide hidden files and dirs in extra networks, and to not list models/files in hidden directories
519
+ * allow whitespace in styles.csv
520
+ * add option to reorder tabs
521
+ * move some functionality (swap resolution and set seed to -1) to client
522
+ * option to specify editor height for img2img
523
+ * button to copy image resolution into img2img width/height sliders
524
+ * switch from pyngrok to ngrok-py
525
+ * lazy-load images in extra networks UI
526
+ * set "Navigate image viewer with gamepad" option to false by default, by request
527
+ * change upscalers to download models into user-specified directory (from commandline args) rather than the default models/<...>
528
+ * allow hiding buttons in ui-config.json
529
+
530
+ ### Extensions:
531
+ * add /sdapi/v1/script-info api
532
+ * use Ruff to lint Python code
533
+ * use ESlint to lint Javascript code
534
+ * add/modify CFG callbacks for Self-Attention Guidance extension
535
+ * add command and endpoint for graceful server stopping
536
+ * add some locals (prompts/seeds/etc) from processing function into the Processing class as fields
537
+ * rework quoting for infotext items that have commas in them to use JSON (should be backwards compatible except for cases where it didn't work previously)
538
+ * add /sdapi/v1/refresh-loras api checkpoint post request
539
+ * tests overhaul
540
+
541
+ ### Bug Fixes:
542
+ * fix an issue preventing the program from starting if the user specifies a bad Gradio theme
543
+ * fix broken prompts from file script
544
+ * fix symlink scanning for extra networks
545
+ * fix --data-dir ignored when launching via webui-user.bat COMMANDLINE_ARGS
546
+ * allow web UI to be ran fully offline
547
+ * fix inability to run with --freeze-settings
548
+ * fix inability to merge checkpoint without adding metadata
549
+ * fix extra networks' save preview image not adding infotext for jpeg/webm
550
+ * remove blinking effect from text in hires fix and scale resolution preview
551
+ * make links to `http://<...>.git` extensions work in the extension tab
552
+ * fix bug with webui hanging at startup due to hanging git process
553
+
554
+
555
+ ## 1.2.1
556
+
557
+ ### Features:
558
+ * add an option to always refer to LoRA by filenames
559
+
560
+ ### Bug Fixes:
561
+ * never refer to LoRA by an alias if multiple LoRAs have same alias or the alias is called none
562
+ * fix upscalers disappearing after the user reloads UI
563
+ * allow bf16 in safe unpickler (resolves problems with loading some LoRAs)
564
+ * allow web UI to be ran fully offline
565
+ * fix localizations not working
566
+ * fix error for LoRAs: `'LatentDiffusion' object has no attribute 'lora_layer_mapping'`
567
+
568
+ ## 1.2.0
569
+
570
+ ### Features:
571
+ * do not wait for Stable Diffusion model to load at startup
572
+ * add filename patterns: `[denoising]`
573
+ * directory hiding for extra networks: dirs starting with `.` will hide their cards on extra network tabs unless specifically searched for
574
+ * LoRA: for the `<...>` text in prompt, use name of LoRA that is in the metdata of the file, if present, instead of filename (both can be used to activate LoRA)
575
+ * LoRA: read infotext params from kohya-ss's extension parameters if they are present and if his extension is not active
576
+ * LoRA: fix some LoRAs not working (ones that have 3x3 convolution layer)
577
+ * LoRA: add an option to use old method of applying LoRAs (producing same results as with kohya-ss)
578
+ * add version to infotext, footer and console output when starting
579
+ * add links to wiki for filename pattern settings
580
+ * add extended info for quicksettings setting and use multiselect input instead of a text field
581
+
582
+ ### Minor:
583
+ * bump Gradio to 3.29.0
584
+ * bump PyTorch to 2.0.1
585
+ * `--subpath` option for gradio for use with reverse proxy
586
+ * Linux/macOS: use existing virtualenv if already active (the VIRTUAL_ENV environment variable)
587
+ * do not apply localizations if there are none (possible frontend optimization)
588
+ * add extra `None` option for VAE in XYZ plot
589
+ * print error to console when batch processing in img2img fails
590
+ * create HTML for extra network pages only on demand
591
+ * allow directories starting with `.` to still list their models for LoRA, checkpoints, etc
592
+ * put infotext options into their own category in settings tab
593
+ * do not show licenses page when user selects Show all pages in settings
594
+
595
+ ### Extensions:
596
+ * tooltip localization support
597
+ * add API method to get LoRA models with prompt
598
+
599
+ ### Bug Fixes:
600
+ * re-add `/docs` endpoint
601
+ * fix gamepad navigation
602
+ * make the lightbox fullscreen image function properly
603
+ * fix squished thumbnails in extras tab
604
+ * keep "search" filter for extra networks when user refreshes the tab (previously it showed everthing after you refreshed)
605
+ * fix webui showing the same image if you configure the generation to always save results into same file
606
+ * fix bug with upscalers not working properly
607
+ * fix MPS on PyTorch 2.0.1, Intel Macs
608
+ * make it so that custom context menu from contextMenu.js only disappears after user's click, ignoring non-user click events
609
+ * prevent Reload UI button/link from reloading the page when it's not yet ready
610
+ * fix prompts from file script failing to read contents from a drag/drop file
611
+
612
+
613
+ ## 1.1.1
614
+ ### Bug Fixes:
615
+ * fix an error that prevents running webui on PyTorch<2.0 without --disable-safe-unpickle
616
+
617
+ ## 1.1.0
618
+ ### Features:
619
+ * switch to PyTorch 2.0.0 (except for AMD GPUs)
620
+ * visual improvements to custom code scripts
621
+ * add filename patterns: `[clip_skip]`, `[hasprompt<>]`, `[batch_number]`, `[generation_number]`
622
+ * add support for saving init images in img2img, and record their hashes in infotext for reproducability
623
+ * automatically select current word when adjusting weight with ctrl+up/down
624
+ * add dropdowns for X/Y/Z plot
625
+ * add setting: Stable Diffusion/Random number generator source: makes it possible to make images generated from a given manual seed consistent across different GPUs
626
+ * support Gradio's theme API
627
+ * use TCMalloc on Linux by default; possible fix for memory leaks
628
+ * add optimization option to remove negative conditioning at low sigma values #9177
629
+ * embed model merge metadata in .safetensors file
630
+ * extension settings backup/restore feature #9169
631
+ * add "resize by" and "resize to" tabs to img2img
632
+ * add option "keep original size" to textual inversion images preprocess
633
+ * image viewer scrolling via analog stick
634
+ * button to restore the progress from session lost / tab reload
635
+
636
+ ### Minor:
637
+ * bump Gradio to 3.28.1
638
+ * change "scale to" to sliders in Extras tab
639
+ * add labels to tool buttons to make it possible to hide them
640
+ * add tiled inference support for ScuNET
641
+ * add branch support for extension installation
642
+ * change Linux installation script to install into current directory rather than `/home/username`
643
+ * sort textual inversion embeddings by name (case-insensitive)
644
+ * allow styles.csv to be symlinked or mounted in docker
645
+ * remove the "do not add watermark to images" option
646
+ * make selected tab configurable with UI config
647
+ * make the extra networks UI fixed height and scrollable
648
+ * add `disable_tls_verify` arg for use with self-signed certs
649
+
650
+ ### Extensions:
651
+ * add reload callback
652
+ * add `is_hr_pass` field for processing
653
+
654
+ ### Bug Fixes:
655
+ * fix broken batch image processing on 'Extras/Batch Process' tab
656
+ * add "None" option to extra networks dropdowns
657
+ * fix FileExistsError for CLIP Interrogator
658
+ * fix /sdapi/v1/txt2img endpoint not working on Linux #9319
659
+ * fix disappearing live previews and progressbar during slow tasks
660
+ * fix fullscreen image view not working properly in some cases
661
+ * prevent alwayson_scripts args param resizing script_arg list when they are inserted in it
662
+ * fix prompt schedule for second order samplers
663
+ * fix image mask/composite for weird resolutions #9628
664
+ * use correct images for previews when using AND (see #9491)
665
+ * one broken image in img2img batch won't stop all processing
666
+ * fix image orientation bug in train/preprocess
667
+ * fix Ngrok recreating tunnels every reload
668
+ * fix `--realesrgan-models-path` and `--ldsr-models-path` not working
669
+ * fix `--skip-install` not working
670
+ * use SAMPLE file format in Outpainting Mk2 & Poorman
671
+ * do not fail all LoRAs if some have failed to load when making a picture
672
+
673
+ ## 1.0.0
674
+ * everything
CITATION.cff ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ cff-version: 1.2.0
2
+ message: "If you use this software, please cite it as below."
3
+ authors:
4
+ - given-names: AUTOMATIC1111
5
+ title: "Stable Diffusion Web UI"
6
+ date-released: 2022-08-22
7
+ url: "https://github.com/AUTOMATIC1111/stable-diffusion-webui"
CODEOWNERS ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ * @AUTOMATIC1111
2
+
3
+ # if you were managing a localization and were removed from this file, this is because
4
+ # the intended way to do localizations now is via extensions. See:
5
+ # https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Developing-extensions
6
+ # Make a repo with your localization and since you are still listed as a collaborator
7
+ # you can add it to the wiki page yourself. This change is because some people complained
8
+ # the git commit log is cluttered with things unrelated to almost everyone and
9
+ # because I believe this is the best overall for the project to handle localizations almost
10
+ # entirely without my oversight.
11
+
12
+
LICENSE.txt ADDED
@@ -0,0 +1,663 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ GNU AFFERO GENERAL PUBLIC LICENSE
2
+ Version 3, 19 November 2007
3
+
4
+ Copyright (c) 2023 AUTOMATIC1111
5
+
6
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
7
+ Everyone is permitted to copy and distribute verbatim copies
8
+ of this license document, but changing it is not allowed.
9
+
10
+ Preamble
11
+
12
+ The GNU Affero General Public License is a free, copyleft license for
13
+ software and other kinds of works, specifically designed to ensure
14
+ cooperation with the community in the case of network server software.
15
+
16
+ The licenses for most software and other practical works are designed
17
+ to take away your freedom to share and change the works. By contrast,
18
+ our General Public Licenses are intended to guarantee your freedom to
19
+ share and change all versions of a program--to make sure it remains free
20
+ software for all its users.
21
+
22
+ When we speak of free software, we are referring to freedom, not
23
+ price. Our General Public Licenses are designed to make sure that you
24
+ have the freedom to distribute copies of free software (and charge for
25
+ them if you wish), that you receive source code or can get it if you
26
+ want it, that you can change the software or use pieces of it in new
27
+ free programs, and that you know you can do these things.
28
+
29
+ Developers that use our General Public Licenses protect your rights
30
+ with two steps: (1) assert copyright on the software, and (2) offer
31
+ you this License which gives you legal permission to copy, distribute
32
+ and/or modify the software.
33
+
34
+ A secondary benefit of defending all users' freedom is that
35
+ improvements made in alternate versions of the program, if they
36
+ receive widespread use, become available for other developers to
37
+ incorporate. Many developers of free software are heartened and
38
+ encouraged by the resulting cooperation. However, in the case of
39
+ software used on network servers, this result may fail to come about.
40
+ The GNU General Public License permits making a modified version and
41
+ letting the public access it on a server without ever releasing its
42
+ source code to the public.
43
+
44
+ The GNU Affero General Public License is designed specifically to
45
+ ensure that, in such cases, the modified source code becomes available
46
+ to the community. It requires the operator of a network server to
47
+ provide the source code of the modified version running there to the
48
+ users of that server. Therefore, public use of a modified version, on
49
+ a publicly accessible server, gives the public access to the source
50
+ code of the modified version.
51
+
52
+ An older license, called the Affero General Public License and
53
+ published by Affero, was designed to accomplish similar goals. This is
54
+ a different license, not a version of the Affero GPL, but Affero has
55
+ released a new version of the Affero GPL which permits relicensing under
56
+ this license.
57
+
58
+ The precise terms and conditions for copying, distribution and
59
+ modification follow.
60
+
61
+ TERMS AND CONDITIONS
62
+
63
+ 0. Definitions.
64
+
65
+ "This License" refers to version 3 of the GNU Affero General Public License.
66
+
67
+ "Copyright" also means copyright-like laws that apply to other kinds of
68
+ works, such as semiconductor masks.
69
+
70
+ "The Program" refers to any copyrightable work licensed under this
71
+ License. Each licensee is addressed as "you". "Licensees" and
72
+ "recipients" may be individuals or organizations.
73
+
74
+ To "modify" a work means to copy from or adapt all or part of the work
75
+ in a fashion requiring copyright permission, other than the making of an
76
+ exact copy. The resulting work is called a "modified version" of the
77
+ earlier work or a work "based on" the earlier work.
78
+
79
+ A "covered work" means either the unmodified Program or a work based
80
+ on the Program.
81
+
82
+ To "propagate" a work means to do anything with it that, without
83
+ permission, would make you directly or secondarily liable for
84
+ infringement under applicable copyright law, except executing it on a
85
+ computer or modifying a private copy. Propagation includes copying,
86
+ distribution (with or without modification), making available to the
87
+ public, and in some countries other activities as well.
88
+
89
+ To "convey" a work means any kind of propagation that enables other
90
+ parties to make or receive copies. Mere interaction with a user through
91
+ a computer network, with no transfer of a copy, is not conveying.
92
+
93
+ An interactive user interface displays "Appropriate Legal Notices"
94
+ to the extent that it includes a convenient and prominently visible
95
+ feature that (1) displays an appropriate copyright notice, and (2)
96
+ tells the user that there is no warranty for the work (except to the
97
+ extent that warranties are provided), that licensees may convey the
98
+ work under this License, and how to view a copy of this License. If
99
+ the interface presents a list of user commands or options, such as a
100
+ menu, a prominent item in the list meets this criterion.
101
+
102
+ 1. Source Code.
103
+
104
+ The "source code" for a work means the preferred form of the work
105
+ for making modifications to it. "Object code" means any non-source
106
+ form of a work.
107
+
108
+ A "Standard Interface" means an interface that either is an official
109
+ standard defined by a recognized standards body, or, in the case of
110
+ interfaces specified for a particular programming language, one that
111
+ is widely used among developers working in that language.
112
+
113
+ The "System Libraries" of an executable work include anything, other
114
+ than the work as a whole, that (a) is included in the normal form of
115
+ packaging a Major Component, but which is not part of that Major
116
+ Component, and (b) serves only to enable use of the work with that
117
+ Major Component, or to implement a Standard Interface for which an
118
+ implementation is available to the public in source code form. A
119
+ "Major Component", in this context, means a major essential component
120
+ (kernel, window system, and so on) of the specific operating system
121
+ (if any) on which the executable work runs, or a compiler used to
122
+ produce the work, or an object code interpreter used to run it.
123
+
124
+ The "Corresponding Source" for a work in object code form means all
125
+ the source code needed to generate, install, and (for an executable
126
+ work) run the object code and to modify the work, including scripts to
127
+ control those activities. However, it does not include the work's
128
+ System Libraries, or general-purpose tools or generally available free
129
+ programs which are used unmodified in performing those activities but
130
+ which are not part of the work. For example, Corresponding Source
131
+ includes interface definition files associated with source files for
132
+ the work, and the source code for shared libraries and dynamically
133
+ linked subprograms that the work is specifically designed to require,
134
+ such as by intimate data communication or control flow between those
135
+ subprograms and other parts of the work.
136
+
137
+ The Corresponding Source need not include anything that users
138
+ can regenerate automatically from other parts of the Corresponding
139
+ Source.
140
+
141
+ The Corresponding Source for a work in source code form is that
142
+ same work.
143
+
144
+ 2. Basic Permissions.
145
+
146
+ All rights granted under this License are granted for the term of
147
+ copyright on the Program, and are irrevocable provided the stated
148
+ conditions are met. This License explicitly affirms your unlimited
149
+ permission to run the unmodified Program. The output from running a
150
+ covered work is covered by this License only if the output, given its
151
+ content, constitutes a covered work. This License acknowledges your
152
+ rights of fair use or other equivalent, as provided by copyright law.
153
+
154
+ You may make, run and propagate covered works that you do not
155
+ convey, without conditions so long as your license otherwise remains
156
+ in force. You may convey covered works to others for the sole purpose
157
+ of having them make modifications exclusively for you, or provide you
158
+ with facilities for running those works, provided that you comply with
159
+ the terms of this License in conveying all material for which you do
160
+ not control copyright. Those thus making or running the covered works
161
+ for you must do so exclusively on your behalf, under your direction
162
+ and control, on terms that prohibit them from making any copies of
163
+ your copyrighted material outside their relationship with you.
164
+
165
+ Conveying under any other circumstances is permitted solely under
166
+ the conditions stated below. Sublicensing is not allowed; section 10
167
+ makes it unnecessary.
168
+
169
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
170
+
171
+ No covered work shall be deemed part of an effective technological
172
+ measure under any applicable law fulfilling obligations under article
173
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
174
+ similar laws prohibiting or restricting circumvention of such
175
+ measures.
176
+
177
+ When you convey a covered work, you waive any legal power to forbid
178
+ circumvention of technological measures to the extent such circumvention
179
+ is effected by exercising rights under this License with respect to
180
+ the covered work, and you disclaim any intention to limit operation or
181
+ modification of the work as a means of enforcing, against the work's
182
+ users, your or third parties' legal rights to forbid circumvention of
183
+ technological measures.
184
+
185
+ 4. Conveying Verbatim Copies.
186
+
187
+ You may convey verbatim copies of the Program's source code as you
188
+ receive it, in any medium, provided that you conspicuously and
189
+ appropriately publish on each copy an appropriate copyright notice;
190
+ keep intact all notices stating that this License and any
191
+ non-permissive terms added in accord with section 7 apply to the code;
192
+ keep intact all notices of the absence of any warranty; and give all
193
+ recipients a copy of this License along with the Program.
194
+
195
+ You may charge any price or no price for each copy that you convey,
196
+ and you may offer support or warranty protection for a fee.
197
+
198
+ 5. Conveying Modified Source Versions.
199
+
200
+ You may convey a work based on the Program, or the modifications to
201
+ produce it from the Program, in the form of source code under the
202
+ terms of section 4, provided that you also meet all of these conditions:
203
+
204
+ a) The work must carry prominent notices stating that you modified
205
+ it, and giving a relevant date.
206
+
207
+ b) The work must carry prominent notices stating that it is
208
+ released under this License and any conditions added under section
209
+ 7. This requirement modifies the requirement in section 4 to
210
+ "keep intact all notices".
211
+
212
+ c) You must license the entire work, as a whole, under this
213
+ License to anyone who comes into possession of a copy. This
214
+ License will therefore apply, along with any applicable section 7
215
+ additional terms, to the whole of the work, and all its parts,
216
+ regardless of how they are packaged. This License gives no
217
+ permission to license the work in any other way, but it does not
218
+ invalidate such permission if you have separately received it.
219
+
220
+ d) If the work has interactive user interfaces, each must display
221
+ Appropriate Legal Notices; however, if the Program has interactive
222
+ interfaces that do not display Appropriate Legal Notices, your
223
+ work need not make them do so.
224
+
225
+ A compilation of a covered work with other separate and independent
226
+ works, which are not by their nature extensions of the covered work,
227
+ and which are not combined with it such as to form a larger program,
228
+ in or on a volume of a storage or distribution medium, is called an
229
+ "aggregate" if the compilation and its resulting copyright are not
230
+ used to limit the access or legal rights of the compilation's users
231
+ beyond what the individual works permit. Inclusion of a covered work
232
+ in an aggregate does not cause this License to apply to the other
233
+ parts of the aggregate.
234
+
235
+ 6. Conveying Non-Source Forms.
236
+
237
+ You may convey a covered work in object code form under the terms
238
+ of sections 4 and 5, provided that you also convey the
239
+ machine-readable Corresponding Source under the terms of this License,
240
+ in one of these ways:
241
+
242
+ a) Convey the object code in, or embodied in, a physical product
243
+ (including a physical distribution medium), accompanied by the
244
+ Corresponding Source fixed on a durable physical medium
245
+ customarily used for software interchange.
246
+
247
+ b) Convey the object code in, or embodied in, a physical product
248
+ (including a physical distribution medium), accompanied by a
249
+ written offer, valid for at least three years and valid for as
250
+ long as you offer spare parts or customer support for that product
251
+ model, to give anyone who possesses the object code either (1) a
252
+ copy of the Corresponding Source for all the software in the
253
+ product that is covered by this License, on a durable physical
254
+ medium customarily used for software interchange, for a price no
255
+ more than your reasonable cost of physically performing this
256
+ conveying of source, or (2) access to copy the
257
+ Corresponding Source from a network server at no charge.
258
+
259
+ c) Convey individual copies of the object code with a copy of the
260
+ written offer to provide the Corresponding Source. This
261
+ alternative is allowed only occasionally and noncommercially, and
262
+ only if you received the object code with such an offer, in accord
263
+ with subsection 6b.
264
+
265
+ d) Convey the object code by offering access from a designated
266
+ place (gratis or for a charge), and offer equivalent access to the
267
+ Corresponding Source in the same way through the same place at no
268
+ further charge. You need not require recipients to copy the
269
+ Corresponding Source along with the object code. If the place to
270
+ copy the object code is a network server, the Corresponding Source
271
+ may be on a different server (operated by you or a third party)
272
+ that supports equivalent copying facilities, provided you maintain
273
+ clear directions next to the object code saying where to find the
274
+ Corresponding Source. Regardless of what server hosts the
275
+ Corresponding Source, you remain obligated to ensure that it is
276
+ available for as long as needed to satisfy these requirements.
277
+
278
+ e) Convey the object code using peer-to-peer transmission, provided
279
+ you inform other peers where the object code and Corresponding
280
+ Source of the work are being offered to the general public at no
281
+ charge under subsection 6d.
282
+
283
+ A separable portion of the object code, whose source code is excluded
284
+ from the Corresponding Source as a System Library, need not be
285
+ included in conveying the object code work.
286
+
287
+ A "User Product" is either (1) a "consumer product", which means any
288
+ tangible personal property which is normally used for personal, family,
289
+ or household purposes, or (2) anything designed or sold for incorporation
290
+ into a dwelling. In determining whether a product is a consumer product,
291
+ doubtful cases shall be resolved in favor of coverage. For a particular
292
+ product received by a particular user, "normally used" refers to a
293
+ typical or common use of that class of product, regardless of the status
294
+ of the particular user or of the way in which the particular user
295
+ actually uses, or expects or is expected to use, the product. A product
296
+ is a consumer product regardless of whether the product has substantial
297
+ commercial, industrial or non-consumer uses, unless such uses represent
298
+ the only significant mode of use of the product.
299
+
300
+ "Installation Information" for a User Product means any methods,
301
+ procedures, authorization keys, or other information required to install
302
+ and execute modified versions of a covered work in that User Product from
303
+ a modified version of its Corresponding Source. The information must
304
+ suffice to ensure that the continued functioning of the modified object
305
+ code is in no case prevented or interfered with solely because
306
+ modification has been made.
307
+
308
+ If you convey an object code work under this section in, or with, or
309
+ specifically for use in, a User Product, and the conveying occurs as
310
+ part of a transaction in which the right of possession and use of the
311
+ User Product is transferred to the recipient in perpetuity or for a
312
+ fixed term (regardless of how the transaction is characterized), the
313
+ Corresponding Source conveyed under this section must be accompanied
314
+ by the Installation Information. But this requirement does not apply
315
+ if neither you nor any third party retains the ability to install
316
+ modified object code on the User Product (for example, the work has
317
+ been installed in ROM).
318
+
319
+ The requirement to provide Installation Information does not include a
320
+ requirement to continue to provide support service, warranty, or updates
321
+ for a work that has been modified or installed by the recipient, or for
322
+ the User Product in which it has been modified or installed. Access to a
323
+ network may be denied when the modification itself materially and
324
+ adversely affects the operation of the network or violates the rules and
325
+ protocols for communication across the network.
326
+
327
+ Corresponding Source conveyed, and Installation Information provided,
328
+ in accord with this section must be in a format that is publicly
329
+ documented (and with an implementation available to the public in
330
+ source code form), and must require no special password or key for
331
+ unpacking, reading or copying.
332
+
333
+ 7. Additional Terms.
334
+
335
+ "Additional permissions" are terms that supplement the terms of this
336
+ License by making exceptions from one or more of its conditions.
337
+ Additional permissions that are applicable to the entire Program shall
338
+ be treated as though they were included in this License, to the extent
339
+ that they are valid under applicable law. If additional permissions
340
+ apply only to part of the Program, that part may be used separately
341
+ under those permissions, but the entire Program remains governed by
342
+ this License without regard to the additional permissions.
343
+
344
+ When you convey a copy of a covered work, you may at your option
345
+ remove any additional permissions from that copy, or from any part of
346
+ it. (Additional permissions may be written to require their own
347
+ removal in certain cases when you modify the work.) You may place
348
+ additional permissions on material, added by you to a covered work,
349
+ for which you have or can give appropriate copyright permission.
350
+
351
+ Notwithstanding any other provision of this License, for material you
352
+ add to a covered work, you may (if authorized by the copyright holders of
353
+ that material) supplement the terms of this License with terms:
354
+
355
+ a) Disclaiming warranty or limiting liability differently from the
356
+ terms of sections 15 and 16 of this License; or
357
+
358
+ b) Requiring preservation of specified reasonable legal notices or
359
+ author attributions in that material or in the Appropriate Legal
360
+ Notices displayed by works containing it; or
361
+
362
+ c) Prohibiting misrepresentation of the origin of that material, or
363
+ requiring that modified versions of such material be marked in
364
+ reasonable ways as different from the original version; or
365
+
366
+ d) Limiting the use for publicity purposes of names of licensors or
367
+ authors of the material; or
368
+
369
+ e) Declining to grant rights under trademark law for use of some
370
+ trade names, trademarks, or service marks; or
371
+
372
+ f) Requiring indemnification of licensors and authors of that
373
+ material by anyone who conveys the material (or modified versions of
374
+ it) with contractual assumptions of liability to the recipient, for
375
+ any liability that these contractual assumptions directly impose on
376
+ those licensors and authors.
377
+
378
+ All other non-permissive additional terms are considered "further
379
+ restrictions" within the meaning of section 10. If the Program as you
380
+ received it, or any part of it, contains a notice stating that it is
381
+ governed by this License along with a term that is a further
382
+ restriction, you may remove that term. If a license document contains
383
+ a further restriction but permits relicensing or conveying under this
384
+ License, you may add to a covered work material governed by the terms
385
+ of that license document, provided that the further restriction does
386
+ not survive such relicensing or conveying.
387
+
388
+ If you add terms to a covered work in accord with this section, you
389
+ must place, in the relevant source files, a statement of the
390
+ additional terms that apply to those files, or a notice indicating
391
+ where to find the applicable terms.
392
+
393
+ Additional terms, permissive or non-permissive, may be stated in the
394
+ form of a separately written license, or stated as exceptions;
395
+ the above requirements apply either way.
396
+
397
+ 8. Termination.
398
+
399
+ You may not propagate or modify a covered work except as expressly
400
+ provided under this License. Any attempt otherwise to propagate or
401
+ modify it is void, and will automatically terminate your rights under
402
+ this License (including any patent licenses granted under the third
403
+ paragraph of section 11).
404
+
405
+ However, if you cease all violation of this License, then your
406
+ license from a particular copyright holder is reinstated (a)
407
+ provisionally, unless and until the copyright holder explicitly and
408
+ finally terminates your license, and (b) permanently, if the copyright
409
+ holder fails to notify you of the violation by some reasonable means
410
+ prior to 60 days after the cessation.
411
+
412
+ Moreover, your license from a particular copyright holder is
413
+ reinstated permanently if the copyright holder notifies you of the
414
+ violation by some reasonable means, this is the first time you have
415
+ received notice of violation of this License (for any work) from that
416
+ copyright holder, and you cure the violation prior to 30 days after
417
+ your receipt of the notice.
418
+
419
+ Termination of your rights under this section does not terminate the
420
+ licenses of parties who have received copies or rights from you under
421
+ this License. If your rights have been terminated and not permanently
422
+ reinstated, you do not qualify to receive new licenses for the same
423
+ material under section 10.
424
+
425
+ 9. Acceptance Not Required for Having Copies.
426
+
427
+ You are not required to accept this License in order to receive or
428
+ run a copy of the Program. Ancillary propagation of a covered work
429
+ occurring solely as a consequence of using peer-to-peer transmission
430
+ to receive a copy likewise does not require acceptance. However,
431
+ nothing other than this License grants you permission to propagate or
432
+ modify any covered work. These actions infringe copyright if you do
433
+ not accept this License. Therefore, by modifying or propagating a
434
+ covered work, you indicate your acceptance of this License to do so.
435
+
436
+ 10. Automatic Licensing of Downstream Recipients.
437
+
438
+ Each time you convey a covered work, the recipient automatically
439
+ receives a license from the original licensors, to run, modify and
440
+ propagate that work, subject to this License. You are not responsible
441
+ for enforcing compliance by third parties with this License.
442
+
443
+ An "entity transaction" is a transaction transferring control of an
444
+ organization, or substantially all assets of one, or subdividing an
445
+ organization, or merging organizations. If propagation of a covered
446
+ work results from an entity transaction, each party to that
447
+ transaction who receives a copy of the work also receives whatever
448
+ licenses to the work the party's predecessor in interest had or could
449
+ give under the previous paragraph, plus a right to possession of the
450
+ Corresponding Source of the work from the predecessor in interest, if
451
+ the predecessor has it or can get it with reasonable efforts.
452
+
453
+ You may not impose any further restrictions on the exercise of the
454
+ rights granted or affirmed under this License. For example, you may
455
+ not impose a license fee, royalty, or other charge for exercise of
456
+ rights granted under this License, and you may not initiate litigation
457
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
458
+ any patent claim is infringed by making, using, selling, offering for
459
+ sale, or importing the Program or any portion of it.
460
+
461
+ 11. Patents.
462
+
463
+ A "contributor" is a copyright holder who authorizes use under this
464
+ License of the Program or a work on which the Program is based. The
465
+ work thus licensed is called the contributor's "contributor version".
466
+
467
+ A contributor's "essential patent claims" are all patent claims
468
+ owned or controlled by the contributor, whether already acquired or
469
+ hereafter acquired, that would be infringed by some manner, permitted
470
+ by this License, of making, using, or selling its contributor version,
471
+ but do not include claims that would be infringed only as a
472
+ consequence of further modification of the contributor version. For
473
+ purposes of this definition, "control" includes the right to grant
474
+ patent sublicenses in a manner consistent with the requirements of
475
+ this License.
476
+
477
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
478
+ patent license under the contributor's essential patent claims, to
479
+ make, use, sell, offer for sale, import and otherwise run, modify and
480
+ propagate the contents of its contributor version.
481
+
482
+ In the following three paragraphs, a "patent license" is any express
483
+ agreement or commitment, however denominated, not to enforce a patent
484
+ (such as an express permission to practice a patent or covenant not to
485
+ sue for patent infringement). To "grant" such a patent license to a
486
+ party means to make such an agreement or commitment not to enforce a
487
+ patent against the party.
488
+
489
+ If you convey a covered work, knowingly relying on a patent license,
490
+ and the Corresponding Source of the work is not available for anyone
491
+ to copy, free of charge and under the terms of this License, through a
492
+ publicly available network server or other readily accessible means,
493
+ then you must either (1) cause the Corresponding Source to be so
494
+ available, or (2) arrange to deprive yourself of the benefit of the
495
+ patent license for this particular work, or (3) arrange, in a manner
496
+ consistent with the requirements of this License, to extend the patent
497
+ license to downstream recipients. "Knowingly relying" means you have
498
+ actual knowledge that, but for the patent license, your conveying the
499
+ covered work in a country, or your recipient's use of the covered work
500
+ in a country, would infringe one or more identifiable patents in that
501
+ country that you have reason to believe are valid.
502
+
503
+ If, pursuant to or in connection with a single transaction or
504
+ arrangement, you convey, or propagate by procuring conveyance of, a
505
+ covered work, and grant a patent license to some of the parties
506
+ receiving the covered work authorizing them to use, propagate, modify
507
+ or convey a specific copy of the covered work, then the patent license
508
+ you grant is automatically extended to all recipients of the covered
509
+ work and works based on it.
510
+
511
+ A patent license is "discriminatory" if it does not include within
512
+ the scope of its coverage, prohibits the exercise of, or is
513
+ conditioned on the non-exercise of one or more of the rights that are
514
+ specifically granted under this License. You may not convey a covered
515
+ work if you are a party to an arrangement with a third party that is
516
+ in the business of distributing software, under which you make payment
517
+ to the third party based on the extent of your activity of conveying
518
+ the work, and under which the third party grants, to any of the
519
+ parties who would receive the covered work from you, a discriminatory
520
+ patent license (a) in connection with copies of the covered work
521
+ conveyed by you (or copies made from those copies), or (b) primarily
522
+ for and in connection with specific products or compilations that
523
+ contain the covered work, unless you entered into that arrangement,
524
+ or that patent license was granted, prior to 28 March 2007.
525
+
526
+ Nothing in this License shall be construed as excluding or limiting
527
+ any implied license or other defenses to infringement that may
528
+ otherwise be available to you under applicable patent law.
529
+
530
+ 12. No Surrender of Others' Freedom.
531
+
532
+ If conditions are imposed on you (whether by court order, agreement or
533
+ otherwise) that contradict the conditions of this License, they do not
534
+ excuse you from the conditions of this License. If you cannot convey a
535
+ covered work so as to satisfy simultaneously your obligations under this
536
+ License and any other pertinent obligations, then as a consequence you may
537
+ not convey it at all. For example, if you agree to terms that obligate you
538
+ to collect a royalty for further conveying from those to whom you convey
539
+ the Program, the only way you could satisfy both those terms and this
540
+ License would be to refrain entirely from conveying the Program.
541
+
542
+ 13. Remote Network Interaction; Use with the GNU General Public License.
543
+
544
+ Notwithstanding any other provision of this License, if you modify the
545
+ Program, your modified version must prominently offer all users
546
+ interacting with it remotely through a computer network (if your version
547
+ supports such interaction) an opportunity to receive the Corresponding
548
+ Source of your version by providing access to the Corresponding Source
549
+ from a network server at no charge, through some standard or customary
550
+ means of facilitating copying of software. This Corresponding Source
551
+ shall include the Corresponding Source for any work covered by version 3
552
+ of the GNU General Public License that is incorporated pursuant to the
553
+ following paragraph.
554
+
555
+ Notwithstanding any other provision of this License, you have
556
+ permission to link or combine any covered work with a work licensed
557
+ under version 3 of the GNU General Public License into a single
558
+ combined work, and to convey the resulting work. The terms of this
559
+ License will continue to apply to the part which is the covered work,
560
+ but the work with which it is combined will remain governed by version
561
+ 3 of the GNU General Public License.
562
+
563
+ 14. Revised Versions of this License.
564
+
565
+ The Free Software Foundation may publish revised and/or new versions of
566
+ the GNU Affero General Public License from time to time. Such new versions
567
+ will be similar in spirit to the present version, but may differ in detail to
568
+ address new problems or concerns.
569
+
570
+ Each version is given a distinguishing version number. If the
571
+ Program specifies that a certain numbered version of the GNU Affero General
572
+ Public License "or any later version" applies to it, you have the
573
+ option of following the terms and conditions either of that numbered
574
+ version or of any later version published by the Free Software
575
+ Foundation. If the Program does not specify a version number of the
576
+ GNU Affero General Public License, you may choose any version ever published
577
+ by the Free Software Foundation.
578
+
579
+ If the Program specifies that a proxy can decide which future
580
+ versions of the GNU Affero General Public License can be used, that proxy's
581
+ public statement of acceptance of a version permanently authorizes you
582
+ to choose that version for the Program.
583
+
584
+ Later license versions may give you additional or different
585
+ permissions. However, no additional obligations are imposed on any
586
+ author or copyright holder as a result of your choosing to follow a
587
+ later version.
588
+
589
+ 15. Disclaimer of Warranty.
590
+
591
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599
+
600
+ 16. Limitation of Liability.
601
+
602
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610
+ SUCH DAMAGES.
611
+
612
+ 17. Interpretation of Sections 15 and 16.
613
+
614
+ If the disclaimer of warranty and limitation of liability provided
615
+ above cannot be given local legal effect according to their terms,
616
+ reviewing courts shall apply local law that most closely approximates
617
+ an absolute waiver of all civil liability in connection with the
618
+ Program, unless a warranty or assumption of liability accompanies a
619
+ copy of the Program in return for a fee.
620
+
621
+ END OF TERMS AND CONDITIONS
622
+
623
+ How to Apply These Terms to Your New Programs
624
+
625
+ If you develop a new program, and you want it to be of the greatest
626
+ possible use to the public, the best way to achieve this is to make it
627
+ free software which everyone can redistribute and change under these terms.
628
+
629
+ To do so, attach the following notices to the program. It is safest
630
+ to attach them to the start of each source file to most effectively
631
+ state the exclusion of warranty; and each file should have at least
632
+ the "copyright" line and a pointer to where the full notice is found.
633
+
634
+ <one line to give the program's name and a brief idea of what it does.>
635
+ Copyright (C) <year> <name of author>
636
+
637
+ This program is free software: you can redistribute it and/or modify
638
+ it under the terms of the GNU Affero General Public License as published by
639
+ the Free Software Foundation, either version 3 of the License, or
640
+ (at your option) any later version.
641
+
642
+ This program is distributed in the hope that it will be useful,
643
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
644
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645
+ GNU Affero General Public License for more details.
646
+
647
+ You should have received a copy of the GNU Affero General Public License
648
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
649
+
650
+ Also add information on how to contact you by electronic and paper mail.
651
+
652
+ If your software can interact with users remotely through a computer
653
+ network, you should also make sure that it provides a way for users to
654
+ get its source. For example, if your program is a web application, its
655
+ interface could display a "Source" link that leads users to an archive
656
+ of the code. There are many ways you could offer source, and different
657
+ solutions will be better for different programs; see section 13 for the
658
+ specific requirements.
659
+
660
+ You should also get your employer (if you work as a programmer) or school,
661
+ if any, to sign a "copyright disclaimer" for the program, if necessary.
662
+ For more information on this, and how to apply and follow the GNU AGPL, see
663
+ <https://www.gnu.org/licenses/>.
README.md ADDED
@@ -0,0 +1,181 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Stable Diffusion web UI
2
+ A browser interface based on Gradio library for Stable Diffusion.
3
+
4
+ ![](screenshot.png)
5
+
6
+ ## Features
7
+ [Detailed feature showcase with images](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Features):
8
+ - Original txt2img and img2img modes
9
+ - One click install and run script (but you still must install python and git)
10
+ - Outpainting
11
+ - Inpainting
12
+ - Color Sketch
13
+ - Prompt Matrix
14
+ - Stable Diffusion Upscale
15
+ - Attention, specify parts of text that the model should pay more attention to
16
+ - a man in a `((tuxedo))` - will pay more attention to tuxedo
17
+ - a man in a `(tuxedo:1.21)` - alternative syntax
18
+ - select text and press `Ctrl+Up` or `Ctrl+Down` (or `Command+Up` or `Command+Down` if you're on a MacOS) to automatically adjust attention to selected text (code contributed by anonymous user)
19
+ - Loopback, run img2img processing multiple times
20
+ - X/Y/Z plot, a way to draw a 3 dimensional plot of images with different parameters
21
+ - Textual Inversion
22
+ - have as many embeddings as you want and use any names you like for them
23
+ - use multiple embeddings with different numbers of vectors per token
24
+ - works with half precision floating point numbers
25
+ - train embeddings on 8GB (also reports of 6GB working)
26
+ - Extras tab with:
27
+ - GFPGAN, neural network that fixes faces
28
+ - CodeFormer, face restoration tool as an alternative to GFPGAN
29
+ - RealESRGAN, neural network upscaler
30
+ - ESRGAN, neural network upscaler with a lot of third party models
31
+ - SwinIR and Swin2SR ([see here](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/2092)), neural network upscalers
32
+ - LDSR, Latent diffusion super resolution upscaling
33
+ - Resizing aspect ratio options
34
+ - Sampling method selection
35
+ - Adjust sampler eta values (noise multiplier)
36
+ - More advanced noise setting options
37
+ - Interrupt processing at any time
38
+ - 4GB video card support (also reports of 2GB working)
39
+ - Correct seeds for batches
40
+ - Live prompt token length validation
41
+ - Generation parameters
42
+ - parameters you used to generate images are saved with that image
43
+ - in PNG chunks for PNG, in EXIF for JPEG
44
+ - can drag the image to PNG info tab to restore generation parameters and automatically copy them into UI
45
+ - can be disabled in settings
46
+ - drag and drop an image/text-parameters to promptbox
47
+ - Read Generation Parameters Button, loads parameters in promptbox to UI
48
+ - Settings page
49
+ - Running arbitrary python code from UI (must run with `--allow-code` to enable)
50
+ - Mouseover hints for most UI elements
51
+ - Possible to change defaults/mix/max/step values for UI elements via text config
52
+ - Tiling support, a checkbox to create images that can be tiled like textures
53
+ - Progress bar and live image generation preview
54
+ - Can use a separate neural network to produce previews with almost none VRAM or compute requirement
55
+ - Negative prompt, an extra text field that allows you to list what you don't want to see in generated image
56
+ - Styles, a way to save part of prompt and easily apply them via dropdown later
57
+ - Variations, a way to generate same image but with tiny differences
58
+ - Seed resizing, a way to generate same image but at slightly different resolution
59
+ - CLIP interrogator, a button that tries to guess prompt from an image
60
+ - Prompt Editing, a way to change prompt mid-generation, say to start making a watermelon and switch to anime girl midway
61
+ - Batch Processing, process a group of files using img2img
62
+ - Img2img Alternative, reverse Euler method of cross attention control
63
+ - Highres Fix, a convenience option to produce high resolution pictures in one click without usual distortions
64
+ - Reloading checkpoints on the fly
65
+ - Checkpoint Merger, a tab that allows you to merge up to 3 checkpoints into one
66
+ - [Custom scripts](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Custom-Scripts) with many extensions from community
67
+ - [Composable-Diffusion](https://energy-based-model.github.io/Compositional-Visual-Generation-with-Composable-Diffusion-Models/), a way to use multiple prompts at once
68
+ - separate prompts using uppercase `AND`
69
+ - also supports weights for prompts: `a cat :1.2 AND a dog AND a penguin :2.2`
70
+ - No token limit for prompts (original stable diffusion lets you use up to 75 tokens)
71
+ - DeepDanbooru integration, creates danbooru style tags for anime prompts
72
+ - [xformers](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Xformers), major speed increase for select cards: (add `--xformers` to commandline args)
73
+ - via extension: [History tab](https://github.com/yfszzx/stable-diffusion-webui-images-browser): view, direct and delete images conveniently within the UI
74
+ - Generate forever option
75
+ - Training tab
76
+ - hypernetworks and embeddings options
77
+ - Preprocessing images: cropping, mirroring, autotagging using BLIP or deepdanbooru (for anime)
78
+ - Clip skip
79
+ - Hypernetworks
80
+ - Loras (same as Hypernetworks but more pretty)
81
+ - A separate UI where you can choose, with preview, which embeddings, hypernetworks or Loras to add to your prompt
82
+ - Can select to load a different VAE from settings screen
83
+ - Estimated completion time in progress bar
84
+ - API
85
+ - Support for dedicated [inpainting model](https://github.com/runwayml/stable-diffusion#inpainting-with-stable-diffusion) by RunwayML
86
+ - via extension: [Aesthetic Gradients](https://github.com/AUTOMATIC1111/stable-diffusion-webui-aesthetic-gradients), a way to generate images with a specific aesthetic by using clip images embeds (implementation of [https://github.com/vicgalle/stable-diffusion-aesthetic-gradients](https://github.com/vicgalle/stable-diffusion-aesthetic-gradients))
87
+ - [Stable Diffusion 2.0](https://github.com/Stability-AI/stablediffusion) support - see [wiki](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Features#stable-diffusion-20) for instructions
88
+ - [Alt-Diffusion](https://arxiv.org/abs/2211.06679) support - see [wiki](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Features#alt-diffusion) for instructions
89
+ - Now without any bad letters!
90
+ - Load checkpoints in safetensors format
91
+ - Eased resolution restriction: generated image's dimensions must be a multiple of 8 rather than 64
92
+ - Now with a license!
93
+ - Reorder elements in the UI from settings screen
94
+ - [Segmind Stable Diffusion](https://huggingface.co/segmind/SSD-1B) support
95
+
96
+ ## Installation and Running
97
+ Make sure the required [dependencies](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Dependencies) are met and follow the instructions available for:
98
+ - [NVidia](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Install-and-Run-on-NVidia-GPUs) (recommended)
99
+ - [AMD](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Install-and-Run-on-AMD-GPUs) GPUs.
100
+ - [Intel CPUs, Intel GPUs (both integrated and discrete)](https://github.com/openvinotoolkit/stable-diffusion-webui/wiki/Installation-on-Intel-Silicon) (external wiki page)
101
+
102
+ Alternatively, use online services (like Google Colab):
103
+
104
+ - [List of Online Services](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Online-Services)
105
+
106
+ ### Installation on Windows 10/11 with NVidia-GPUs using release package
107
+ 1. Download `sd.webui.zip` from [v1.0.0-pre](https://github.com/AUTOMATIC1111/stable-diffusion-webui/releases/tag/v1.0.0-pre) and extract its contents.
108
+ 2. Run `update.bat`.
109
+ 3. Run `run.bat`.
110
+ > For more details see [Install-and-Run-on-NVidia-GPUs](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Install-and-Run-on-NVidia-GPUs)
111
+
112
+ ### Automatic Installation on Windows
113
+ 1. Install [Python 3.10.6](https://www.python.org/downloads/release/python-3106/) (Newer version of Python does not support torch), checking "Add Python to PATH".
114
+ 2. Install [git](https://git-scm.com/download/win).
115
+ 3. Download the stable-diffusion-webui repository, for example by running `git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git`.
116
+ 4. Run `webui-user.bat` from Windows Explorer as normal, non-administrator, user.
117
+
118
+ ### Automatic Installation on Linux
119
+ 1. Install the dependencies:
120
+ ```bash
121
+ # Debian-based:
122
+ sudo apt install wget git python3 python3-venv libgl1 libglib2.0-0
123
+ # Red Hat-based:
124
+ sudo dnf install wget git python3 gperftools-libs libglvnd-glx
125
+ # openSUSE-based:
126
+ sudo zypper install wget git python3 libtcmalloc4 libglvnd
127
+ # Arch-based:
128
+ sudo pacman -S wget git python3
129
+ ```
130
+ 2. Navigate to the directory you would like the webui to be installed and execute the following command:
131
+ ```bash
132
+ wget -q https://raw.githubusercontent.com/AUTOMATIC1111/stable-diffusion-webui/master/webui.sh
133
+ ```
134
+ 3. Run `webui.sh`.
135
+ 4. Check `webui-user.sh` for options.
136
+ ### Installation on Apple Silicon
137
+
138
+ Find the instructions [here](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Installation-on-Apple-Silicon).
139
+
140
+ ## Contributing
141
+ Here's how to add code to this repo: [Contributing](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Contributing)
142
+
143
+ ## Documentation
144
+
145
+ The documentation was moved from this README over to the project's [wiki](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki).
146
+
147
+ For the purposes of getting Google and other search engines to crawl the wiki, here's a link to the (not for humans) [crawlable wiki](https://github-wiki-see.page/m/AUTOMATIC1111/stable-diffusion-webui/wiki).
148
+
149
+ ## Credits
150
+ Licenses for borrowed code can be found in `Settings -> Licenses` screen, and also in `html/licenses.html` file.
151
+
152
+ - Stable Diffusion - https://github.com/Stability-AI/stablediffusion, https://github.com/CompVis/taming-transformers
153
+ - k-diffusion - https://github.com/crowsonkb/k-diffusion.git
154
+ - GFPGAN - https://github.com/TencentARC/GFPGAN.git
155
+ - CodeFormer - https://github.com/sczhou/CodeFormer
156
+ - ESRGAN - https://github.com/xinntao/ESRGAN
157
+ - SwinIR - https://github.com/JingyunLiang/SwinIR
158
+ - Swin2SR - https://github.com/mv-lab/swin2sr
159
+ - LDSR - https://github.com/Hafiidz/latent-diffusion
160
+ - MiDaS - https://github.com/isl-org/MiDaS
161
+ - Ideas for optimizations - https://github.com/basujindal/stable-diffusion
162
+ - Cross Attention layer optimization - Doggettx - https://github.com/Doggettx/stable-diffusion, original idea for prompt editing.
163
+ - Cross Attention layer optimization - InvokeAI, lstein - https://github.com/invoke-ai/InvokeAI (originally http://github.com/lstein/stable-diffusion)
164
+ - Sub-quadratic Cross Attention layer optimization - Alex Birch (https://github.com/Birch-san/diffusers/pull/1), Amin Rezaei (https://github.com/AminRezaei0x443/memory-efficient-attention)
165
+ - Textual Inversion - Rinon Gal - https://github.com/rinongal/textual_inversion (we're not using his code, but we are using his ideas).
166
+ - Idea for SD upscale - https://github.com/jquesnelle/txt2imghd
167
+ - Noise generation for outpainting mk2 - https://github.com/parlance-zz/g-diffuser-bot
168
+ - CLIP interrogator idea and borrowing some code - https://github.com/pharmapsychotic/clip-interrogator
169
+ - Idea for Composable Diffusion - https://github.com/energy-based-model/Compositional-Visual-Generation-with-Composable-Diffusion-Models-PyTorch
170
+ - xformers - https://github.com/facebookresearch/xformers
171
+ - DeepDanbooru - interrogator for anime diffusers https://github.com/KichangKim/DeepDanbooru
172
+ - Sampling in float32 precision from a float16 UNet - marunine for the idea, Birch-san for the example Diffusers implementation (https://github.com/Birch-san/diffusers-play/tree/92feee6)
173
+ - Instruct pix2pix - Tim Brooks (star), Aleksander Holynski (star), Alexei A. Efros (no star) - https://github.com/timothybrooks/instruct-pix2pix
174
+ - Security advice - RyotaK
175
+ - UniPC sampler - Wenliang Zhao - https://github.com/wl-zhao/UniPC
176
+ - TAESD - Ollin Boer Bohan - https://github.com/madebyollin/taesd
177
+ - LyCORIS - KohakuBlueleaf
178
+ - Restart sampling - lambertae - https://github.com/Newbeeer/diffusion_restart_sampling
179
+ - Hypertile - tfernd - https://github.com/tfernd/HyperTile
180
+ - Initial Gradio script - posted on 4chan by an Anonymous user. Thank you Anonymous user.
181
+ - (You)
config.json ADDED
@@ -0,0 +1,439 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "samples_save": true,
3
+ "samples_format": "jpg",
4
+ "samples_filename_pattern": "",
5
+ "save_images_add_number": true,
6
+ "grid_save": true,
7
+ "grid_format": "jpg",
8
+ "grid_extended_filename": true,
9
+ "grid_only_if_multiple": true,
10
+ "grid_prevent_empty_spots": false,
11
+ "grid_zip_filename_pattern": "",
12
+ "n_rows": -1,
13
+ "enable_pnginfo": true,
14
+ "save_txt": false,
15
+ "save_images_before_face_restoration": false,
16
+ "save_images_before_highres_fix": false,
17
+ "save_images_before_color_correction": false,
18
+ "save_mask": false,
19
+ "save_mask_composite": false,
20
+ "jpeg_quality": 100,
21
+ "webp_lossless": false,
22
+ "export_for_4chan": true,
23
+ "img_downscale_threshold": 4.0,
24
+ "target_side_length": 4000,
25
+ "img_max_size_mp": 200,
26
+ "use_original_name_batch": true,
27
+ "use_upscaler_name_as_suffix": false,
28
+ "save_selected_only": true,
29
+ "save_init_img": false,
30
+ "temp_dir": "",
31
+ "clean_temp_dir_at_start": false,
32
+ "outdir_samples": "/home/studio-lab-user/Outputs",
33
+ "outdir_txt2img_samples": "/home/studio-lab-user/Outputs",
34
+ "outdir_img2img_samples": "/home/studio-lab-user/Outputs",
35
+ "outdir_extras_samples": "/home/studio-lab-user/Outputs",
36
+ "outdir_grids": "/home/studio-lab-user/Outputs",
37
+ "outdir_txt2img_grids": "/home/studio-lab-user/Outputs",
38
+ "outdir_img2img_grids": "/home/studio-lab-user/Outputs",
39
+ "outdir_save": "/home/studio-lab-user/Outputs/Download",
40
+ "outdir_init_images": "outputs/init-images",
41
+ "save_to_dirs": true,
42
+ "grid_save_to_dirs": true,
43
+ "use_save_to_dirs_for_ui": false,
44
+ "directories_filename_pattern": "[date]",
45
+ "directories_max_prompt_words": 8,
46
+ "ESRGAN_tile": 192,
47
+ "ESRGAN_tile_overlap": 8,
48
+ "realesrgan_enabled_models": [
49
+ "R-ESRGAN 4x+ Anime6B",
50
+ "R-ESRGAN 4x+"
51
+ ],
52
+ "upscaler_for_img2img": "R-ESRGAN 4x+ Anime6B",
53
+ "face_restoration_model": "CodeFormer",
54
+ "code_former_weight": 0.4,
55
+ "face_restoration_unload": false,
56
+ "show_warnings": false,
57
+ "memmon_poll_rate": 8,
58
+ "samples_log_stdout": false,
59
+ "multiple_tqdm": true,
60
+ "print_hypernet_extra": false,
61
+ "list_hidden_files": true,
62
+ "unload_models_when_training": false,
63
+ "pin_memory": false,
64
+ "save_optimizer_state": false,
65
+ "save_training_settings_to_txt": true,
66
+ "dataset_filename_word_regex": "",
67
+ "dataset_filename_join_string": " ",
68
+ "training_image_repeats_per_epoch": 1,
69
+ "training_write_csv_every": 500,
70
+ "training_xattention_optimizations": false,
71
+ "training_enable_tensorboard": false,
72
+ "training_tensorboard_save_images": false,
73
+ "training_tensorboard_flush_every": 120,
74
+ "sd_model_checkpoint": "#.safetensors [98ea62e436]",
75
+ "sd_checkpoint_cache": 0,
76
+ "sd_vae_checkpoint_cache": 0,
77
+ "sd_vae": "vae-ft-mse-840000-ema-pruned.ckpt",
78
+ "sd_vae_as_default": true,
79
+ "sd_unet": "Automatic",
80
+ "inpainting_mask_weight": 1.0,
81
+ "initial_noise_multiplier": 1.0,
82
+ "img2img_color_correction": false,
83
+ "img2img_fix_steps": false,
84
+ "img2img_background_color": "#ffffff",
85
+ "enable_quantization": false,
86
+ "enable_emphasis": true,
87
+ "enable_batch_seeds": true,
88
+ "comma_padding_backtrack": 20,
89
+ "CLIP_stop_at_last_layers": 2,
90
+ "upcast_attn": false,
91
+ "randn_source": "GPU",
92
+ "cross_attention_optimization": "Automatic",
93
+ "s_min_uncond": 0.0,
94
+ "token_merging_ratio": 0.0,
95
+ "token_merging_ratio_img2img": 0.0,
96
+ "token_merging_ratio_hr": 0.0,
97
+ "pad_cond_uncond": false,
98
+ "experimental_persistent_cond_cache": false,
99
+ "use_old_emphasis_implementation": false,
100
+ "use_old_karras_scheduler_sigmas": false,
101
+ "no_dpmpp_sde_batch_determinism": false,
102
+ "use_old_hires_fix_width_height": false,
103
+ "dont_fix_second_order_samplers_schedule": false,
104
+ "hires_fix_use_firstpass_conds": false,
105
+ "interrogate_keep_models_in_memory": false,
106
+ "interrogate_return_ranks": false,
107
+ "interrogate_clip_num_beams": 1,
108
+ "interrogate_clip_min_length": 24,
109
+ "interrogate_clip_max_length": 48,
110
+ "interrogate_clip_dict_limit": 1500,
111
+ "interrogate_clip_skip_categories": [],
112
+ "interrogate_deepbooru_score_threshold": 0.5,
113
+ "deepbooru_sort_alpha": true,
114
+ "deepbooru_use_spaces": true,
115
+ "deepbooru_escape": true,
116
+ "deepbooru_filter_tags": "",
117
+ "extra_networks_show_hidden_directories": true,
118
+ "extra_networks_hidden_models": "When searched",
119
+ "extra_networks_default_view": "thumbs",
120
+ "extra_networks_default_multiplier": 1.0,
121
+ "extra_networks_card_width": 120.0,
122
+ "extra_networks_card_height": 200.0,
123
+ "extra_networks_add_text_separator": " ",
124
+ "ui_extra_networks_tab_reorder": "",
125
+ "sd_hypernetwork": "None",
126
+ "localization": "None",
127
+ "gradio_theme": "Default",
128
+ "img2img_editor_height": 720,
129
+ "return_grid": false,
130
+ "return_mask": false,
131
+ "return_mask_composite": false,
132
+ "do_not_show_images": false,
133
+ "send_seed": true,
134
+ "send_size": true,
135
+ "font": "",
136
+ "js_modal_lightbox": true,
137
+ "js_modal_lightbox_initially_zoomed": true,
138
+ "js_modal_lightbox_gamepad": false,
139
+ "js_modal_lightbox_gamepad_repeat": 250,
140
+ "show_progress_in_title": true,
141
+ "samplers_in_dropdown": true,
142
+ "dimensions_and_batch_together": true,
143
+ "keyedit_precision_attention": 0.1,
144
+ "keyedit_precision_extra": 0.1,
145
+ "keyedit_delimiters": ".,\\/!?%^*;:{}=`~()",
146
+ "quicksettings_list": [
147
+ "sd_model_checkpoint",
148
+ "sd_vae",
149
+ "CLIP_stop_at_last_layers"
150
+ ],
151
+ "ui_tab_order": [],
152
+ "hidden_tabs": [
153
+ "Train"
154
+ ],
155
+ "ui_reorder_list": [],
156
+ "hires_fix_show_sampler": false,
157
+ "hires_fix_show_prompts": false,
158
+ "disable_token_counters": false,
159
+ "add_model_hash_to_info": true,
160
+ "add_model_name_to_info": true,
161
+ "add_version_to_infotext": true,
162
+ "disable_weights_auto_swap": true,
163
+ "infotext_styles": "Apply if any",
164
+ "show_progressbar": true,
165
+ "live_previews_enable": false,
166
+ "live_previews_image_format": "jpeg",
167
+ "show_progress_grid": true,
168
+ "show_progress_every_n_steps": 10,
169
+ "show_progress_type": "Approx NN",
170
+ "live_preview_content": "Prompt",
171
+ "live_preview_refresh_period": 1000,
172
+ "hide_samplers": [
173
+ "DPM2",
174
+ "LMS",
175
+ "DPM2 a",
176
+ "DPM++ 2S a",
177
+ "DPM++ 2M",
178
+ "DPM++ SDE",
179
+ "DPM++ 2M SDE",
180
+ "DPM fast",
181
+ "DPM adaptive",
182
+ "LMS Karras",
183
+ "DPM2 Karras",
184
+ "DPM2 a Karras",
185
+ "UniPC",
186
+ "PLMS",
187
+ "DPM++ SDE Karras",
188
+ "DPM++ 2M SDE Exponential",
189
+ "DPM++ 2M SDE Heun",
190
+ "DPM++ 2M SDE Heun Karras",
191
+ "DPM++ 3M SDE Exponential",
192
+ "DPM++ 3M SDE",
193
+ "DPM++ 2M SDE Heun Exponential",
194
+ "DPM++ 2S a Karras",
195
+ "DDIM",
196
+ "Restart",
197
+ "Euler"
198
+ ],
199
+ "eta_ddim": 0.0,
200
+ "eta_ancestral": 1.0,
201
+ "ddim_discretize": "uniform",
202
+ "s_churn": 0.0,
203
+ "s_tmin": 0.0,
204
+ "s_noise": 1.0,
205
+ "k_sched_type": "Automatic",
206
+ "sigma_min": 0.0,
207
+ "sigma_max": 0.0,
208
+ "rho": 0.0,
209
+ "eta_noise_seed_delta": 0,
210
+ "always_discard_next_to_last_sigma": false,
211
+ "uni_pc_variant": "bh1",
212
+ "uni_pc_skip_type": "time_uniform",
213
+ "uni_pc_order": 3,
214
+ "uni_pc_lower_order_final": true,
215
+ "postprocessing_enable_in_main_ui": [
216
+ "Upscale"
217
+ ],
218
+ "postprocessing_operation_order": [],
219
+ "upscaling_max_images_in_cache": 5,
220
+ "disabled_extensions": [],
221
+ "disable_all_extensions": "none",
222
+ "restore_config_state_file": "",
223
+ "sd_checkpoint_hash": "98ea62e436868fc19c31fa07f9e205ece1aa80cf7785a53c9494989c2efbcda6",
224
+ "ldsr_steps": 100,
225
+ "ldsr_cached": false,
226
+ "SCUNET_tile": 256,
227
+ "SCUNET_tile_overlap": 8,
228
+ "SWIN_tile": 192,
229
+ "SWIN_tile_overlap": 8,
230
+ "lora_functional": false,
231
+ "sd_lora": "None",
232
+ "lora_preferred_name": "Alias from file",
233
+ "lora_add_hashes_to_infotext": true,
234
+ "extra_options": [
235
+ "CLIP_stop_at_last_layers",
236
+ "sd_lora",
237
+ "samples_format",
238
+ "jpeg_quality"
239
+ ],
240
+ "extra_options_accordion": true,
241
+ "canvas_hotkey_zoom": "Alt",
242
+ "canvas_hotkey_adjust": "Ctrl",
243
+ "canvas_hotkey_move": "F",
244
+ "canvas_hotkey_fullscreen": "S",
245
+ "canvas_hotkey_reset": "R",
246
+ "canvas_hotkey_overlap": "O",
247
+ "canvas_show_tooltip": true,
248
+ "canvas_disabled_functions": [
249
+ "Overlap"
250
+ ],
251
+ "arh_javascript_aspect_ratio_show": true,
252
+ "arh_javascript_aspect_ratio": "1:1, 2:1, 3:2, 4:3, 5:4, 16:9",
253
+ "arh_ui_javascript_selection_method": "Aspect Ratios Dropdown",
254
+ "arh_hide_accordion_by_default": true,
255
+ "arh_expand_by_default": false,
256
+ "arh_ui_component_order_key": "MaxDimensionScaler, MinDimensionScaler, PredefinedAspectRatioButtons, PredefinedPercentageButtons",
257
+ "arh_show_max_width_or_height": false,
258
+ "arh_max_width_or_height": 1024,
259
+ "arh_show_min_width_or_height": false,
260
+ "arh_min_width_or_height": 1024,
261
+ "arh_show_predefined_aspect_ratios": false,
262
+ "arh_predefined_aspect_ratio_use_max_dim": false,
263
+ "arh_predefined_aspect_ratios": "1:1, 4:3, 16:9, 9:16, 21:9",
264
+ "arh_show_predefined_percentages": false,
265
+ "arh_predefined_percentages": "25, 50, 75, 125, 150, 175, 200",
266
+ "arh_predefined_percentages_display_key": "Incremental/decremental percentage (-50%, +50%)",
267
+ "control_net_model_config": "models/cldm_v15.yaml",
268
+ "control_net_model_adapter_config": "models/t2iadapter_sketch_sd14v1.yaml",
269
+ "control_net_detectedmap_dir": "detected_maps",
270
+ "control_net_models_path": "",
271
+ "control_net_modules_path": "",
272
+ "control_net_max_models_num": 3,
273
+ "control_net_model_cache_size": 1,
274
+ "control_net_inpaint_blur_sigma": 7,
275
+ "control_net_no_high_res_fix": false,
276
+ "control_net_no_detectmap": false,
277
+ "control_net_detectmap_autosaving": false,
278
+ "control_net_allow_script_control": false,
279
+ "control_net_sync_field_args": false,
280
+ "controlnet_show_batch_images_in_ui": false,
281
+ "controlnet_increment_seed_during_batch": false,
282
+ "controlnet_disable_control_type": false,
283
+ "controlnet_disable_openpose_edit": false,
284
+ "grid_text_active_color": "#000000",
285
+ "grid_text_inactive_color": "#999999",
286
+ "grid_background_color": "#ffffff",
287
+ "SWIN_torch_compile": false,
288
+ "disable_mmap_load_safetensors": false,
289
+ "auto_vae_precision": true,
290
+ "sdxl_crop_top": 0.0,
291
+ "sdxl_crop_left": 0.0,
292
+ "sdxl_refiner_low_aesthetic_score": 2.5,
293
+ "sdxl_refiner_high_aesthetic_score": 6.0,
294
+ "extra_networks_card_text_scale": 0.5,
295
+ "extra_networks_card_show_desc": true,
296
+ "textual_inversion_print_at_load": false,
297
+ "textual_inversion_add_hashes_to_infotext": true,
298
+ "lora_show_all": false,
299
+ "lora_hide_unknown_for_versions": [],
300
+ "keyedit_move": true,
301
+ "add_user_name_to_info": false,
302
+ "canvas_blur_prompt": false,
303
+ "image_browser_active_tabs": "txt2img, img2img, txt2img-grids, img2img-grids, Extras, Favorites, Others, All, Maintenance",
304
+ "image_browser_hidden_components": [],
305
+ "image_browser_with_subdirs": true,
306
+ "image_browser_preload": false,
307
+ "image_browser_copy_image": false,
308
+ "image_browser_delete_message": true,
309
+ "image_browser_txt_files": true,
310
+ "image_browser_debug_level": "0 - none",
311
+ "image_browser_delete_recycle": true,
312
+ "image_browser_scan_exif": true,
313
+ "image_browser_mod_shift": false,
314
+ "image_browser_mod_ctrl_shift": false,
315
+ "image_browser_ranking_pnginfo": false,
316
+ "image_browser_page_columns": 6.0,
317
+ "image_browser_page_rows": 6.0,
318
+ "image_browser_pages_perload": 20.0,
319
+ "image_browser_height_auto": false,
320
+ "image_browser_use_thumbnail": false,
321
+ "image_browser_thumbnail_size": 200.0,
322
+ "image_browser_swipe": false,
323
+ "image_browser_img_tooltips": true,
324
+ "image_browser_show_progress": true,
325
+ "image_browser_info_add": false,
326
+ "sd_vae_overrides_per_model_preferences": false,
327
+ "save_incomplete_images": false,
328
+ "face_restoration": false,
329
+ "auto_launch_browser": "Local",
330
+ "show_gradio_deprecation_warnings": true,
331
+ "hide_ldm_prints": true,
332
+ "api_enable_requests": true,
333
+ "api_forbid_local_requests": true,
334
+ "api_useragent": "",
335
+ "sd_checkpoints_limit": 1,
336
+ "sd_checkpoints_keep_in_cpu": true,
337
+ "tiling": false,
338
+ "hires_fix_refiner_pass": "second pass",
339
+ "sd_vae_encode_method": "Full",
340
+ "sd_vae_decode_method": "Full",
341
+ "img2img_extra_noise": 0,
342
+ "img2img_sketch_default_brush_color": "#ffffff",
343
+ "img2img_inpaint_mask_brush_color": "#ffffff",
344
+ "img2img_inpaint_sketch_default_brush_color": "#ffffff",
345
+ "persistent_cond_cache": true,
346
+ "batch_cond_uncond": true,
347
+ "use_old_scheduling": false,
348
+ "lora_in_memory_limit": 0,
349
+ "gradio_themes_cache": true,
350
+ "gallery_height": "",
351
+ "extra_options_txt2img": [],
352
+ "extra_options_img2img": [
353
+ "upscaler_for_img2img"
354
+ ],
355
+ "extra_options_cols": 1,
356
+ "live_preview_allow_lowvram_full": false,
357
+ "live_preview_fast_interrupt": false,
358
+ "s_tmax": 0,
359
+ "sgm_noise_multiplier": false,
360
+ "canvas_auto_expand": true,
361
+ "control_net_unit_count": 3,
362
+ "controlnet_ignore_noninpaint_mask": false,
363
+ "use_aria2": true,
364
+ "disable_dns": false,
365
+ "show_log": false,
366
+ "split_aria2": 64,
367
+ "aria2_flags": "",
368
+ "insert_sub": true,
369
+ "use_LORA": false,
370
+ "unpack_zip": false,
371
+ "hide_early_access": true,
372
+ "custom_api_key": "",
373
+ "page_header": false,
374
+ "update_log": true,
375
+ "dot_subfolders": true,
376
+ "video_playback": true,
377
+ "image_location": "",
378
+ "sub_image_location": true,
379
+ "Checkpoint_subfolder": "None",
380
+ "LORA_subfolder": "None",
381
+ "LoCon_subfolder": "None",
382
+ "TextualInversion_subfolder": "None",
383
+ "Poses_subfolder": "None",
384
+ "Controlnet_subfolder": "None",
385
+ "Hypernetwork_subfolder": "None",
386
+ "MotionModule_subfolder": "None",
387
+ "SWINIR_upscale_subfolder": "None",
388
+ "REALESRGAN_upscale_subfolder": "None",
389
+ "GFPGAN_upscale_subfolder": "None",
390
+ "BSRGAN_upscale_subfolder": "None",
391
+ "ESRGAN_upscale_subfolder": "None",
392
+ "VAE_subfolder": "None",
393
+ "AestheticGradient_subfolder": "None",
394
+ "Wildcards_subfolder": "None",
395
+ "Workflows_subfolder": "None",
396
+ "Other_subfolder": "None",
397
+ "promptgen_names": "AUTOMATIC/promptgen-lexart, AUTOMATIC/promptgen-majinai-safe, AUTOMATIC/promptgen-majinai-unsafe",
398
+ "promptgen_device": "gpu",
399
+ "ad_max_models": 2,
400
+ "ad_extra_models_dir": "",
401
+ "ad_save_previews": false,
402
+ "ad_save_images_before": false,
403
+ "ad_only_seleted_scripts": true,
404
+ "ad_script_names": "dynamic_prompting,dynamic_thresholding,wildcard_recursive,wildcards,lora_block_weight,negpip",
405
+ "ad_bbox_sortby": "None",
406
+ "ad_same_seed_for_each_tap": false,
407
+ "hypertile_enable_unet": false,
408
+ "hypertile_enable_unet_secondpass": false,
409
+ "hypertile_max_depth_unet": 3,
410
+ "hypertile_max_tile_unet": 256,
411
+ "hypertile_swap_size_unet": 3,
412
+ "hypertile_enable_vae": false,
413
+ "hypertile_max_depth_vae": 3,
414
+ "hypertile_max_tile_vae": 128,
415
+ "hypertile_swap_size_vae": 3,
416
+ "save_images_replace_action": "Replace",
417
+ "notification_audio": true,
418
+ "notification_volume": 100,
419
+ "extra_networks_dir_button_function": false,
420
+ "extra_networks_card_order_field": "Path",
421
+ "extra_networks_card_order": "Ascending",
422
+ "img2img_batch_show_results_limit": 32,
423
+ "add_vae_name_to_info": true,
424
+ "add_vae_hash_to_info": true,
425
+ "infotext_skip_pasting": [],
426
+ "js_live_preview_in_modal_lightbox": false,
427
+ "keyedit_delimiters_whitespace": [
428
+ "Tab",
429
+ "Carriage Return",
430
+ "Line Feed"
431
+ ],
432
+ "compact_prompt_box": false,
433
+ "sd_checkpoint_dropdown_use_short": false,
434
+ "txt2img_settings_accordion": false,
435
+ "img2img_settings_accordion": false,
436
+ "enable_console_prompts": false,
437
+ "dump_stacks_on_signal": false,
438
+ "postprocessing_existing_caption_action": "Ignore"
439
+ }
configs/alt-diffusion-inference.yaml ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model:
2
+ base_learning_rate: 1.0e-04
3
+ target: ldm.models.diffusion.ddpm.LatentDiffusion
4
+ params:
5
+ linear_start: 0.00085
6
+ linear_end: 0.0120
7
+ num_timesteps_cond: 1
8
+ log_every_t: 200
9
+ timesteps: 1000
10
+ first_stage_key: "jpg"
11
+ cond_stage_key: "txt"
12
+ image_size: 64
13
+ channels: 4
14
+ cond_stage_trainable: false # Note: different from the one we trained before
15
+ conditioning_key: crossattn
16
+ monitor: val/loss_simple_ema
17
+ scale_factor: 0.18215
18
+ use_ema: False
19
+
20
+ scheduler_config: # 10000 warmup steps
21
+ target: ldm.lr_scheduler.LambdaLinearScheduler
22
+ params:
23
+ warm_up_steps: [ 10000 ]
24
+ cycle_lengths: [ 10000000000000 ] # incredibly large number to prevent corner cases
25
+ f_start: [ 1.e-6 ]
26
+ f_max: [ 1. ]
27
+ f_min: [ 1. ]
28
+
29
+ unet_config:
30
+ target: ldm.modules.diffusionmodules.openaimodel.UNetModel
31
+ params:
32
+ image_size: 32 # unused
33
+ in_channels: 4
34
+ out_channels: 4
35
+ model_channels: 320
36
+ attention_resolutions: [ 4, 2, 1 ]
37
+ num_res_blocks: 2
38
+ channel_mult: [ 1, 2, 4, 4 ]
39
+ num_heads: 8
40
+ use_spatial_transformer: True
41
+ transformer_depth: 1
42
+ context_dim: 768
43
+ use_checkpoint: True
44
+ legacy: False
45
+
46
+ first_stage_config:
47
+ target: ldm.models.autoencoder.AutoencoderKL
48
+ params:
49
+ embed_dim: 4
50
+ monitor: val/rec_loss
51
+ ddconfig:
52
+ double_z: true
53
+ z_channels: 4
54
+ resolution: 256
55
+ in_channels: 3
56
+ out_ch: 3
57
+ ch: 128
58
+ ch_mult:
59
+ - 1
60
+ - 2
61
+ - 4
62
+ - 4
63
+ num_res_blocks: 2
64
+ attn_resolutions: []
65
+ dropout: 0.0
66
+ lossconfig:
67
+ target: torch.nn.Identity
68
+
69
+ cond_stage_config:
70
+ target: modules.xlmr.BertSeriesModelWithTransformation
71
+ params:
72
+ name: "XLMR-Large"
configs/alt-diffusion-m18-inference.yaml ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model:
2
+ base_learning_rate: 1.0e-04
3
+ target: ldm.models.diffusion.ddpm.LatentDiffusion
4
+ params:
5
+ linear_start: 0.00085
6
+ linear_end: 0.0120
7
+ num_timesteps_cond: 1
8
+ log_every_t: 200
9
+ timesteps: 1000
10
+ first_stage_key: "jpg"
11
+ cond_stage_key: "txt"
12
+ image_size: 64
13
+ channels: 4
14
+ cond_stage_trainable: false # Note: different from the one we trained before
15
+ conditioning_key: crossattn
16
+ monitor: val/loss_simple_ema
17
+ scale_factor: 0.18215
18
+ use_ema: False
19
+
20
+ scheduler_config: # 10000 warmup steps
21
+ target: ldm.lr_scheduler.LambdaLinearScheduler
22
+ params:
23
+ warm_up_steps: [ 10000 ]
24
+ cycle_lengths: [ 10000000000000 ] # incredibly large number to prevent corner cases
25
+ f_start: [ 1.e-6 ]
26
+ f_max: [ 1. ]
27
+ f_min: [ 1. ]
28
+
29
+ unet_config:
30
+ target: ldm.modules.diffusionmodules.openaimodel.UNetModel
31
+ params:
32
+ image_size: 32 # unused
33
+ in_channels: 4
34
+ out_channels: 4
35
+ model_channels: 320
36
+ attention_resolutions: [ 4, 2, 1 ]
37
+ num_res_blocks: 2
38
+ channel_mult: [ 1, 2, 4, 4 ]
39
+ num_head_channels: 64
40
+ use_spatial_transformer: True
41
+ use_linear_in_transformer: True
42
+ transformer_depth: 1
43
+ context_dim: 1024
44
+ use_checkpoint: True
45
+ legacy: False
46
+
47
+ first_stage_config:
48
+ target: ldm.models.autoencoder.AutoencoderKL
49
+ params:
50
+ embed_dim: 4
51
+ monitor: val/rec_loss
52
+ ddconfig:
53
+ double_z: true
54
+ z_channels: 4
55
+ resolution: 256
56
+ in_channels: 3
57
+ out_ch: 3
58
+ ch: 128
59
+ ch_mult:
60
+ - 1
61
+ - 2
62
+ - 4
63
+ - 4
64
+ num_res_blocks: 2
65
+ attn_resolutions: []
66
+ dropout: 0.0
67
+ lossconfig:
68
+ target: torch.nn.Identity
69
+
70
+ cond_stage_config:
71
+ target: modules.xlmr_m18.BertSeriesModelWithTransformation
72
+ params:
73
+ name: "XLMR-Large"
configs/instruct-pix2pix.yaml ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # File modified by authors of InstructPix2Pix from original (https://github.com/CompVis/stable-diffusion).
2
+ # See more details in LICENSE.
3
+
4
+ model:
5
+ base_learning_rate: 1.0e-04
6
+ target: modules.models.diffusion.ddpm_edit.LatentDiffusion
7
+ params:
8
+ linear_start: 0.00085
9
+ linear_end: 0.0120
10
+ num_timesteps_cond: 1
11
+ log_every_t: 200
12
+ timesteps: 1000
13
+ first_stage_key: edited
14
+ cond_stage_key: edit
15
+ # image_size: 64
16
+ # image_size: 32
17
+ image_size: 16
18
+ channels: 4
19
+ cond_stage_trainable: false # Note: different from the one we trained before
20
+ conditioning_key: hybrid
21
+ monitor: val/loss_simple_ema
22
+ scale_factor: 0.18215
23
+ use_ema: false
24
+
25
+ scheduler_config: # 10000 warmup steps
26
+ target: ldm.lr_scheduler.LambdaLinearScheduler
27
+ params:
28
+ warm_up_steps: [ 0 ]
29
+ cycle_lengths: [ 10000000000000 ] # incredibly large number to prevent corner cases
30
+ f_start: [ 1.e-6 ]
31
+ f_max: [ 1. ]
32
+ f_min: [ 1. ]
33
+
34
+ unet_config:
35
+ target: ldm.modules.diffusionmodules.openaimodel.UNetModel
36
+ params:
37
+ image_size: 32 # unused
38
+ in_channels: 8
39
+ out_channels: 4
40
+ model_channels: 320
41
+ attention_resolutions: [ 4, 2, 1 ]
42
+ num_res_blocks: 2
43
+ channel_mult: [ 1, 2, 4, 4 ]
44
+ num_heads: 8
45
+ use_spatial_transformer: True
46
+ transformer_depth: 1
47
+ context_dim: 768
48
+ use_checkpoint: True
49
+ legacy: False
50
+
51
+ first_stage_config:
52
+ target: ldm.models.autoencoder.AutoencoderKL
53
+ params:
54
+ embed_dim: 4
55
+ monitor: val/rec_loss
56
+ ddconfig:
57
+ double_z: true
58
+ z_channels: 4
59
+ resolution: 256
60
+ in_channels: 3
61
+ out_ch: 3
62
+ ch: 128
63
+ ch_mult:
64
+ - 1
65
+ - 2
66
+ - 4
67
+ - 4
68
+ num_res_blocks: 2
69
+ attn_resolutions: []
70
+ dropout: 0.0
71
+ lossconfig:
72
+ target: torch.nn.Identity
73
+
74
+ cond_stage_config:
75
+ target: ldm.modules.encoders.modules.FrozenCLIPEmbedder
76
+
77
+ data:
78
+ target: main.DataModuleFromConfig
79
+ params:
80
+ batch_size: 128
81
+ num_workers: 1
82
+ wrap: false
83
+ validation:
84
+ target: edit_dataset.EditDataset
85
+ params:
86
+ path: data/clip-filtered-dataset
87
+ cache_dir: data/
88
+ cache_name: data_10k
89
+ split: val
90
+ min_text_sim: 0.2
91
+ min_image_sim: 0.75
92
+ min_direction_sim: 0.2
93
+ max_samples_per_prompt: 1
94
+ min_resize_res: 512
95
+ max_resize_res: 512
96
+ crop_res: 512
97
+ output_as_edit: False
98
+ real_input: True
configs/v1-inference.yaml ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model:
2
+ base_learning_rate: 1.0e-04
3
+ target: ldm.models.diffusion.ddpm.LatentDiffusion
4
+ params:
5
+ linear_start: 0.00085
6
+ linear_end: 0.0120
7
+ num_timesteps_cond: 1
8
+ log_every_t: 200
9
+ timesteps: 1000
10
+ first_stage_key: "jpg"
11
+ cond_stage_key: "txt"
12
+ image_size: 64
13
+ channels: 4
14
+ cond_stage_trainable: false # Note: different from the one we trained before
15
+ conditioning_key: crossattn
16
+ monitor: val/loss_simple_ema
17
+ scale_factor: 0.18215
18
+ use_ema: False
19
+
20
+ scheduler_config: # 10000 warmup steps
21
+ target: ldm.lr_scheduler.LambdaLinearScheduler
22
+ params:
23
+ warm_up_steps: [ 10000 ]
24
+ cycle_lengths: [ 10000000000000 ] # incredibly large number to prevent corner cases
25
+ f_start: [ 1.e-6 ]
26
+ f_max: [ 1. ]
27
+ f_min: [ 1. ]
28
+
29
+ unet_config:
30
+ target: ldm.modules.diffusionmodules.openaimodel.UNetModel
31
+ params:
32
+ image_size: 32 # unused
33
+ in_channels: 4
34
+ out_channels: 4
35
+ model_channels: 320
36
+ attention_resolutions: [ 4, 2, 1 ]
37
+ num_res_blocks: 2
38
+ channel_mult: [ 1, 2, 4, 4 ]
39
+ num_heads: 8
40
+ use_spatial_transformer: True
41
+ transformer_depth: 1
42
+ context_dim: 768
43
+ use_checkpoint: True
44
+ legacy: False
45
+
46
+ first_stage_config:
47
+ target: ldm.models.autoencoder.AutoencoderKL
48
+ params:
49
+ embed_dim: 4
50
+ monitor: val/rec_loss
51
+ ddconfig:
52
+ double_z: true
53
+ z_channels: 4
54
+ resolution: 256
55
+ in_channels: 3
56
+ out_ch: 3
57
+ ch: 128
58
+ ch_mult:
59
+ - 1
60
+ - 2
61
+ - 4
62
+ - 4
63
+ num_res_blocks: 2
64
+ attn_resolutions: []
65
+ dropout: 0.0
66
+ lossconfig:
67
+ target: torch.nn.Identity
68
+
69
+ cond_stage_config:
70
+ target: ldm.modules.encoders.modules.FrozenCLIPEmbedder
configs/v1-inpainting-inference.yaml ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model:
2
+ base_learning_rate: 7.5e-05
3
+ target: ldm.models.diffusion.ddpm.LatentInpaintDiffusion
4
+ params:
5
+ linear_start: 0.00085
6
+ linear_end: 0.0120
7
+ num_timesteps_cond: 1
8
+ log_every_t: 200
9
+ timesteps: 1000
10
+ first_stage_key: "jpg"
11
+ cond_stage_key: "txt"
12
+ image_size: 64
13
+ channels: 4
14
+ cond_stage_trainable: false # Note: different from the one we trained before
15
+ conditioning_key: hybrid # important
16
+ monitor: val/loss_simple_ema
17
+ scale_factor: 0.18215
18
+ finetune_keys: null
19
+
20
+ scheduler_config: # 10000 warmup steps
21
+ target: ldm.lr_scheduler.LambdaLinearScheduler
22
+ params:
23
+ warm_up_steps: [ 2500 ] # NOTE for resuming. use 10000 if starting from scratch
24
+ cycle_lengths: [ 10000000000000 ] # incredibly large number to prevent corner cases
25
+ f_start: [ 1.e-6 ]
26
+ f_max: [ 1. ]
27
+ f_min: [ 1. ]
28
+
29
+ unet_config:
30
+ target: ldm.modules.diffusionmodules.openaimodel.UNetModel
31
+ params:
32
+ image_size: 32 # unused
33
+ in_channels: 9 # 4 data + 4 downscaled image + 1 mask
34
+ out_channels: 4
35
+ model_channels: 320
36
+ attention_resolutions: [ 4, 2, 1 ]
37
+ num_res_blocks: 2
38
+ channel_mult: [ 1, 2, 4, 4 ]
39
+ num_heads: 8
40
+ use_spatial_transformer: True
41
+ transformer_depth: 1
42
+ context_dim: 768
43
+ use_checkpoint: True
44
+ legacy: False
45
+
46
+ first_stage_config:
47
+ target: ldm.models.autoencoder.AutoencoderKL
48
+ params:
49
+ embed_dim: 4
50
+ monitor: val/rec_loss
51
+ ddconfig:
52
+ double_z: true
53
+ z_channels: 4
54
+ resolution: 256
55
+ in_channels: 3
56
+ out_ch: 3
57
+ ch: 128
58
+ ch_mult:
59
+ - 1
60
+ - 2
61
+ - 4
62
+ - 4
63
+ num_res_blocks: 2
64
+ attn_resolutions: []
65
+ dropout: 0.0
66
+ lossconfig:
67
+ target: torch.nn.Identity
68
+
69
+ cond_stage_config:
70
+ target: ldm.modules.encoders.modules.FrozenCLIPEmbedder
embeddings/Asian-Less-Neg.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22d2f003e76f94dcf891b821a3f447f25c73b2e0542f089427b33ff344070a96
3
+ size 16244
embeddings/BadDream.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:758aac44351557ccfae2fc6bdf3a29670464e4e4eabb61f08c5b8531c221649c
3
+ size 212843
embeddings/CyberRealistic_Negative-neg.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:65f3ea567c04c22f92024c5b55cbeca580bc330c4290aeb647ebd86273b3ffb8
3
+ size 197662
embeddings/EasyNegativeV2.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:339cc9210f70ef842b716588373d95b52351d7e6d111b858e133e3b1e3bd8088
3
+ size 49232
embeddings/FastNegativeEmbedding.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:687b669d8234a418005ca9bfda93464b1721285b0a6a8d92490df0f02124ab7c
3
+ size 160683
embeddings/HyperStylizeV6.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a09539451c9161038c9ac0a322ad8ffafffb097a70874b65e31eb06f0bb2e412
3
+ size 16299
embeddings/Place Textual Inversion embeddings here.txt ADDED
File without changes
embeddings/UnrealisticDream.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a77451e7ea075c7f72d488d2b740b3d3970c671c0ac39dd3155f3c3b129df959
3
+ size 114539
embeddings/bad-artist-anime.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f7bea88750c97a0b8c9ba9f5bc0d13648c3a17a69aaac855903229d5f58c34b
3
+ size 7083
embeddings/bad-artist.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d356134903e8f47bf6cf519bdf577cdcee42fc717ef264498162e94f130843a
3
+ size 7083
embeddings/bad-hands-5.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa7651be154c46a2f4868788ef84a92b3083b0c0c5c46f5012a56698bfd2a1ba
3
+ size 7083
embeddings/bad-image-v2-39000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b9281d7c6adc221b8ea9067b678f4b6ff4cc94735e2d50885070380d5496037
3
+ size 14439
embeddings/bad-picture-chill-75v.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d9cc5f549d7972f24803a3a9880a923fb9a1b68c1443da3ce1ff2f7eff25ae9
3
+ size 231524
embeddings/bad_pictures.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:522ac70ba997df4a911e4977e6a9790e7d15236596e8e0c8318330f2af4ab095
3
+ size 99322
embeddings/bad_prompt.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9dfe1c982e2a1917054fa827ee1f981c6e6102984f981c691e4f8c817e292cb
3
+ size 50091
embeddings/bad_prompt_version2.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f35e7dd816ae04bb3f774a9a17ebfbc50c0e3a53f69a9a40bed05936d3a3812
3
+ size 25515
embeddings/badhandv4.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e40d722fc3d0c2decb62debfaf8058db30ccdae9ab00ff64b183907b435708e
3
+ size 19371
embeddings/charturnerv2.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a91b570185766ff71f242f83d5beb6d658348900edb706a2092ba23d6e1e2cf8
3
+ size 47028
embeddings/easynegative.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c74b4e810b030f6b75fde959e2db678c268d07115b85356d3c0138ba5eb42340
3
+ size 24655
embeddings/epiCNegative.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88b8f468357be0d90b993b6b5b4763b603244089b426f40fddcf96b070002f38
3
+ size 228306
embeddings/epiCRealism.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3719288307e4183d01f3aa7737ce952d15fc9e21da13fa0ecea1be4e8c166b10
3
+ size 173010
embeddings/negative_hand-neg.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73b524a2da121eb1b7ad04dea11da286277813120700ff8f1d8522516f7b30ab
3
+ size 25533
embeddings/ng_deepnegative_v1_75t.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54e7e4826d53949a3d0dde40aea023b1e456a618c608a7630e3999fd38f93245
3
+ size 231339
embeddings/pureerosface_v1.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dedb4322e42e360fe01775ba817be03ac6a6c307744562bb0d6759368bc681da
3
+ size 4011
embeddings/rmadanegative402_sd15-neg.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad488e18aa29f12e8fc18d1d2ccc041ff0052d4657c96f1b06cab880f4ba4f40
3
+ size 231381
embeddings/ulzzang-6500-v1.1.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c1af299c7e8c2283892a7ad61a5fe5574e88c9c2ee77cd0cdfc0615155fa315
3
+ size 10185
embeddings/ulzzang-6500.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66d481a222ee4638e254a411890f2a8716e4ce5c3e1b1957891c7628bbdeac78
3
+ size 10155