File size: 132 Bytes
b59e813
 
 
 
 
 
1
2
3
4
5
6
7
from typing import List
from pydantic import BaseModel

class ClassificationResult(BaseModel):
    prediction: str
    score: float