Last active
July 8, 2019 02:50
-
-
Save RoaldSchuring/589b83191c36cab22d78289d6c79c5a4 to your computer and use it in GitHub Desktop.
set_training_data_input_channel
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
train_data = sagemaker.session.s3_input(train_data, distribution='FullyReplicated', | |
content_type='text/plain', s3_data_type='S3Prefix') | |
data_channels = {'train': train_data} | |
bt_model.fit(inputs=data_channels, logs=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment