akhaliq HF staff commited on
Commit
a1623af
1 Parent(s): ee80d14

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -94,4 +94,6 @@ def inference(img):
94
  ]).convert("RGB")
95
  return final_img
96
 
97
- gr.Interface(inference,gr.inputs.Image(type="filepath"),gr.outputs.Image(type="pil")).launch()
 
 
94
  ]).convert("RGB")
95
  return final_img
96
 
97
+ title="sub_pixel_cnn_2016"
98
+ description="The Super Resolution machine learning model sharpens and upscales the input image to refine the details and improve quality."
99
+ gr.Interface(inference,gr.inputs.Image(type="filepath"),gr.outputs.Image(type="pil"),title=title,description=description).launch()