profile_model_table module#

class edgeimpulse_api.models.profile_model_table.ProfileModelTable(
*,
variant: StrictStr,
lowEndMcu: ProfileModelTableMcu,
highEndMcu: ProfileModelTableMcu,
highEndMcuPlusAccelerator: ProfileModelTableMcu,
mpu: ProfileModelTableMpu,
gpuOrMpuAccelerator: ProfileModelTableMpu,
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

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

Create an instance of ProfileModelTable from a dict

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

Create an instance of ProfileModelTable from a JSON string

gpu_or_mpu_accelerator: ProfileModelTableMpu#
high_end_mcu: ProfileModelTableMcu#
high_end_mcu_plus_accelerator: ProfileModelTableMcu#
low_end_mcu: ProfileModelTableMcu#
mpu: ProfileModelTableMpu#
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

variant: StrictStr#
classmethod variant_validate_enum(v)[source]#