Spaces:
Runtime error
μ‘°κ±΄λΆ μ΄λ―Έμ§ μμ±
[[open-in-colab]]
μ‘°κ±΄λΆ μ΄λ―Έμ§ μμ±μ μ¬μ©νλ©΄ ν μ€νΈ ν둬ννΈμμ μ΄λ―Έμ§λ₯Ό μμ±ν μ μμ΅λλ€. ν μ€νΈλ μλ² λ©μΌλ‘ λ³νλλ©°, μλ² λ©μ λ Έμ΄μ¦μμ μ΄λ―Έμ§λ₯Ό μμ±νλλ‘ λͺ¨λΈμ 쑰건ννλ λ° μ¬μ©λ©λλ€.
[DiffusionPipeline
]μ μΆλ‘ μ μν΄ μ¬μ νλ ¨λ diffusion μμ€ν
μ μ¬μ©νλ κ°μ₯ μ¬μ΄ λ°©λ²μ
λλ€.
λ¨Όμ [DiffusionPipeline
]μ μΈμ€ν΄μ€λ₯Ό μμ±νκ³ λ€μ΄λ‘λν νμ΄νλΌμΈ 체ν¬ν¬μΈνΈλ₯Ό μ§μ ν©λλ€.
μ΄ κ°μ΄λμμλ μ μ¬ Diffusionκ³Ό ν¨κ» ν
μ€νΈ-μ΄λ―Έμ§ μμ±μ [DiffusionPipeline
]μ μ¬μ©ν©λλ€:
>>> from diffusers import DiffusionPipeline
>>> generator = DiffusionPipeline.from_pretrained("CompVis/ldm-text2im-large-256")
[DiffusionPipeline
]μ λͺ¨λ λͺ¨λΈλ§, ν ν°ν, μ€μΌμ€λ§ κ΅¬μ± μμλ₯Ό λ€μ΄λ‘λνκ³ μΊμν©λλ€.
μ΄ λͺ¨λΈμ μ½ 14μ΅ κ°μ νλΌλ―Έν°λ‘ ꡬμ±λμ΄ μκΈ° λλ¬Έμ GPUμμ μ€νν κ²μ κ°λ ₯ν κΆμ₯ν©λλ€.
PyTorchμμμ λ§μ°¬κ°μ§λ‘ μμ±κΈ° κ°μ²΄λ₯Ό GPUλ‘ μ΄λν μ μμ΅λλ€:
>>> generator.to("cuda")
μ΄μ ν
μ€νΈ ν둬ννΈμμ μμ±κΈ°
λ₯Ό μ¬μ©ν μ μμ΅λλ€:
>>> image = generator("An image of a squirrel in Picasso style").images[0]
μΆλ ₯κ°μ κΈ°λ³Έμ μΌλ‘ PIL.Image
κ°μ²΄λ‘ λνλ©λλ€.
νΈμΆνμ¬ μ΄λ―Έμ§λ₯Ό μ μ₯ν μ μμ΅λλ€:
>>> image.save("image_of_squirrel_painting.png")
μλ μ€νμ΄μ€λ₯Ό μ¬μ©ν΄λ³΄κ³ μλ΄ λ°°μ¨ λ§€κ°λ³μλ₯Ό μμ λ‘κ² μ‘°μ νμ¬ μ΄λ―Έμ§ νμ§μ μ΄λ€ μν₯μ λ―ΈμΉλμ§ νμΈν΄ 보μΈμ!