Skip to content

Instantly share code, notes, and snippets.

@isozu
Created August 30, 2022 05:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isozu/c3dde912cdfff1b6b7de39303e390633 to your computer and use it in GitHub Desktop.
Save isozu/c3dde912cdfff1b6b7de39303e390633 to your computer and use it in GitHub Desktop.
#@title Text to image
prompt = "Lots of people are watching the sunset by the beach." #@param {type:"string"}
image = pipe(prompt)["sample"][0]
filename= prompt.replace(' ','_')+".png"
image.save(filename)
from IPython.display import Image,display
display(Image(filename))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment