-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
[Docs] Fix typos, improve, update at Conceptual Guides page #5585
Conversation
The documentation is not available anymore as the PR was closed or merged. |
cc'ing @stevhliu |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good job, thanks for all the fixes!
@@ -87,7 +87,7 @@ import torch | |||
seed = 0 | |||
generator = torch.manual_seed(seed) | |||
|
|||
images = sd_pipeline(sample_prompts, num_images_per_prompt=1, generator=generator, output_type="numpy").images | |||
images = sd_pipeline(sample_prompts, num_images_per_prompt=1, generator=generator).images |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need to specify the output_type
@sayakpaul or is it ok to just leave it as the default pil
image?
images = sd_pipeline(sample_prompts, num_images_per_prompt=1, generator=generator).images | |
images = sd_pipeline(sample_prompts, num_images_per_prompt=1, generator=generator, output_type="np").images |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here, I thought we show images, so pil
.
Co-authored-by: Steven Liu <[email protected]>
Co-authored-by: Steven Liu <[email protected]>
Co-authored-by: Steven Liu <[email protected]>
Co-authored-by: Steven Liu <[email protected]>
Co-authored-by: Steven Liu <[email protected]>
Co-authored-by: Steven Liu <[email protected]>
Co-authored-by: Steven Liu <[email protected]>
…ace#5585) * Fix typos, improve, update * Update docs/source/en/conceptual/contribution.md Co-authored-by: Steven Liu <[email protected]> * Update docs/source/en/conceptual/contribution.md Co-authored-by: Steven Liu <[email protected]> * Update docs/source/en/conceptual/philosophy.md Co-authored-by: Steven Liu <[email protected]> * Update philosophy.md * Update philosophy.md * Update docs/source/en/conceptual/philosophy.md Co-authored-by: Steven Liu <[email protected]> * Update docs/source/en/using-diffusers/controlling_generation.md Co-authored-by: Steven Liu <[email protected]> * Update docs/source/en/using-diffusers/controlling_generation.md Co-authored-by: Steven Liu <[email protected]> * Remove e.g.; some Grammarly fixes * Update docs/source/en/conceptual/philosophy.md Co-authored-by: Steven Liu <[email protected]> * Update contribution.md --------- Co-authored-by: Steven Liu <[email protected]>
…ace#5585) * Fix typos, improve, update * Update docs/source/en/conceptual/contribution.md Co-authored-by: Steven Liu <[email protected]> * Update docs/source/en/conceptual/contribution.md Co-authored-by: Steven Liu <[email protected]> * Update docs/source/en/conceptual/philosophy.md Co-authored-by: Steven Liu <[email protected]> * Update philosophy.md * Update philosophy.md * Update docs/source/en/conceptual/philosophy.md Co-authored-by: Steven Liu <[email protected]> * Update docs/source/en/using-diffusers/controlling_generation.md Co-authored-by: Steven Liu <[email protected]> * Update docs/source/en/using-diffusers/controlling_generation.md Co-authored-by: Steven Liu <[email protected]> * Remove e.g.; some Grammarly fixes * Update docs/source/en/conceptual/philosophy.md Co-authored-by: Steven Liu <[email protected]> * Update contribution.md --------- Co-authored-by: Steven Liu <[email protected]>
What does this PR do?
Hi! Thank you for this awesome library!
I am new to open source. Firstly, I am reading the documentation. Secondly, I will read the codebase. Thirdly, I plan to make documentation and code contributions.
I would be grateful for your feedback. @stevhliu @yiyixuxu @patrickvonplaten
Before submitting
documentation guidelines, and
here are tips on formatting docstrings.
Who can review?
Anyone in the community is free to review the PR once the tests have passed. Feel free to tag
members/contributors who may be interested in your PR.