ModelVariantStats

class edgeimpulse_api.models.model_variant_stats.ModelVariantStats(
		**data: Any
)
Create a new model by parsing and validating input data from keyword arguments. Raises ValidationError if the input data cannot be parsed to form a valid model. Parameters
  • **data: Any
Bases
  • pydantic.main.BaseModel
  • pydantic.utils.Representation
Class variables
  • Config The type of the None singleton.
  • accuracy: edgeimpulse_api.models.evaluate_result_value.EvaluateResultValue The type of the None singleton.
  • classification_labels: List[pydantic.types.StrictStr] The type of the None singleton.
  • confusion_matrix: Dict[str, Dict[str, Dict[str, Any]]] The type of the None singleton.
  • learn_block_id: pydantic.types.StrictInt The type of the None singleton.
  • learn_block_type: edgeimpulse_api.models.learn_block_type.LearnBlockType The type of the None singleton.
  • model_type: edgeimpulse_api.models.keras_model_type_enum.KerasModelTypeEnum The type of the None singleton.
  • total_correct_window_count: edgeimpulse_api.models.evaluate_result_value.EvaluateResultValue | None The type of the None singleton.
  • total_window_count: pydantic.types.StrictInt | None The type of the None singleton.
  • training_labels: List[pydantic.types.StrictStr] The type of the None singleton.

Static methods

from_dict

edgeimpulse_api.models.model_variant_stats.from_dict(
		obj: dict
) ‑> edgeimpulse_api.models.model_variant_stats.ModelVariantStats
Create an instance of ModelVariantStats from a dict Parameters
  • obj: dict
Return edgeimpulse_api.models.model_variant_stats.ModelVariantStats

from_json

edgeimpulse_api.models.model_variant_stats.from_json(
		json_str: str
) ‑> edgeimpulse_api.models.model_variant_stats.ModelVariantStats
Create an instance of ModelVariantStats from a JSON string Parameters
  • json_str: str
Return edgeimpulse_api.models.model_variant_stats.ModelVariantStats

Methods

to_dict

edgeimpulse_api.models.model_variant_stats.to_dict(
		self
)
Returns the dictionary representation of the model using alias Parameters
  • self

to_json

edgeimpulse_api.models.model_variant_stats.to_json(
		self,
		indent=None
) ‑> str
Returns the JSON representation of the model using alias Parameters
  • self
  • indent=None
Return str

to_str

edgeimpulse_api.models.model_variant_stats.to_str(
		self
) ‑> str
Returns the string representation of the model using alias Parameters
  • self
Return str