ysharma HF staff commited on
Commit
c0915d4
·
1 Parent(s): a3c15d4
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -18,21 +18,21 @@ def engine(text_input):
18
  #outputs=[gr.outputs.Image(type="pil", label="output image"),gr.outputs.Carousel(label="Individual images",components=["image"]),gr.outputs.Textbox(label="Error")], )
19
  #title="Convert text to image")
20
  #img = img_intfc[0]
21
- (img, carou, error) = img_intfc('George','50','256','256','1',10)
22
- tuple_return = (img, carou, error)
23
  #img = img[0]
24
  #inputs=['George',50,256,256,1,10]
25
  #run(prompt, steps, width, height, images, scale)
26
 
27
  #speech = text2speech(text_input)
28
- return tuple_return[0] #entities, speech, img
29
 
30
  app = gr.Interface(fn=engine,
31
  inputs=gr.inputs.Textbox(lines=5, label="Input Text"),
32
  #live=True,
33
  description="Takes a text as input and reads it out to you.",
34
- outputs=[#gr.outputs.Textbox(type="auto", label="Text"),gr.outputs.Audio(type="file", label="Speech Answer"),
35
- gr.outputs.Image(type="pil", label="output image")], #, gr.outputs.Carousel(label="Individual images",components=["image"]), gr.outputs.Textbox(label="Error")],
36
  examples = ['Apple']
37
  #examples=["On April 17th Sunday George celebrated Easter. He is staying at Empire State building with his parents. He is a citizen of Canada and speaks English and French fluently. His role model is former president Obama. He got 1000 dollar from his mother to visit Disney World and to buy new iPhone mobile. George likes watching Game of Thrones."]
38
  ).launch(debug=True) #(enable_queue=True)
 
18
  #outputs=[gr.outputs.Image(type="pil", label="output image"),gr.outputs.Carousel(label="Individual images",components=["image"]),gr.outputs.Textbox(label="Error")], )
19
  #title="Convert text to image")
20
  #img = img_intfc[0]
21
+ img = img_intfc('George','50','256','256','1',10)
22
+
23
  #img = img[0]
24
  #inputs=['George',50,256,256,1,10]
25
  #run(prompt, steps, width, height, images, scale)
26
 
27
  #speech = text2speech(text_input)
28
+ return img[0] #entities, speech, img
29
 
30
  app = gr.Interface(fn=engine,
31
  inputs=gr.inputs.Textbox(lines=5, label="Input Text"),
32
  #live=True,
33
  description="Takes a text as input and reads it out to you.",
34
+ #outputs=[#gr.outputs.Textbox(type="auto", label="Text"),gr.outputs.Audio(type="file", label="Speech Answer"),
35
+ outputs= gr.outputs.Image(type="pil", label="output image"), #, gr.outputs.Carousel(label="Individual images",components=["image"]), gr.outputs.Textbox(label="Error")],
36
  examples = ['Apple']
37
  #examples=["On April 17th Sunday George celebrated Easter. He is staying at Empire State building with his parents. He is a citizen of Canada and speaks English and French fluently. His role model is former president Obama. He got 1000 dollar from his mother to visit Disney World and to buy new iPhone mobile. George likes watching Game of Thrones."]
38
  ).launch(debug=True) #(enable_queue=True)