rajeshmelur commited on
Commit
0e5518c
·
verified ·
1 Parent(s): 36512e0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -3,7 +3,7 @@ import gradio as gr
3
  model_id = "CompVis/ldm-text2im-large-256"
4
  ldm = DiffusionPipeline.from_pretrained(model_id)
5
  def generate_image(Prompt):
6
- images = ldm([Prompt], num_inference_steps=50, eta=.3, guidance_scale=6)
7
- return images.images[0]
8
- interface = gr.Interface(fn = generate_image,inputs = "text",outputs = "image",title = "Mashdemy Demo Image Generator App", description = "Type in a text and click submit to generate an image:", examples = ["a clown reading a book", "a cat using a laptop", "An elephant on grass"])
9
  interface.launch(share = True)
 
3
  model_id = "CompVis/ldm-text2im-large-256"
4
  ldm = DiffusionPipeline.from_pretrained(model_id)
5
  def generate_image(Prompt):
6
+ images = ldm([Prompt], num_inference_steps=50, eta=.3, guidance_scale=6)
7
+ return images.images[0]
8
+ interface = gr.Interface(fn = generate_image,cache_examples=False,inputs = "text",outputs = "image",title = "Mashdemy Demo Image Generator App", description = "Type in a text and click submit to generate an image:", examples = ["a clown reading a book", "a cat using a laptop", "An elephant on grass"])
9
  interface.launch(share = True)