ysharma HF staff commited on
Commit
1a81f89
·
1 Parent(s): b5d493c
Files changed (1) hide show
  1. app.py +9 -8
app.py CHANGED
@@ -196,13 +196,13 @@ def text2speech(text):
196
  return fastspeech(text)
197
 
198
  def engine(text_input):
199
- ner = gr.Interface.load("huggingface/flair/ner-english-ontonotes-large")
200
- entities = ner(text_input)
 
 
201
 
202
- entities = [tupl for tupl in entities if None not in tupl]
203
- entities_num = len(entities)
204
 
205
- img = run(entities[0][0],'50','256','256','1',10)
206
  #img_intfc = gr.Interface.load("spaces/multimodalart/latentdiffusion")
207
  #img_intfc = gr.Interface.load("spaces/multimodalart/latentdiffusion", inputs=[gr.inputs.Textbox(lines=1, label="Input Text"), gr.inputs.Textbox(lines=1, label="Input Text"), gr.inputs.Textbox(lines=1, label="Input Text"), gr.inputs.Textbox(lines=1, label="Input Text"), gr.inputs.Textbox(lines=1, label="Input Text"), gr.inputs.Textbox(lines=1, label="Input Text")],
208
  #outputs=[gr.outputs.Image(type="pil", label="output image"),gr.outputs.Carousel(label="Individual images",components=["image"]),gr.outputs.Textbox(label="Error")], )
@@ -213,14 +213,15 @@ def engine(text_input):
213
  #inputs=['George',50,256,256,1,10]
214
  #run(prompt, steps, width, height, images, scale)
215
 
216
- speech = text2speech(text_input)
217
- return entities, speech, img
218
 
219
  app = gr.Interface(fn=engine,
220
  inputs=gr.inputs.Textbox(lines=5, label="Input Text"),
221
  #live=True,
222
  description="Takes a text as input and reads it out to you.",
223
- outputs=[gr.outputs.Textbox(type="auto", label="Text"),gr.outputs.Audio(type="file", label="Speech Answer"), gr.outputs.Image(type="auto", label="output image")],
 
224
  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."]
225
  ).launch(debug=True)
226
 
 
196
  return fastspeech(text)
197
 
198
  def engine(text_input):
199
+ #ner = gr.Interface.load("huggingface/flair/ner-english-ontonotes-large")
200
+ #entities = ner(text_input)
201
+ #entities = [tupl for tupl in entities if None not in tupl]
202
+ #entities_num = len(entities)
203
 
204
+ img = run(text_input,'50','256','256','1',10) #entities[0][0]
 
205
 
 
206
  #img_intfc = gr.Interface.load("spaces/multimodalart/latentdiffusion")
207
  #img_intfc = gr.Interface.load("spaces/multimodalart/latentdiffusion", inputs=[gr.inputs.Textbox(lines=1, label="Input Text"), gr.inputs.Textbox(lines=1, label="Input Text"), gr.inputs.Textbox(lines=1, label="Input Text"), gr.inputs.Textbox(lines=1, label="Input Text"), gr.inputs.Textbox(lines=1, label="Input Text"), gr.inputs.Textbox(lines=1, label="Input Text")],
208
  #outputs=[gr.outputs.Image(type="pil", label="output image"),gr.outputs.Carousel(label="Individual images",components=["image"]),gr.outputs.Textbox(label="Error")], )
 
213
  #inputs=['George',50,256,256,1,10]
214
  #run(prompt, steps, width, height, images, scale)
215
 
216
+ #speech = text2speech(text_input)
217
+ return img #entities, speech, img
218
 
219
  app = gr.Interface(fn=engine,
220
  inputs=gr.inputs.Textbox(lines=5, label="Input Text"),
221
  #live=True,
222
  description="Takes a text as input and reads it out to you.",
223
+ outputs=[#gr.outputs.Textbox(type="auto", label="Text"),gr.outputs.Audio(type="file", label="Speech Answer"),
224
+ gr.outputs.Image(type="auto", label="output image"),],
225
  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."]
226
  ).launch(debug=True)
227