classify_job_response_all_of_accuracy module#

class edgeimpulse_api.models.classify_job_response_all_of_accuracy.ClassifyJobResponseAllOfAccuracy(
*,
totalSummary: ClassifyJobResponseAllOfAccuracyTotalSummary,
summaryPerClass: Dict[str, ClassifyJobResponseAllOfAccuracyTotalSummary],
confusionMatrixValues: Dict[str, Dict[str, float]],
allLabels: List[StrictStr],
accuracyScore: float | None = None,
mseScore: float | None = None,
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
accuracy_score: float | None#
all_labels: List[StrictStr]#
confusion_matrix_values: Dict[str, Dict[str, float]]#
classmethod from_dict(
obj: dict,
) ClassifyJobResponseAllOfAccuracy[source]#

Create an instance of ClassifyJobResponseAllOfAccuracy from a dict

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

Create an instance of ClassifyJobResponseAllOfAccuracy from a JSON string

mse_score: float | None#
summary_per_class: Dict[str, ClassifyJobResponseAllOfAccuracyTotalSummary]#
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

total_summary: ClassifyJobResponseAllOfAccuracyTotalSummary#