kritsg commited on
Commit
c33de2b
·
1 Parent(s): b590d13

changed inp

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -90,7 +90,8 @@ def image_mod(image):
90
  if __name__ == "__main__":
91
  # gradio's image inputs look like this: <PIL.Image.Image image mode=RGB size=305x266 at 0x7F3D01C91FA0>
92
  # need to learn how to handle image inputs, or deal with file inputs or just file path strings
93
- inp = gr.inputs.Textbox(lines=1, placeholder="Select an example from below", default="", label="Input Image Path", optional=False)
 
94
  out = 'text'
95
  # out = [gr.outputs.HTML(label="Output GIF"), gr.outputs.Textbox(label="Prediction")]
96
 
 
90
  if __name__ == "__main__":
91
  # gradio's image inputs look like this: <PIL.Image.Image image mode=RGB size=305x266 at 0x7F3D01C91FA0>
92
  # need to learn how to handle image inputs, or deal with file inputs or just file path strings
93
+ # inp = gr.inputs.Textbox(lines=1, placeholder="Select an example from below", default="", label="Input Image Path", optional=False)
94
+ inp = gr.inputs.Image(label="Input Image", type="pil")
95
  out = 'text'
96
  # out = [gr.outputs.HTML(label="Output GIF"), gr.outputs.Textbox(label="Prediction")]
97