File size: 534 Bytes
5e06ef0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# AUTOGENERATED! DO NOT EDIT! File to edit: telecom_object_detection.ipynb.

# %% auto 0
__all__ = ['title', 'css', 'iface', 'greet']

# %% telecom_object_detection.ipynb 2
import gradio as gr

# %% telecom_object_detection.ipynb 4
title = """<h1 id="title">Telecom Object Detection with Azure Custom Vision</h1>"""

css = '''
h1#title {
  text-align: center;
}
'''

# %% telecom_object_detection.ipynb 5
def greet(name):
    return "Hello " + name + "!!"

iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()