-
-
Notifications
You must be signed in to change notification settings - Fork 880
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
The Merge #1444
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Description Intermediate image saving in scn2img tries to save metadata which is not set. This results in warning thrown in console: "Couldn't find metadata on image", originally reported by @codedealer in #1179 (review) Metadata for intermediate images is added to fix the warning. Following metadata is written: - "prompt" contains the representation of the SceneObject corresponding to the intermediate image - "seed" contains the seed at the start of the function that generated this intermediate image - "width" and "height" contain the size of the image. To get the seed at the start of the render function without using it, a class SeedGenerator is added and used instead of the python generator functions. Fixes warning thrown in console: "> Couldn't find metadata on image", originally reported by @codedealer in #1179 (review) # Checklist: - [x] I have changed the base branch to `dev` - [x] I have performed a self-review of my own code - [x] I have commented my code in hard-to-understand areas - [x] I have made corresponding changes to the documentation
…a text_input instead of a slider.
- Removed the checkbox to disable the preview image, instead users should increase the frequency at which it is displayed if they have performance issues, after a certain point it no longer affects performance.
…ed version of it.
# Description Add section for Scene2Image in markdown documentation. # Checklist: - [x] I have changed the base branch to `dev` - [x] I have performed a self-review of my own code - [x] I have commented my code in hard-to-understand areas - [x] I have made corresponding changes to the documentation Co-authored-by: hlky <[email protected]>
# Description Add GFPGANv1.4 to the docker download list Closes: none # Checklist: - [x] I have changed the base branch to `dev` - [x] I have performed a self-review of my own code - [x] I have commented my code in hard-to-understand areas - [x] I have made corresponding changes to the documentation
- Removed slider values for batch_count and batch_size as they are now a text_input instead of a slider. - Removed the checkbox to disable the preview image, instead users should increase the frequency at which it is displayed if they have performance issues, after a certain point it no longer affects performance. - Removed GFPGAN GitHub dependency, we can now use pip to install a fixed version of it. - Fixed LDSR, now it should work both txt2img and img2img
…ng a rerun in the background on first run which changes the first session_state initialization, this causes it to be empty until the second run.
- Fixed missing keys on first run, it seems related to server_state doing a rerun in the background on first run which changes the first session_state initialization, this causes it to be empty until the second run.
The bridge will keep looping on the same generation because the evaluation of "while not seed" will always be False when seed is 0 (or 00000000 etc) This fixes this. Also allows to request more verbosity on the webui command Co-authored-by: hlky <[email protected]> Co-authored-by: lukas5450 <[email protected]>
…e as it might be causing some issues.
Changed hydralit and hydralit components order on the environment file as it might be causing some issues.
…This allow us to have them as global variables inside streamlit and have them unified in a single place.
…1413) So that people can start it from the file browser/explorer
// is not a comment
weird bug with wget for some urls because it can't detect the filename, even though we provide a filename
Allows worker to specify a word blacklist which it will refuse to pickup Allows the worker to specify a word censorlist, against which it will always apply the NSFW filter, even if the worker accepts NSFW. Co-authored-by: hlky <[email protected]> Co-authored-by: lukas5450 <[email protected]> Co-authored-by: JamDon2 <[email protected]>
-Changes wording on Memory Monitor to not alarm users (happened a few times) -Adds config settings "use_upscaling" and "upscaling_method" to settings menu, were already in yaml
…cked once so in order to see new models you would need to restart streamlit.
…case we have more than one, this allow us to compare multiple versions to see how they perform against each other.
…cked once so in order to see new models you would need to restart streamlit.
…case we have more than one, this allow us to compare multiple versions to see how they perform against each other.
… more flexible than a slider.
… more flexible than a slider.
… more flexible than a slider.
# Conflicts: # scripts/txt2img.py
1 task
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The Merge