MCPcopy Create free account
hub / github.com/feast-dev/feast / mlflow

Method mlflow

sdk/python/feast/feature_store.py:244–253  ·  view source on GitHub ↗

Access the Feast–MLflow integration client. Lazily initializes on first access. Returns ``None`` when MLflow integration is not enabled, allowing callers to guard with ``if store.mlflow:``.

(self)

Source from the content-addressed store, hash-verified

242
243 @property
244 def mlflow(self) -> Any:
245 """Access the Feast–MLflow integration client.
246
247 Lazily initializes on first access. Returns ``None`` when MLflow
248 integration is not enabled, allowing callers to guard with
249 ``if store.mlflow:``.
250 """
251 if self._mlflow_client is _UNSET:
252 self._mlflow_client = self._init_mlflow()
253 return self._mlflow_client
254
255 @staticmethod
256 def _count_entities(entity_rows: Any) -> int:

Callers

nothing calls this directly

Calls 1

_init_mlflowMethod · 0.95

Tested by

no test coverage detected