Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- app.py +1 -1
- requirements.txt +2 -1
app.py
CHANGED
@@ -57,6 +57,6 @@ def predict(img):
|
|
57 |
|
58 |
demo = gr.Interface(fn=predict, inputs="image", outputs="text" , examples=[["brain01.jpg"],["brain02.jpg"]],)
|
59 |
|
60 |
-
demo.launch(
|
61 |
|
62 |
|
|
|
57 |
|
58 |
demo = gr.Interface(fn=predict, inputs="image", outputs="text" , examples=[["brain01.jpg"],["brain02.jpg"]],)
|
59 |
|
60 |
+
demo.launch()
|
61 |
|
62 |
|
requirements.txt
CHANGED
@@ -1,2 +1,3 @@
|
|
1 |
tensorflow
|
2 |
-
numpy
|
|
|
|
1 |
tensorflow
|
2 |
+
numpy
|
3 |
+
pillow
|