impulse_input_block module
ImpulseInputBlock
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
classification_window_increase_ms: Optional[pydantic.types.StrictInt]
created_at: Optional[datetime.datetime]
created_by: Optional[pydantic.types.StrictStr]
crop_anchor: Optional[pydantic.types.StrictStr]
dataset_subset: Optional[edgeimpulse_api.models.impulse_input_block_dataset_subset.ImpulseInputBlockDatasetSubset]
description: Optional[pydantic.types.StrictStr]
frequency_hz: Optional[float]
id: pydantic.types.ConstrainedIntValue
image_height: Optional[pydantic.types.StrictInt]
image_width: Optional[pydantic.types.StrictInt]
name: pydantic.types.StrictStr
pad_zeros: Optional[pydantic.types.StrictBool]
resize_method: Optional[pydantic.types.StrictStr]
resize_mode: Optional[pydantic.types.StrictStr]
title: pydantic.types.StrictStr
type: pydantic.types.StrictStr
window_increase_ms: Optional[pydantic.types.StrictInt]
window_size_ms: Optional[pydantic.types.StrictInt]
Static methods
crop_anchor_validate_enum
Parameters
v
from_dict
Create an instance of ImpulseInputBlock from a dict
Parameters
obj: dict
Return
edgeimpulse_api.models.impulse_input_block.ImpulseInputBlock
from_json
Create an instance of ImpulseInputBlock from a JSON string
Parameters
json_str: str
Return
edgeimpulse_api.models.impulse_input_block.ImpulseInputBlock
resize_method_validate_enum
Parameters
v
resize_mode_validate_enum
Parameters
v
type_validate_enum
Parameters
v
Methods
to_dict
Returns the dictionary representation of the model using alias
Parameters
self
to_json
Returns the JSON representation of the model using alias
Parameters
self
indent=None
Return
str
to_str
Returns the string representation of the model using alias
Parameters
self
Return
str
Last updated