31 lines
1020 B
Python
31 lines
1020 B
Python
# ai_service.py
|
|
|
|
from ultralytics import YOLO # Ultralytics YOLO 모델을 가져오기
|
|
from typing import List
|
|
import os
|
|
|
|
def load_detection_model(model_path: str = "test-data/model/yolov8n.pt", device:str ="cpu"):
|
|
"""
|
|
지정된 경로에서 YOLO 모델을 로드합니다.
|
|
|
|
Args:
|
|
model_path (str): 모델 파일 경로.
|
|
device (str): 모델을 로드할 장치. 기본값은 'cpu'.
|
|
'cpu' 또는 'cuda'와 같은 장치를 지정할 수 있습니다.
|
|
|
|
Returns:
|
|
YOLO: 로드된 YOLO 모델 인스턴스
|
|
"""
|
|
|
|
if not os.path.exists(model_path) and model_path != "test-data/model/yolov8n.pt":
|
|
raise FileNotFoundError(f"Model file not found at path: {model_path}")
|
|
|
|
try:
|
|
model = YOLO(model_path)
|
|
model.to(device)
|
|
# Detection 모델인지 검증
|
|
# 코드 추가
|
|
return model
|
|
except Exception as e:
|
|
raise RuntimeError(f"Failed to load the model from {model_path}. Error: {str(e)}")
|
|
|