performance_calibration_false_positive module#

class edgeimpulse_api.models.performance_calibration_false_positive.PerformanceCalibrationFalsePositive(
*,
type: StrictStr,
detectionTime: StrictInt,
groundTruthLabel: StrictStr | None = None,
groundTruthStart: float | None = None,
sampleIds: List[StrictInt] | None = None,
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
detection_time: StrictInt#
classmethod from_dict(
obj: dict,
) PerformanceCalibrationFalsePositive[source]#

Create an instance of PerformanceCalibrationFalsePositive from a dict

classmethod from_json(
json_str: str,
) PerformanceCalibrationFalsePositive[source]#

Create an instance of PerformanceCalibrationFalsePositive from a JSON string

ground_truth_label: StrictStr | None#
ground_truth_start: float | None#
sample_ids: List[StrictInt] | None#
to_dict()[source]#

Returns the dictionary representation of the model using alias

to_json() str[source]#

Returns the JSON representation of the model using alias

to_str() str[source]#

Returns the string representation of the model using alias

type: StrictStr#
classmethod type_validate_enum(v)[source]#