Skip to content

Commit

Permalink
misc: rename method
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim-Encord committed Jan 8, 2025
1 parent 4de1bfc commit 5e6689e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions encord/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -1335,3 +1335,11 @@ def create_filter_preset(self, name: str, filter_preset: ActiveFilterPresetDefin
project_uuid=self._project_instance.project_hash,
filter_preset_uuid=uuid,
)

def analyze_prediction(self, label_branch_name: str) -> None:
self._client._api_client.post(
path=f"active/{self.project_hash}/predictions",
params=None,
payload=ActivePredictionPayload(label_branch_name=label_branch_name),
result_type=None,
)

0 comments on commit 5e6689e

Please sign in to comment.