Source code for labelbox.schema.label_score
from pydantic import BaseModel
[docs]class LabelScore(BaseModel):
"""
A label score.
Attributes:
name (str)
score (float)
"""
name: str
score: float
from pydantic import BaseModel
[docs]class LabelScore(BaseModel):
"""
A label score.
Attributes:
name (str)
score (float)
"""
name: str
score: float