snowflake.ml.model¶
Classes
|
Model Object containing multiple versions. |
Model Version Object representing a specific version of the model that could be run. |
|
|
Utility factory method to build a wrapper over transformers [Pipeline]. |
snowflake.ml.model.custom_model¶
Classes
|
Represents a method invocation of an instance of ModelRef. |
|
Represents a model in the inference graph. |
|
Context for a custom model storing paths to file artifacts and model object references. |
|
Abstract class for user defined custom model. |
snowflake.ml.model.model_signature¶
Classes
|
An enumeration. |
|
Abstract Class for specification of a feature. |
|
Specification of a feature in Snowflake native model packaging. |
|
Signature of a model that specifies the input and output of a model. |
Methods
|
Infer model signature from given input and output sample data. |
snowflake.ml.model.openai_signatures¶
Attributes
dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object's (key, value) pairs dict(iterable) -> new dictionary initialized as if via: d = {} for k, v in iterable: d[k] = v dict(**kwargs) -> new dictionary initialized with the name=value pairs in the keyword argument list. For example: dict(one=1, two=2). |