class documentation

Undocumented

Static Method in_memory_mlflow Undocumented
Static Method mlflow_server Undocumented
Static Method ollama_embedding Undocumented
Static Method ollama_generate Undocumented
Static Method polars_predictor Undocumented
Async Method depends_on The data artefacts that the model depends on. Which is not the input features. This is useful for e.g. RAG systems, as we can describe which documents a model depends on Or something like a vector database that we assume to be up to date.
Method needed_configs Returns the config variables to set in order to use the model.
Async Method needed_entities Undocumented
Async Method needed_features Undocumented
Async Method potential_drift_from_model Undocumented
Async Method run_polars Undocumented
Method with_contract Undocumented
Method with_shadow Undocumented
Class Variable model_type Undocumented
Property as_markdown Undocumented
Property exposed_at_url Undocumented
Class Method _deserialize Undocumented
Method _serialize Undocumented
@staticmethod
def in_memory_mlflow(model_name: str, model_alias: str = 'champion', reference_tag: str = 'feature_refs', mlflow_config: MlflowConfig | None = None) -> ExposedModel: (source)

Undocumented

@staticmethod
def mlflow_server(host: str, model_alias: str = 'champion', model_name: str | None = None, timeout: int = 30) -> ExposedModel: (source)

Undocumented

@staticmethod
def ollama_embedding(endpoint: str, model: str, input_features_versions: str, prompt_template: str, embedding_name: str | None = None, precomputed_prompt_key: str = 'full_prompt') -> ExposedModel: (source)

Undocumented

@staticmethod
def ollama_generate(endpoint: str, model: str, prompt_template: str, input_features_versions: str) -> ExposedModel: (source)

Undocumented

@staticmethod
def polars_predictor(callable: Callable[[pl.DataFrame, ModelFeatureStore], Coroutine[None, None, pl.DataFrame]], features: list[FeatureReferencable] | None = None) -> ExposedModel: (source)

Undocumented

async def depends_on(self) -> list[FeatureLocation]: (source)

The data artefacts that the model depends on. Which is not the input features. This is useful for e.g. RAG systems, as we can describe which documents a model depends on Or something like a vector database that we assume to be up to date.

def needed_configs(self) -> list[ConfigValue]: (source)

Returns the config variables to set in order to use the model.

async def potential_drift_from_model(self, old_model: ExposedModel) -> str | None: (source)

Undocumented

def with_contract(self, model: Model) -> ExposedModel: (source)

Undocumented

def with_shadow(self, shadow_model: ExposedModel) -> ShadowModel: (source)

Undocumented

@classmethod
def _deserialize(cls, value: dict) -> ExposedModel: (source)

Undocumented

def _serialize(self) -> dict: (source)

Undocumented