-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DRCC][Ready to Merge] AQUA MS Enhancements #1058
base: main
Are you sure you want to change the base?
Conversation
# Conflicts: # ads/aqua/evaluation/evaluation.py
) | ||
dsc_model.get_custom_metadata_artifact(EVALUATION_REPORT_MD, temp_dir) | ||
dsc_model.get_custom_metadata_artifact(EVALUATION_REPORT_JSON, temp_dir) | ||
else: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should try to fetch from the artifacts as well at first, and then form OSS
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry I thought i misunderstood this comment.
Not sure if i still understand
For Evaluation , we are fetching the reports first from metadata artifact , if not found ,we fetch from OSS.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ohh , I see you mean from model artifact? Yes we can do that.
Currently , we check in custom metadata. if not found , we check in customer's OSS bucket where evaluation reports are stored.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated. @mrDzurb
@@ -1376,11 +1405,10 @@ def delete(self, eval_id): | |||
|
|||
@staticmethod | |||
@fire_and_forget | |||
def _delete_job_and_model(job, model): | |||
def _delete_job_and_model(job: DataScienceJob, model: DataScienceModel): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice!
ads/common/utils.py
Outdated
@@ -64,6 +64,7 @@ | |||
MAX_DISPLAY_VALUES = 10 | |||
|
|||
UNKNOWN = "" | |||
UNKNOWN_LIST = [] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NIT: I think we don't really need this. We can use the []
directly wherever we need this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated. Thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm 👍
Description
This PR intends to enhance the AQUA flow with the introduction of MS enhancements regarding defined and custom metadata artifact APIs.
Related PR
#1036
New APIs introduced
E2E Test results
https://confluence.oraclecorp.com/confluence/display/OCIODSC/%5BAQUA%5D+DRCC+changes+tests+for+AQUA+UI+and+ADS
Unit Tests