Source code for labelbox.schema.label_score

from labelbox import pydantic_compat


[docs]class LabelScore(pydantic_compat.BaseModel): """ A label score. Attributes: name (str) score (float) """ name: str score: float