Skip to content

Instantly share code, notes, and snippets.

@kunanit
Created December 20, 2019 21:09
Show Gist options
  • Save kunanit/5c21db111e6f2f6ae72a051651faa56d to your computer and use it in GitHub Desktop.
Save kunanit/5c21db111e6f2f6ae72a051651faa56d to your computer and use it in GitHub Desktop.
Get unassigned trial components in sagemaker experiments
# 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