ysharma HF staff commited on
Commit
b5d493c
·
1 Parent(s): 95ad9c9
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -115,7 +115,7 @@ def run(prompt, steps, width, height, images, scale):
115
  H=int(height),
116
  n_samples=int(images),
117
  scale=scale,
118
- plms=True
119
  )
120
 
121
  if opt.plms:
@@ -220,8 +220,7 @@ 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="file", 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
 
 
115
  H=int(height),
116
  n_samples=int(images),
117
  scale=scale,
118
+ plms=False
119
  )
120
 
121
  if opt.plms:
 
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