Spaces:
Runtime error
Runtime error
File size: 345 Bytes
2d27b0e d3ca638 d11a245 2d27b0e d3ca638 d11a245 d3ca638 |
1 2 3 4 5 6 7 8 9 10 11 12 |
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()
|