module documentation
Undocumented
Class |
|
Undocumented |
Class |
|
Undocumented |
Class |
|
Describes a model exposed through a mlflow server. |
Function | in |
A model that is loaded from MLFlow using the given model name and alias. |
Function | mlflow |
Calls an MLFlow server to get the model predictions. |
Function | mlflow |
Undocumented |
Function | reference |
Undocumented |
Function | reference |
Undocumented |
Function | references |
Decodes the feature references in stored in a metadata key. |
Function | signature |
Undocumented |
Function | signature |
Undocumented |
def in_memory_mlflow(model_name:
str
, model_alias: str
= 'champion', reference_tag: str
= 'feature_refs', mlflow_config: MlflowConfig | None
= None) -> ExposedModel
:
(source)
¶
A model that is loaded from MLFlow using the given model name and alias.
This will also run in memory, and not require that mlflow
is installed.
def mlflow_server(host:
str
, model_alias: str
= 'champion', model_name: str | None
= None, timeout: int
= 30, mlflow_config: MlflowConfig | None
= None) -> ExposedModel
:
(source)
¶
Calls an MLFlow server to get the model predictions.
This will load the features described in the model signature, and pass them to the server.
def reference_metadata_for_input(requests:
list[ RetrievalRequest] | RetrievalRequest
) -> list[ str]
:
(source)
¶
Undocumented
def references_from_metadata(metadata:
dict[ str, Any]
, reference_key: str
= 'feature_refs') -> list[ FeatureReference] | None
:
(source)
¶
Decodes the feature references in stored in a metadata key.
`python mlflow. `