remove share for spaces
Browse files- app.py +1 -1
- requirements.txt +1 -2
app.py
CHANGED
@@ -12,4 +12,4 @@ def predict(img):
|
|
12 |
return {labels[i]: float(probs[i]) for i in range(len(labels))}
|
13 |
|
14 |
gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(512, 512)),
|
15 |
-
outputs=gr.outputs.Label(num_top_classes=3)).launch(
|
|
|
12 |
return {labels[i]: float(probs[i]) for i in range(len(labels))}
|
13 |
|
14 |
gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(512, 512)),
|
15 |
+
outputs=gr.outputs.Label(num_top_classes=3)).launch()
|
requirements.txt
CHANGED
@@ -1,2 +1 @@
|
|
1 |
-
fastai
|
2 |
-
scikit-image
|
|
|
1 |
+
fastai
|
|