Spaces:
Running
Running
George Sergia
commited on
Commit
·
46ebe29
1
Parent(s):
81f2458
Add gradio app file adn model
Browse files- app.py +7 -0
- bears.pkl +3 -0
- requirements.txt +0 -0
app.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
def greet(name):
|
4 |
+
return f"Hello {name}"
|
5 |
+
|
6 |
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
+
iface.launch()
|
bears.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:14e20594e783d8e4f565eadc611dee2dc7a071376bc436422ad058f5fc4f29c3
|
3 |
+
size 46978986
|
requirements.txt
ADDED
File without changes
|