Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sklearn-docs
/
feature-importance-rf
like
1
Running
on
CPU Upgrade
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
7de0e88
feature-importance-rf
/
app.py
marik0
First commit
7de0e88
almost 2 years ago
raw
Copy download link
history
blame
Safe
150 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()