2024-09-19 16:49:11 +09:00
|
|
|
from pydantic import BaseModel, Field
|
2024-09-23 09:46:42 +09:00
|
|
|
from typing import Optional, Union
|
2024-09-03 13:52:17 +09:00
|
|
|
|
2024-09-03 15:45:05 +09:00
|
|
|
class ImageInfo(BaseModel):
|
|
|
|
image_id: int
|
2024-09-19 16:49:11 +09:00
|
|
|
image_url: str
|
|
|
|
|
2024-09-03 15:45:05 +09:00
|
|
|
|
2024-09-03 13:52:17 +09:00
|
|
|
class PredictRequest(BaseModel):
|
2024-09-03 15:45:05 +09:00
|
|
|
project_id: int
|
2024-09-27 10:38:01 +09:00
|
|
|
m_key: str = Field("yolo8", alias="model_key") # model_ 로 시작하는 변수를 BaseModel의 변수로 만들경우 Warning 떠서 m_key로 대체
|
|
|
|
label_map: dict[str, int] = Field(..., description="프로젝트 레이블 이름: 프로젝트 레이블 pk , None일 경우 모델 레이블 카테고리 idx로 레이블링")
|
|
|
|
image_list: list[ImageInfo] # 이미지 리스트
|
|
|
|
conf_threshold: float = 0.25 #
|
2024-09-19 16:49:11 +09:00
|
|
|
iou_threshold: float = 0.45
|