Created
December 20, 2019 21:09
-
-
Save kunanit/5c21db111e6f2f6ae72a051651faa56d to your computer and use it in GitHub Desktop.
Get unassigned trial components in sagemaker experiments
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
# sm = boto3.Session().client('sagemaker') | |
response = sm.search( | |
Resource='ExperimentTrialComponent', | |
SearchExpression={ | |
'Filters': [ | |
{ | |
'Name': 'Parents.ExperimentName', | |
'Operator': 'NotExists', | |
} | |
] | |
}, | |
MaxResults=100 | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment