Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from diffusers import DiffusionPipeline
|
2 |
+
import gradio as gr
|
3 |
+
model_id = "CompVis/ldm-text2im-large-256"
|
4 |
+
ldm = DiffusionPipeline.from_pretrained(model_id)
|
5 |
+
|
6 |
+
def generate_image(Prompt):
|
7 |
+
images = ldm([Prompt], num_inference_steps=50, eta=.3, guidance_scale=6)
|
8 |
+
return images.images[0]
|
9 |
+
|
10 |
+
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"])
|
11 |
+
interface.launch(share = True)
|