My-AI-Projects commited on
Commit
ddc7e76
Β·
verified Β·
1 Parent(s): 289c4e6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -15
app.py CHANGED
@@ -1,23 +1,24 @@
1
  import gradio as gr
2
  from transformers import eBart
 
3
 
4
- # Load the DALL-E Mega model
5
  model = eBart.from_pretrained("dalle-mini/dalle-mega")
6
 
7
- # Define the function to generate images
8
- def generate_image(text):
9
- inputs = model.tokenizer(text, return_tensors="pt")
10
- outputs = model.generate(**inputs)
11
- image_url = model.tokenizer.decode(outputs[0], skip_special_tokens=True)
12
- return image_url
13
 
14
- # Create the Gradio interface
15
- ui = gr.Interface(
16
- fn=generate_image,
17
- inputs="text",
18
- outputs="image",
19
- title="DALL-E Mega Image Generator"
 
20
  )
21
 
22
- # Launch the Gradio app
23
- ui.launch()
 
1
  import gradio as gr
2
  from transformers import eBart
3
+ import torch
4
 
5
+ # Load the eBart model
6
  model = eBart.from_pretrained("dalle-mini/dalle-mega")
7
 
8
+ # Define a function to generate an image from text
9
+ def generate_image(prompt):
10
+ inputs = model.prepare_inputs_for_generation(prompt)
11
+ outputs = model.generate(inputs)
12
+ return outputs # You may need to convert it to a displayable image format depending on the model output
 
13
 
14
+ # Create Gradio interface
15
+ iface = gr.Interface(
16
+ fn=generate_image, # Function that takes a prompt and returns an image
17
+ inputs=gr.inputs.Textbox(lines=2, placeholder="Enter your prompt"), # Textbox input for the prompt
18
+ outputs="image", # Output is an image
19
+ title="eBart DALL-E Mega Image Generator",
20
+ description="Generate images from text prompts using the DALL-E Mega model."
21
  )
22
 
23
+ # Launch the app
24
+ iface.launch()