These are the warnings, they occur on start:
/home/user/stable-diffusion-webui/extensions/sd-webui-stable-horde-worker/scripts/script.py:104: GradioDeprecationWarning: The `style` method is deprecated. Please set these arguments in the constructor instead.
with gr.Row().style(equal_height=False):
/home/user/stable-diffusion-webui/extensions/sd-webui-stable-horde-worker/scripts/script.py:236: GradioDeprecationWarning: The `style` method is deprecated. Please set these arguments in the constructor instead.
).style(grid=4)
/home/user/stable-diffusion-webui/extensions/sd-webui-stable-horde-worker/scripts/script.py:236: GradioDeprecationWarning: The 'grid' parameter will be deprecated. Please use 'columns' in the constructor instead.
).style(grid=4)
* removed expensive sha265 calculations
added original supported models
fixed session key change
* flake and black
* flake ignore on old code which musnt be formatted
* black
* - added a method to set current models based on
remote models available.
- saves the currently selected
models in a config with
their corresponding name.
- added a multi select dropdown to choose from local models.
When selecting, hash gets compared to
remote hash.
- added override model checkpoint to parameters in order
to swap model on the fly
- better state status by adding model and sampler of request
* Added feature model switching in readme
* fixed flake linting
* feat: create custom tab page
* feat: add show image preview config
* fix: tab prefix
* fix: single quotes
* fix: get variable errors
* feat: temp button implementation, not a good one
* feat: add refresh button, fix refresh mechanism
* refactor: migrate models to StableHorde class
* refactor: move settings to self maintained config.json
* fix: specify the tab as worker
* refactor: change layout to highlight status
* feat: add interval config
* feat: add more configurations
* fix: set gallery style to use grid
* fix: add allow postprocessing and remove maintenance
* refactor: move model detection into loop
* refactor: optimise queue lock
* refactor: remove extra self.session init
* feat: Save Images (#25)
* Bugfix type error on submitting payload
* Feature "Save Images"
Saves to horde directory
Added to config UI
Also saves png info (if selected in main config)
* feat: add save image folder configuration
Co-authored-by: Maiko Tan <maiko.tan.coding@gmail.com>
* fix: use state instead of print
* feat: add config default values
* fix: filter load/save methods
* 500 server error, multiple delimiter (#48)
* Getting sometimes 500 errors froom server, but reties upload the image correctly
* Multiple delimiter in prompt, choose the last one in string and continue
* fix: lint error
Co-authored-by: JohnW <john@warnes.email>
Co-authored-by: Bastian Schülke <bas.schuelke@googlemail.com>