deploy-machine-learning / src /schemas /PredictItemResult.py
marintosti12
feat (api/orm) : first version api with orm
3b97d72
raw
history blame contribute delete
146 Bytes
from typing import Optional
from pydantic import BaseModel
class PredictItemResult(BaseModel):
label: str
proba: Optional[float] = None