Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
SamDaLamb
/
ValorantTracker
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
SamDaLamb
commited on
Feb 11
Commit
05f9833
·
verified
·
1 Parent(s):
8dd7af4
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
CHANGED
Viewed
@@ -1,3 +1,9 @@
1
2
3
def speclab(img):
1
+
import gradio as gr
2
+
3
+
def greet(name):
4
+
return "Hello " + name + "!!"
5
+
6
+
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
7
8
9
def speclab(img):