suko commited on
Commit
6985dfe
·
1 Parent(s): 2a18958

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -101,5 +101,7 @@ def predict(image):
101
  inputs = gr.inputs.Image(type="pil")
102
  outputs = gr.outputs.JSON()
103
 
104
- runtime=gr.Interface(title="Naked Detector",fn=predict, inputs=inputs, outputs=outputs)
 
 
105
  runtime.launch()
 
101
  inputs = gr.inputs.Image(type="pil")
102
  outputs = gr.outputs.JSON()
103
 
104
+ footer_text="This Model is made by KUO SUKO C110156115 From NKUST"
105
+
106
+ runtime=gr.Interface(title="Naked Detector",fn=predict, inputs=inputs, outputs=outputs,footer=footer_text)
107
  runtime.launch()