Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -35,6 +35,7 @@ from html_templates import (
|
|
35 |
get_akc_breeds_link
|
36 |
)
|
37 |
from model_architecture import BaseModel, dog_breeds
|
|
|
38 |
from urllib.parse import quote
|
39 |
from ultralytics import YOLO
|
40 |
import asyncio
|
@@ -486,9 +487,13 @@ def main():
|
|
486 |
history_component=history_component
|
487 |
)
|
488 |
|
489 |
-
# 4.
|
490 |
create_history_tab(history_component)
|
491 |
|
|
|
|
|
|
|
|
|
492 |
# Footer
|
493 |
gr.HTML('''
|
494 |
<div style="
|
|
|
35 |
get_akc_breeds_link
|
36 |
)
|
37 |
from model_architecture import BaseModel, dog_breeds
|
38 |
+
from analytics_dashboard import create_analytics_tab
|
39 |
from urllib.parse import quote
|
40 |
from ultralytics import YOLO
|
41 |
import asyncio
|
|
|
487 |
history_component=history_component
|
488 |
)
|
489 |
|
490 |
+
# 4. 歷史記錄標籤
|
491 |
create_history_tab(history_component)
|
492 |
|
493 |
+
# 5. 使用分析紀錄
|
494 |
+
create_analytics_tab()
|
495 |
+
|
496 |
+
|
497 |
# Footer
|
498 |
gr.HTML('''
|
499 |
<div style="
|