Spaces:
Runtime error
Runtime error
File size: 2,661 Bytes
87d40d2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
<!--Copyright 2024 The HuggingFace Team. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
specific language governing permissions and limitations under the License.
-->
# μ‘°κ±΄λΆ μ΄λ―Έμ§ μμ±
[[open-in-colab]]
μ‘°κ±΄λΆ μ΄λ―Έμ§ μμ±μ μ¬μ©νλ©΄ ν
μ€νΈ ν둬ννΈμμ μ΄λ―Έμ§λ₯Ό μμ±ν μ μμ΅λλ€. ν
μ€νΈλ μλ² λ©μΌλ‘ λ³νλλ©°, μλ² λ©μ λ
Έμ΄μ¦μμ μ΄λ―Έμ§λ₯Ό μμ±νλλ‘ λͺ¨λΈμ 쑰건ννλ λ° μ¬μ©λ©λλ€.
[`DiffusionPipeline`]μ μΆλ‘ μ μν΄ μ¬μ νλ ¨λ diffusion μμ€ν
μ μ¬μ©νλ κ°μ₯ μ¬μ΄ λ°©λ²μ
λλ€.
λ¨Όμ [`DiffusionPipeline`]μ μΈμ€ν΄μ€λ₯Ό μμ±νκ³ λ€μ΄λ‘λν νμ΄νλΌμΈ [체ν¬ν¬μΈνΈ](https://huggingface.co/models?library=diffusers&sort=downloads)λ₯Ό μ§μ ν©λλ€.
μ΄ κ°μ΄λμμλ [μ μ¬ Diffusion](https://huggingface.co/CompVis/ldm-text2im-large-256)κ³Ό ν¨κ» ν
μ€νΈ-μ΄λ―Έμ§ μμ±μ [`DiffusionPipeline`]μ μ¬μ©ν©λλ€:
```python
>>> from diffusers import DiffusionPipeline
>>> generator = DiffusionPipeline.from_pretrained("CompVis/ldm-text2im-large-256")
```
[`DiffusionPipeline`]μ λͺ¨λ λͺ¨λΈλ§, ν ν°ν, μ€μΌμ€λ§ κ΅¬μ± μμλ₯Ό λ€μ΄λ‘λνκ³ μΊμν©λλ€.
μ΄ λͺ¨λΈμ μ½ 14μ΅ κ°μ νλΌλ―Έν°λ‘ ꡬμ±λμ΄ μκΈ° λλ¬Έμ GPUμμ μ€νν κ²μ κ°λ ₯ν κΆμ₯ν©λλ€.
PyTorchμμμ λ§μ°¬κ°μ§λ‘ μμ±κΈ° κ°μ²΄λ₯Ό GPUλ‘ μ΄λν μ μμ΅λλ€:
```python
>>> generator.to("cuda")
```
μ΄μ ν
μ€νΈ ν둬ννΈμμ `μμ±κΈ°`λ₯Ό μ¬μ©ν μ μμ΅λλ€:
```python
>>> image = generator("An image of a squirrel in Picasso style").images[0]
```
μΆλ ₯κ°μ κΈ°λ³Έμ μΌλ‘ [`PIL.Image`](https://pillow.readthedocs.io/en/stable/reference/Image.html?highlight=image#the-image-class) κ°μ²΄λ‘ λνλ©λλ€.
νΈμΆνμ¬ μ΄λ―Έμ§λ₯Ό μ μ₯ν μ μμ΅λλ€:
```python
>>> image.save("image_of_squirrel_painting.png")
```
μλ μ€νμ΄μ€λ₯Ό μ¬μ©ν΄λ³΄κ³ μλ΄ λ°°μ¨ λ§€κ°λ³μλ₯Ό μμ λ‘κ² μ‘°μ νμ¬ μ΄λ―Έμ§ νμ§μ μ΄λ€ μν₯μ λ―ΈμΉλμ§ νμΈν΄ 보μΈμ!
<iframe
src="https://stabilityai-stable-diffusion.hf.space"
frameborder="0"
width="850"
height="500"
></iframe> |