Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Boaz
/
wildlife
like
0
No application file
App
Files
Files
Community
main
wildlife
/
w
Boaz
w
642b42c
almost 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
184 Bytes
!pip install --quiet gradio
import gradio as gr
# Write 1 line of Python to create a simple GUI
gr.Interface(
fn
=greet,
inputs
=
"textbox"
,
outputs
=
"textbox"
,
).launch();