Fix typo
This commit is contained in:
parent
b21a463aa9
commit
63b34191b9
|
@ -61,10 +61,10 @@ If you want to use all possible use cases in a single `DiffusionPipeline` we rec
|
||||||
... AltDiffusionImg2ImgPipeline,
|
... AltDiffusionImg2ImgPipeline,
|
||||||
... )
|
... )
|
||||||
|
|
||||||
>>> img2text = AltDiffusionPipeline.from_pretrained("BAAI/AltDiffusion")
|
>>> text2img = AltDiffusionPipeline.from_pretrained("BAAI/AltDiffusion")
|
||||||
>>> img2img = AltDiffusionImg2ImgPipeline(**img2text.components)
|
>>> img2img = AltDiffusionImg2ImgPipeline(**text2img.components)
|
||||||
|
|
||||||
>>> # now you can use img2text(...) and img2img(...) just like the call methods of each respective pipeline
|
>>> # now you can use text2img(...) and img2img(...) just like the call methods of each respective pipeline
|
||||||
```
|
```
|
||||||
|
|
||||||
## AltDiffusionPipelineOutput
|
## AltDiffusionPipelineOutput
|
||||||
|
|
|
@ -61,11 +61,11 @@ If you want to use all possible use cases in a single `DiffusionPipeline` you ca
|
||||||
... StableDiffusionInpaintPipeline,
|
... StableDiffusionInpaintPipeline,
|
||||||
... )
|
... )
|
||||||
|
|
||||||
>>> img2text = StableDiffusionPipeline.from_pretrained("CompVis/stable-diffusion-v1-4")
|
>>> text2img = StableDiffusionPipeline.from_pretrained("CompVis/stable-diffusion-v1-4")
|
||||||
>>> img2img = StableDiffusionImg2ImgPipeline(**img2text.components)
|
>>> img2img = StableDiffusionImg2ImgPipeline(**text2img.components)
|
||||||
>>> inpaint = StableDiffusionInpaintPipeline(**img2text.components)
|
>>> inpaint = StableDiffusionInpaintPipeline(**text2img.components)
|
||||||
|
|
||||||
>>> # now you can use img2text(...), img2img(...), inpaint(...) just like the call methods of each respective pipeline
|
>>> # now you can use text2img(...), img2img(...), inpaint(...) just like the call methods of each respective pipeline
|
||||||
```
|
```
|
||||||
|
|
||||||
## StableDiffusionPipelineOutput
|
## StableDiffusionPipelineOutput
|
||||||
|
|
|
@ -680,9 +680,9 @@ class DiffusionPipeline(ConfigMixin):
|
||||||
... StableDiffusionInpaintPipeline,
|
... StableDiffusionInpaintPipeline,
|
||||||
... )
|
... )
|
||||||
|
|
||||||
>>> img2text = StableDiffusionPipeline.from_pretrained("runwayml/stable-diffusion-v1-5")
|
>>> text2img = StableDiffusionPipeline.from_pretrained("runwayml/stable-diffusion-v1-5")
|
||||||
>>> img2img = StableDiffusionImg2ImgPipeline(**img2text.components)
|
>>> img2img = StableDiffusionImg2ImgPipeline(**text2img.components)
|
||||||
>>> inpaint = StableDiffusionInpaintPipeline(**img2text.components)
|
>>> inpaint = StableDiffusionInpaintPipeline(**text2img.components)
|
||||||
```
|
```
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
|
|
Loading…
Reference in New Issue