Spaces:
Runtime error
Runtime error
Commit
·
fdd0c18
1
Parent(s):
97ef017
Update app.py
Browse files
app.py
CHANGED
@@ -43,13 +43,4 @@ inputs = [gr.inputs.Number(label="number of images"), gr.inputs.Radio(['fmnist',
|
|
43 |
outputs = gr.outputs.Image(label="Output Image")
|
44 |
|
45 |
|
46 |
-
|
47 |
-
fn = inference,
|
48 |
-
inputs = inputs,
|
49 |
-
outputs = outputs,
|
50 |
-
description = description,
|
51 |
-
title = title,
|
52 |
-
article = article
|
53 |
-
)
|
54 |
-
|
55 |
-
interface.launch(share=True)
|
|
|
43 |
outputs = gr.outputs.Image(label="Output Image")
|
44 |
|
45 |
|
46 |
+
gr.Interface(inference, inputs, outputs, analytics_enabled=False).launch(share=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|