Skip to content

Commit ee646c7

Browse files
authored
Merge pull request #31 from DropThe8bit/yolo_v2
[refactor] yolo_v2로 모델 변경
2 parents 95722d9 + 97d6475 commit ee646c7

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

everTale/app/service/yolo_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import os, torch
1414

1515
def _resolve_yolo_path() -> str:
16-
path = os.getenv("YOLO_MODEL_PATH", "/models/my_yolo_model.pt")
16+
path = os.getenv("YOLO_MODEL_PATH", "/models/my_yolo_model_v2.pt")
1717
if not os.path.exists(path):
1818
raise FileNotFoundError(f"YOLO model not found at: {path}")
1919
return path

0 commit comments

Comments
 (0)