뒤로
이정민
이정민 ·

[예고편] 이미지 생성 모델, 그게 뭐냐? 🤔

diffusion.gif

made by 스모어톡

AI가 이미지를 생성한다고 합니다.

아바타도, 상품 이미지도, 패션 모델 사진도 만들 수도 있대요.
그런데 AI가 이미지를 생성하는 방식은 알고 계신가요?

앞으로 스모어톡이 설명해드리겠습니다. Coming Soon 🚀

이정민(스모어톡, tonylee@smoretalk.io)

p.s. GIF 만드는 방법

import matplotlib.pyplot as plt
import matplotlib.animation as animation

timesteps = 50

fig = plt.figure()
ims = []

for i in range(timesteps):
    im = plt.imshow(image_list[i]) #image_list: list of images from step 1 to 50
    ims.append([im])

animate = animation.ArtistAnimation(fig, ims, interval=400000, blit=True, repeat_delay=10000)
animate.save('diffusion.gif', fps=12)
plt.show()
플라멜 Flamel v0.1

프롬프트 엔지니어링이 필요 없는 가장 쉬운 검색형 이미지 생성 서비스

9

댓글

로그인 후 댓글을 남길 수 있습니다.

아직 댓글이 없습니다.