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: pydantic.types.StrictInt | None
created_at: datetime.datetime | None
created_by: pydantic.types.StrictStr | None
crop_anchor: pydantic.types.StrictStr | None
dataset_subset: edgeimpulse_api.models.impulse_input_block_dataset_subset.ImpulseInputBlockDatasetSubset | None
description: pydantic.types.StrictStr | None
frequency_hz: float | None
id: pydantic.types.ConstrainedIntValue
image_height: pydantic.types.StrictInt | None
image_width: pydantic.types.StrictInt | None
name: pydantic.types.StrictStr
pad_zeros: pydantic.types.StrictBool | None
resize_method: pydantic.types.StrictStr | None
resize_mode: pydantic.types.StrictStr | None
title: pydantic.types.StrictStr
type: pydantic.types.StrictStr
window_increase_ms: pydantic.types.StrictInt | None
window_size_ms: pydantic.types.StrictInt | None
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