Evaluated sentence
In [ ]:
Copied!
from typing import List
from typing import List
In [ ]:
Copied!
from pydantic import BaseModel
from pydantic import BaseModel
In [ ]:
Copied!
from .match import Match
from .match import Match
In [ ]:
Copied!
class EvaluatedSentence(BaseModel):
score: float
text: str
explanation: List[Match]
class EvaluatedSentence(BaseModel):
score: float
text: str
explanation: List[Match]
Last update:
July 13, 2022