Retrieve Entity Matching Models
- async AsyncCogniteClient.entity_matching.list(
- name: str | None = None,
- description: str | None = None,
- original_id: int | None = None,
- feature_type: str | None = None,
- classifier: str | None = None,
- limit: int | None = 25,
-
- Parameters:
name (str | None) – Optional user-defined name of model.
description (str | None) – Optional user-defined description of model.
original_id (int | None) – id of the original model for models that were created with refit.
feature_type (str | None) – feature type that defines the combination of features used.
classifier (str | None) – classifier used in training.
limit (int | None) – Maximum number of items to return. Defaults to 25. Set to -1, float(“inf”) or None to return all items.
- Returns:
List of models.
- Return type:
Examples
>>> from cognite.client import CogniteClient, AsyncCogniteClient >>> client = CogniteClient() >>> # async_client = AsyncCogniteClient() # another option >>> client.entity_matching.list(limit=1, name="test")