Bases: BaseModel
Represents a confidence score for a feature or measurement.
PARAMETER |
DESCRIPTION |
score
|
The confidence score of the feature, indicating the confidence the symstem has in the reading.
TYPE:
Decimal
|
Source code in werk24/models/v2/models.py
| class Confidence(BaseModel):
"""
Represents a confidence score for a feature or measurement.
"""
score: Decimal = Field(
...,
description="The confidence score of the feature, indicating the confidence the symstem has in the reading.",
examples=[Decimal("0.75")],
)
|