Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Save images to jpg #10

Closed
wants to merge 49 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
a964a4c
Added memory management and statistics (bugged)
Aug 24, 2022
878c482
Added crash handling and memory tracking (bugged)
Aug 24, 2022
a60b5a8
Merge branch 'master' into master
ShinkoNet Aug 24, 2022
80ad27a
Bugfix and statistic display
Aug 24, 2022
cd46fb5
Merge branch 'master' of https://github.com/ShinkoNet/stable-diffusio…
Aug 24, 2022
8cd893f
Add stat handling to img2img
Aug 24, 2022
accbdee
Merge branch 'master' into master
ShinkoNet Aug 24, 2022
47d79b2
Revert "Merge branch 'master' into master"
hlky Aug 24, 2022
95423e2
pynvml mem usage
hlky Aug 24, 2022
2ca56e3
Fix img2img stats with new loopback feature
Aug 24, 2022
60c8177
Merge branch 'master' into master
hlky Aug 24, 2022
0ed0dd7
Merge pull request #1 from ShinkoNet/master
hlky Aug 24, 2022
c7b950a
Merge branch 'AUTOMATIC1111:master' into master
hlky Aug 24, 2022
87e2703
loopback fix
hlky Aug 24, 2022
e59b0ef
do_not_save_grid
hlky Aug 24, 2022
10c8560
image_grid
hlky Aug 24, 2022
b2685b0
jpg grid
hlky Aug 24, 2022
741182a
Ready for theme support
hlky Aug 24, 2022
065ad32
local network support
hlky Aug 24, 2022
7b855f7
Better crash display
Aug 24, 2022
ae70eae
Better crash display
Aug 24, 2022
2137bb1
Better crash display
Aug 24, 2022
3401e19
Better crash display
Aug 24, 2022
51cadc2
Merge branch 'master' into master
ShinkoNet Aug 24, 2022
62ea12c
Merge pull request #2 from ShinkoNet/master
hlky Aug 24, 2022
a743e60
Skip grid/skip save + DDIM img2img!!
hlky Aug 24, 2022
0f9c938
jpg quality :100:
hlky Aug 24, 2022
b58c303
added support for words in seeds
Aug 24, 2022
f2f866e
weighted prompts similar to Midjourney
xraxra Aug 24, 2022
56a93f3
Fix skip save individual images and skip grid with loopback
hlky Aug 24, 2022
e460676
Merge branch 'master' into master
hlky Aug 24, 2022
5ae104b
Merge pull request #3 from ShinkoNet/master
hlky Aug 24, 2022
eae4ec8
Merge pull request #4 from xraxra/master
hlky Aug 24, 2022
75a7cad
Revert "Merge pull request #4 from xraxra/master"
hlky Aug 24, 2022
f502897
updated weights code to match latest
xraxra Aug 24, 2022
c861d42
Merge branch 'master' of https://github.com/xraxra/stable-diffusion-w…
xraxra Aug 24, 2022
c099aa8
prompt weighting
xraxra Aug 24, 2022
b00be41
Merge pull request #5 from xraxra/master
hlky Aug 24, 2022
4c8cc9d
sync workflow
hlky Aug 24, 2022
e726be2
fix ? sync workflow
hlky Aug 24, 2022
22e225a
Queue
hlky Aug 24, 2022
8d6c046
Textual inversion support
hlky Aug 24, 2022
9927f7c
img2img-mask
hlky Aug 24, 2022
4b81d08
Merge pull request #9 from hlky/img2img-mask
hlky Aug 24, 2022
e2941dc
relauncher.py sync
hlky Aug 24, 2022
2d87a58
Merge branch 'master' of https://github.com/hlky/stable-diffusion-webui
hlky Aug 24, 2022
a6452fb
Flagging fix
hlky Aug 25, 2022
0afb4ca
Fix crash display
EyeDeck Aug 25, 2022
905786b
Merge pull request #11 from EyeDeck/master
hlky Aug 25, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
hlky/stable-diffusion:
- source: webui.py
dest: scripts/webui.py
- source: relauncher.py
dest: scripts/relauncher.py
16 changes: 16 additions & 0 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Sync Files
on:
push:
branches:
- master
workflow_dispatch:
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@master
- name: Run GitHub File Sync
uses: BetaHuhn/repo-file-sync-action@v1
with:
GH_PAT: ${{ secrets.GH_PAT }}
11 changes: 11 additions & 0 deletions relauncher.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import os, time

n = 0
while True:
print('Relauncher: Launching...')
if n > 0:
print(f'\tRelaunch count: {n}')
os.system("python scripts/webui.py")
print('Relauncher: Process is ending. Relaunching in 0.5s...')
n += 1
time.sleep(0.5)
Loading