Spaces:
Runtime error
Runtime error
DavidFarrell
commited on
Commit
•
72401f5
1
Parent(s):
12655d2
requirements
Browse files- app.py +1 -1
- requirements.txt +2 -0
app.py
CHANGED
@@ -29,7 +29,7 @@ def predict(img):
|
|
29 |
|
30 |
|
31 |
def greet(name):
|
32 |
-
return "
|
33 |
|
34 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
35 |
iface.launch()
|
|
|
29 |
|
30 |
|
31 |
def greet(name):
|
32 |
+
return "Hellooo " + name + "!!"
|
33 |
|
34 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
35 |
iface.launch()
|
requirements.txt
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
fastai
|
2 |
+
scikit-image
|