Move files
This commit is contained in:
parent
b97b20ba88
commit
c046d64a98
16 changed files with 35 additions and 36 deletions
9
great_ai/views/outputs/classification_output.py
Normal file
9
great_ai/views/outputs/classification_output.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
from typing import Any, Optional, Union
|
||||
|
||||
from ..hashable_base_model import HashableBaseModel
|
||||
|
||||
|
||||
class ClassificationOutput(HashableBaseModel):
|
||||
label: Union[str, int]
|
||||
confidence: float
|
||||
explanation: Optional[Any]
|
||||
Loading…
Add table
Add a link
Reference in a new issue