-
Notifications
You must be signed in to change notification settings - Fork 26
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
feat: add num_inference_steps to I2I, I2V and Upscaling pipelines #123
Merged
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
added variable num_inference_steps and added the same variable in pipeline function calling with default value of 50
added property for image to image of number of inference steps.
This commit adds the `num_inference_steps` parameter to the upscale pipeline.
This commit ensures that the `strength` is set correctly when the sdxl-turbo model is used and cleans up the `num_inference_steps` implementation.
This commit improves the I2V `num_inference_steps` defaults and code.
This commit improves the implementation and defaults for the num_inference_steps parameter.
This commit adds the `num_inference_steps` to the I2I, I2V and Upscale pipelines in the worker codebase.
rickstaa
force-pushed
the
JJassonn69/main_2
branch
from
July 17, 2024 11:22
5c5b198
to
5bfac07
Compare
eliteprox
pushed a commit
to eliteprox/ai-worker
that referenced
this pull request
Jul 26, 2024
…vepeer#123) * Update image_to_image.py added variable num_inference_steps and added the same variable in pipeline function calling with default value of 50 * Update openapi.json added property for image to image of number of inference steps. * Update for num_inference_steps * Update image_to_video.py * Update image_to_image.py * Update image_to_video.py * Update openapi.json * Update image_to_video.py * Update image_to_image.py * Update image_to_video.py * Update openapi.json * feat: add `num_inference_steps` to upscale pipeline This commit adds the `num_inference_steps` parameter to the upscale pipeline. * feat: improve I2I pipeline num_inference_steps behavoir This commit ensures that the `strength` is set correctly when the sdxl-turbo model is used and cleans up the `num_inference_steps` implementation. * feat: improve I2V num_inference_steps behavoir This commit improves the I2V `num_inference_steps` defaults and code. * feat: improve T2I num_inference_steps behavoir This commit improves the implementation and defaults for the num_inference_steps parameter. * feat(worker): add num_inference_steps to I2I, I2V and Upscale pipelines This commit adds the `num_inference_steps` to the I2I, I2V and Upscale pipelines in the worker codebase. --------- Co-authored-by: Jason <83615043+JJassonn69@users.noreply.github.com> Co-authored-by: Jason Stone <custom@livepeerservice.world>
eliteprox
pushed a commit
to eliteprox/ai-worker
that referenced
this pull request
Jul 26, 2024
…vepeer#123) * Update image_to_image.py added variable num_inference_steps and added the same variable in pipeline function calling with default value of 50 * Update openapi.json added property for image to image of number of inference steps. * Update for num_inference_steps * Update image_to_video.py * Update image_to_image.py * Update image_to_video.py * Update openapi.json * Update image_to_video.py * Update image_to_image.py * Update image_to_video.py * Update openapi.json * feat: add `num_inference_steps` to upscale pipeline This commit adds the `num_inference_steps` parameter to the upscale pipeline. * feat: improve I2I pipeline num_inference_steps behavoir This commit ensures that the `strength` is set correctly when the sdxl-turbo model is used and cleans up the `num_inference_steps` implementation. * feat: improve I2V num_inference_steps behavoir This commit improves the I2V `num_inference_steps` defaults and code. * feat: improve T2I num_inference_steps behavoir This commit improves the implementation and defaults for the num_inference_steps parameter. * feat(worker): add num_inference_steps to I2I, I2V and Upscale pipelines This commit adds the `num_inference_steps` to the I2I, I2V and Upscale pipelines in the worker codebase. --------- Co-authored-by: Jason <83615043+JJassonn69@users.noreply.github.com> Co-authored-by: Jason Stone <custom@livepeerservice.world>
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.
This pull request adds the
num_inference_steps
parameter to the I2I, I2V and Upscaling pipelines. It replaces #110 because I could not push to the feature branch created by @JJassonn69.