Spaces:
Runtime error
Runtime error
| import gradio as gr | |
| from classify_utils import classify_tab | |
| from detect_utils import detect_tab | |
| from tracker_utils import tracker_tab | |
| if __name__ == '__main__': | |
| gr.TabbedInterface( | |
| [detect_tab, classify_tab, tracker_tab], | |
| tab_names=['Image Detection', 'Image Classification', "Multi Object Tracker"] | |
| ).queue().launch() | |