Spaces:
Runtime error
Runtime error
Commit
·
c4a182c
1
Parent(s):
3c44083
"First-Commit"
Browse files- app.py +7 -0
- requirements.txt +7 -0
app.py
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
def greet(name):
|
| 4 |
+
return "Hello " + name + "!!"
|
| 5 |
+
|
| 6 |
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
| 7 |
+
iface.launch()
|
requirements.txt
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
catboost==0.26.1
|
| 2 |
+
joblib==1.0.1
|
| 3 |
+
pandas==1.3.0
|
| 4 |
+
numpy==1.21.0
|
| 5 |
+
scikit-learn==0.24.2
|
| 6 |
+
matplotlib==3.4.2
|
| 7 |
+
gradio==2.1.1
|