You are viewing documentation about an older version (2.0.0). View latest version

snowflake.ml.model.batch_inference.InferenceSpec

class snowflake.ml.model.batch_inference.InferenceSpec(*, num_workers: Optional[int] = None, max_batch_rows: Optional[int] = None, engine_options: Optional[EngineOptions] = None)

Bases: BaseModel

Inference block of the batch inference job specification.

num_workers

The number of workers to run the inference service for handling requests in parallel within an instance of the service. Auto determined if None.

Type:

Optional[int]

max_batch_rows

Maximum number of rows to process in a single batch. Auto determined if None. Larger values may improve throughput.

Type:

Optional[int]

engine_options

Options for a custom inference engine.

Type:

Optional[EngineOptions]

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Attributes

model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}

A dictionary of computed field names and their corresponding ComputedFieldInfo objects.

model_config: ClassVar[ConfigDict] = {'extra': 'forbid'}

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].

model_extra

Get extra fields set during validation.

Returns:

A dictionary of extra fields, or None if config.extra is not set to “allow”.

model_fields: ClassVar[dict[str, FieldInfo]] = {'engine_options': FieldInfo(annotation=Union[EngineOptions, NoneType], required=False, default=None), 'max_batch_rows': FieldInfo(annotation=Union[int, NoneType], required=False, default=None), 'num_workers': FieldInfo(annotation=Union[int, NoneType], required=False, default=None)}

Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].

This replaces Model.__fields__ from Pydantic V1.

model_fields_set

Returns the set of fields that have been explicitly set on this model instance.

Returns:

A set of strings representing the fields that have been set,

i.e. that were not filled from defaults.

num_workers: Optional[int]
max_batch_rows: Optional[int]
engine_options: Optional[EngineOptions]