Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
merve
/
dataframe-demo
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
merve
HF Staff
commited on
Feb 1, 2023
Commit
2a0d41a
·
1 Parent(s):
c83c59a
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
import gradio as gr
2
+
def cancer_classifier(df):
3
+
pass
4
+
5
+
gr.Interface(fn=cancer_classifier, inputs="dataframe",
6
+
outputs="label").launch()