Commit Graph

479 Commits

Author SHA1 Message Date
Thomas Mello
606aea2866
chore: update maintenance scripts and docs (#891)
* automate conda_env_name as per name in yaml

* Embed installation links directly in README.md

Include links to Windows, Linux, and Google Colab installations.

* Fix conda update in webui.sh for pip bug

* Add info about new PRs

Co-authored-by: Hafiidz <3688500+Hafiidz@users.noreply.github.com>
Co-authored-by: Tom Pham <54967380+TomPham97@users.noreply.github.com>
Co-authored-by: GRMrGecko <grmrgecko@gmail.com>
2022-09-09 13:09:13 +03:00
ZeroCool
3781f97b0f
Merge pull request #885 from TinyBeeman/outputStats
Output stats
2022-09-09 01:51:51 -07:00
Tony Beeman
7d987cc922 Add info and stats to img2img 2022-09-09 01:33:28 -07:00
Tony Beeman
28d8827331 Display Info and Stats when render is complete, similar to what Gradio shows. 2022-09-09 01:33:28 -07:00
ZeroCool
2be3c2ad37
Merge pull request #881 from TinyBeeman/streamdev
Fixed the user config path in webui_streamlit.py
2022-09-09 01:08:20 -07:00
Tony Beeman
771a68e3e5 Fixed the path in webui_streamlit.py 2022-09-09 01:03:34 -07:00
ZeroCool
775942b5c6
Merge pull request #876 from TinyBeeman/streamdev
Streamlit: Fix loading of YAML defaults and allow user defaults to be specified in a userconfig_stream…
2022-09-09 01:02:50 -07:00
Tony Beeman
4171882007 Move location of user file to configs/webui folder 2022-09-09 00:44:35 -07:00
Tony Beeman
ca8ee265cd Made sure img2txt and img2img checkboxes respect YAML defaults 2022-09-08 23:50:33 -07:00
Tony Beeman
5ea27f3d0c Streamlit: Allow user defaults to be specified in a userconfig_streamlit.yaml file. 2022-09-08 22:58:25 -07:00
Joshua Kimsey
3d953ad156 Fixed missing diffusers dependency for Streamlit 2022-09-08 23:01:30 +01:00
hlky
5a10bdbd47
proposed streamlit code organization changes
I want people of all skill levels to be able to contribute
This is one way the code could be split up with the aim of making it easy to understand and contribute especially for people on the lower end of the skill spectrum
All i've done is split things, I think renaming and reorganising is still needed
2022-09-08 17:57:38 +01:00
Hafiidz
d957d6ca1d update readme as per installation step & format 2022-09-08 18:32:35 +03:00
ZeroCool
c668ef930b
Merge pull request #828 from ZeroCool940711/dev
Added "num_inference_steps" to config file and fixed some small bugs.
2022-09-08 05:52:38 -07:00
ZeroCool
3336bfce20
Merge branch 'sd-webui:dev' into dev 2022-09-08 05:51:41 -07:00
ZeroCool940711
e6027fe306 Added num_inference_steps to config file and fixed incorrectly calls to the config file from the txt2vid tab calling txt2img instead. 2022-09-08 05:51:22 -07:00
Thomas Mello
ffb2d7ae9c
fix: advanced editor (#827), close #811
refactor js_Call hook to take all gradio arguments
2022-09-08 15:43:08 +03:00
ZeroCool
648dc020a8
Merge pull request #826 from ZeroCool940711/dev
Added option to support custom models and implemented basic Text To Video tab.
2022-09-08 05:38:33 -07:00
ZeroCool940711
afaff01253 Merge remote-tracking branch 'origin/dev' into dev 2022-09-08 05:34:20 -07:00
ZeroCool940711
ed84e1f1d8 - Added option to select custom models instead of just using the default one, if you want to use a custom model just place your .ckpt file in "models/custom" and the UI will detect it and let you switch between stable diffusion and your custom model, make sure to give the filename a proper name that is easy to distinguish from other models because that name will be used on the UI.
- Implemented basic Text To Video tab, will continue to improve it as it is really basic right now.
- Improved the model loading, you now should see less frequently errors about it not been loaded correctly.
2022-09-08 05:33:45 -07:00
Thomas Mello
67b6196b1e
Merge branch 'master' into dev 2022-09-08 13:28:50 +03:00
Thomas Mello
a8e15c85f3 resolve conflict with master 2022-09-08 13:27:21 +03:00
ZeroCool
a796db7748
Merge pull request #813 from Hafiidz/css
(Streamlit) Feature: separate css to external file
2022-09-07 19:27:55 -07:00
ZeroCool
32a9999441
Merge pull request #814 from ZeroCool940711/dev
Added "git pull" and "git stash" to the cmd scripts so the repo is checked on each launch for updates.
2022-09-07 19:25:15 -07:00
ZeroCool940711
70e4fa1c47 Added "git pull" and "git stash" to the commands run by the cmd scripts when launching the UI, this should make it so people who use it can automatically update the code from the repo and be up to date without manually using those commands everytime. 2022-09-07 19:21:34 -07:00
Hafiidz
0e30d4fdd9 separate css to external file 2022-09-08 10:10:03 +08:00
ZeroCool
53f4fa96af
Merge pull request #804 from ZeroCool940711/dev
Added try and except block for basic error handling.
2022-09-07 18:06:30 -07:00
ZeroCool940711
f39a6b726b Merge remote-tracking branch 'origin/dev' into dev 2022-09-07 18:03:52 -07:00
ZeroCool940711
c0e02742e3 Added try and except block to handle basic errors like StopException which is raised by streamlit when you hit the stop button and KeyError which happens also when stopping the generation because it tries to check the model at the end which is not loaded at that time, this can be ignored and so thats the reason for the exception. 2022-09-07 18:03:39 -07:00
ZeroCool
f8f31df899
Merge pull request #799 from ZeroCool940711/dev
Added option to set default sampler name from config file.
2022-09-07 16:59:28 -07:00
ZeroCool940711
1d4351ce91 Added option to set default sampler name from config file, will be useful for those wanting to change the default sampler and have it persist even when closing the UI and opening it again. 2022-09-07 16:58:19 -07:00
Thomas Mello
688cb0d038
update README with correct URLs (#786)
Co-Authored-By: Hafiidz <3688500+Hafiidz@users.noreply.github.com>
2022-09-07 23:28:17 +03:00
hlky
490bbbc103
Img2img dev (#736)
* #715 #699 #698 #663 #625 #617 #611 #604 (#716)

* Update README.md

* Add sampler name to metadata (#695)

Co-authored-by: EliEron <example@example.com>

* old-dev-merge

Co-authored-by: EliEron <subanimehd@gmail.com>
Co-authored-by: EliEron <example@example.com>

* img2img-fix (#717)

* Revert "img2img-fix (#717)"

This reverts commit 70d4b1ca2a.

* img2img fixes

* Revert "img2img fixes"

This reverts commit e66eddc621.

* Revert "Revert "img2img-fix (#717)""

This reverts commit bf08b617d4.

* img2img fixed

* feat: bring back Crop mode, formatting

Co-authored-by: EliEron <subanimehd@gmail.com>
Co-authored-by: EliEron <example@example.com>
Co-authored-by: Thomas Mello <work.mello@gmail.com>
2022-09-07 20:19:00 +01:00
Thomas Mello
a81671d673
fix: stack overflow during recursion call (#784) 2022-09-07 22:14:46 +03:00
Hafiidz
9853da3682
Update Readme links to sd-webui when appropriate (#781)
* Update link to sd-webui when appropriate

* added LDSR instruction per devilismyfriend guide
2022-09-07 21:33:07 +03:00
Thomas Mello
3da598a522
Merge pull request #775 from codedealer/dev
fix: regex escape characters in streamlit webui
2022-09-07 18:28:36 +03:00
Thomas Mello
388a765162 fix: regex escape characters 2022-09-07 18:05:16 +03:00
ZeroCool
1231fab8a4
Merge pull request #752 from Hafiidz/convertRGB
Added auto conversion for 4 channel PNG to RGB
2022-09-06 23:36:57 -07:00
Hafiidz
432ebdad29 added auto conversion for 4 channel PNG to RGB 2022-09-07 14:29:49 +08:00
ZeroCool
00d36bfabb
Merge pull request #749 from Hafiidz/placeholder
Added placeholder text to input field similar to gradio UI.
2022-09-06 22:49:08 -07:00
Hafiidz
03a3c149ba added placeholder text similar to gradio 2022-09-07 13:32:23 +08:00
ZeroCool
20119edbda
Merge pull request #747 from Hafiidz/dev
add gfpgan folder to gitignore, auto gen by imglab
2022-09-06 22:24:06 -07:00
Hafiidz
4ec0990de5 add gfpgan folder to gitignore, auto gen by imglab 2022-09-07 13:15:59 +08:00
ZeroCool
d15eb0495e
Merge pull request #746 from ZeroCool940711/dev
Removed some unnecessary lines from the the webui_streamlit.cmd file.
2022-09-06 22:11:51 -07:00
ZeroCool
59497e17a6
Merge branch 'sd-webui:dev' into dev 2022-09-06 22:11:06 -07:00
ZeroCool940711
234f27bd49 Merge remote-tracking branch 'origin/dev' into dev 2022-09-06 22:10:42 -07:00
ZeroCool940711
40faf5cee3 Removed some unnecessary lines from the the webui_streamlit.cmd file. 2022-09-06 22:10:36 -07:00
ZeroCool
ac38e4df73
Merge pull request #745 from ZeroCool940711/dev
Removed duplicated entry for streamlit on the environment.yaml file.
2022-09-06 22:09:51 -07:00
ZeroCool
ca11f39f73
Merge branch 'sd-webui:dev' into dev 2022-09-06 22:09:21 -07:00
ZeroCool940711
ab6602791a Removed duplicated entry for streamlit on the environment.yaml file. 2022-09-06 22:08:51 -07:00