# 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 = """

Telecom Object Detection with Azure Custom Vision

""" 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()