fmussari's picture
First
5e06ef0
raw history blame
No virus
534 Bytes
# 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()