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
import datetime | |
import luigi | |
import hashlib | |
from collections import defaultdict | |
import json | |
from os.path import join | |
# luigi --module tasks ReportStep --local-scheduler | |
# clean up: rm data/output_* |
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
{ | |
"Version": "2008-10-17", | |
"Id": "CrossAccountAccessExample", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Principal": { | |
"AWS": "arn:aws:iam::123456789123:user/admin" | |
}, | |
"Action": [ |
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', | |
} |
OlderNewer