Update app.py
Browse files
app.py
CHANGED
|
@@ -55,10 +55,8 @@ def process_images(params):
|
|
| 55 |
|
| 56 |
return json.dumps({"solutions": solutions}, indent=4)
|
| 57 |
|
| 58 |
-
|
| 59 |
inputt = gr.Textbox(label="Parameters (JSON format) Eg. img_url:['',''], api:'', job_id:'' ")
|
| 60 |
outputs = gr.JSON()
|
| 61 |
|
| 62 |
application = gr.Interface(fn=process_images, inputs=inputt, outputs=outputs, title="Covid +ve -ve Classification with API Integration")
|
| 63 |
-
application.launch()
|
| 64 |
-
|
|
|
|
| 55 |
|
| 56 |
return json.dumps({"solutions": solutions}, indent=4)
|
| 57 |
|
|
|
|
| 58 |
inputt = gr.Textbox(label="Parameters (JSON format) Eg. img_url:['',''], api:'', job_id:'' ")
|
| 59 |
outputs = gr.JSON()
|
| 60 |
|
| 61 |
application = gr.Interface(fn=process_images, inputs=inputt, outputs=outputs, title="Covid +ve -ve Classification with API Integration")
|
| 62 |
+
application.launch()
|
|
|