Spaces:
Runtime error
Runtime error
File size: 309 Bytes
eef4a16 e3f00d5 03c3bcc e3f00d5 03c3bcc 54295f3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#import sys
import utk #the big one!
import gradio as gr
uc = utk.OSM.load('Manhattan, NY', layers=['surface', 'parks', 'water', 'roads'])
uc.save('./manhattan')
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(
fn=greet,
inputs="text",
outputs="text"
)
iface.launch() |