-
Notifications
You must be signed in to change notification settings - Fork 350
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add ModelEvaluation support (#1167)
- Loading branch information
Showing
7 changed files
with
535 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Copyright 2022 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
from google.cloud.aiplatform.model_evaluation.model_evaluation import ModelEvaluation | ||
|
||
__all__ = ("ModelEvaluation",) |
93 changes: 93 additions & 0 deletions
93
google/cloud/aiplatform/model_evaluation/model_evaluation.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Copyright 2022 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
from google.auth import credentials as auth_credentials | ||
|
||
from google.cloud.aiplatform import base | ||
from google.cloud.aiplatform import utils | ||
from google.cloud.aiplatform import models | ||
from google.protobuf import struct_pb2 | ||
|
||
from typing import Optional | ||
|
||
|
||
class ModelEvaluation(base.VertexAiResourceNounWithFutureManager): | ||
|
||
client_class = utils.ModelClientWithOverride | ||
_resource_noun = "evaluations" | ||
_delete_method = None | ||
_getter_method = "get_model_evaluation" | ||
_list_method = "list_model_evaluations" | ||
_parse_resource_name_method = "parse_model_evaluation_path" | ||
_format_resource_name_method = "model_evaluation_path" | ||
|
||
@property | ||
def metrics(self) -> Optional[struct_pb2.Value]: | ||
"""Gets the evaluation metrics from the Model Evaluation. | ||
Returns: | ||
A dict with model metrics created from the Model Evaluation or | ||
None if the metrics for this evaluation are empty. | ||
""" | ||
return self._gca_resource.metrics | ||
|
||
def __init__( | ||
self, | ||
evaluation_name: str, | ||
model_id: Optional[str] = None, | ||
project: Optional[str] = None, | ||
location: Optional[str] = None, | ||
credentials: Optional[auth_credentials.Credentials] = None, | ||
): | ||
"""Retrieves the ModelEvaluation resource and instantiates its representation. | ||
Args: | ||
evaluation_name (str): | ||
Required. A fully-qualified model evaluation resource name or evaluation ID. | ||
Example: "projects/123/locations/us-central1/models/456/evaluations/789" or | ||
"789". If passing only the evaluation ID, model_id must be provided. | ||
model_id (str): | ||
Optional. The ID of the model to retrieve this evaluation from. If passing | ||
only the evaluation ID as evaluation_name, model_id must be provided. | ||
project (str): | ||
Optional project to retrieve model evaluation from. If not set, project | ||
set in aiplatform.init will be used. | ||
location (str): | ||
Optional location to retrieve model evaluation from. If not set, location | ||
set in aiplatform.init will be used. | ||
credentials: Optional[auth_credentials.Credentials]=None, | ||
Custom credentials to use to retrieve this model evaluation. If not set, | ||
credentials set in aiplatform.init will be used. | ||
""" | ||
|
||
super().__init__( | ||
project=project, | ||
location=location, | ||
credentials=credentials, | ||
resource_name=evaluation_name, | ||
) | ||
|
||
self._gca_resource = self._get_gca_resource( | ||
resource_name=evaluation_name, | ||
parent_resource_name_fields={models.Model._resource_noun: model_id} | ||
if model_id | ||
else model_id, | ||
) | ||
|
||
def delete(self): | ||
raise NotImplementedError( | ||
"Deleting a model evaluation has not been implemented yet." | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.