Created
July 9, 2020 05:17
-
-
Save ctodd/ce354d21f42166142bb856f7d22ae8d3 to your computer and use it in GitHub Desktop.
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
pfx_training = PREFIX + '/training' if PREFIX else 'training' | |
# Defines paths for use in the training job request. | |
s3_train_data_path = 's3://{}/{}/{}'.format(BUCKET, pfx_training, augmented_manifest_filename_train) | |
s3_validation_data_path = 's3://{}/{}/{}'.format(BUCKET, pfx_training, augmented_manifest_filename_validation) | |
!aws s3 cp $augmented_manifest_filename_train s3://$BUCKET/$pfx_training/ | |
!aws s3 cp $augmented_manifest_filename_validation s3://$BUCKET/$pfx_training/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment