worlabel/ai/app/schemas/train_response.py

10 lines
194 B
Python
Raw Normal View History

2024-09-26 17:20:37 +09:00
from pydantic import BaseModel
class TrainResponse(BaseModel):
modelKey:str
precision: float
recall: float
mAP50: float
mAP5095: float
accuracy: float
2024-09-26 17:20:37 +09:00
fitness: float