Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
KyanChen
/
BuildingExtraction
like
4
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ab01e4a
BuildingExtraction
/
App_main.py
KyanChen
add model
ab01e4a
almost 3 years ago
raw
Copy download link
history
blame
Safe
159 Bytes
import
gradio
as
gr
import
os
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()