Skip to content

Commit 1a3f145

Browse files
committed
Updated: slight change to make S3 path a bit more delineated from output
1 parent 60c223e commit 1a3f145

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,23 @@ This repository contains example notebooks that show how to apply machine learni
99
- [XGBoost for Direct Marketing](xgboost_direct_marketing) targets potential customers that are most likely to convert based on customer and aggregate level metrics.
1010
- [PCA and k-means for Movie Clustering](pca_kmeans_movie_clustering) creates clusters of movies based on genre, ratings, and other characteristics.
1111

12-
### Amazon Algorithms - Basic Functionality
12+
### Introduction to Amazon Algorithms
1313

14-
### Amazon Algorithms - Scientific Detail
14+
### Scientific Details of Algorithms
1515

1616
### Advanced Amazon SageMaker Functionality
1717

1818
- [Installing the R Kernel](install_r_kernel) shows how to install the R kernel into an Amazon SageMaker Notebook Instance.
1919
- [Bring Your Own Model for k-means](kmeans_bring_your_own_model) shows how to take a model that's been fit elsewhere and use Amazon SageMaker containers to host.
2020
- [Bring Your Own Algorithm with R](r_bring_your_own) shows how to bring your own algorithm container to Amazon SageMaker using the R language.
2121
- [Bring Your Own Tensorflow Model](sagemaker-python-sdk/tensorflow_iris_byom) shows how to bring a model trained anywhere into Amazon SageMaker
22+
23+
## FAQ
24+
25+
*Will these example work outside of Amazon SageMaker?*
26+
27+
- Although most examples utilize key Amazon SageMaker functionality like distributed, managed training or real-time hosted endpoints, these notebooks can be run outside of Amazon SageMaker Notebook Instances with minimal modification (updating IAM role definition and installing the necessary libraries).
28+
29+
*How do I contribute my own example notebook?"
30+
31+
- Although we're extremely excited to receive contributions from the community, we're still working on the best mechanism to take in examples from and external source. Please bear will us in the short-term if pull requests take longer than expected or are closed.

introduction_to_amazon_algorithms/factorization_machines_mnist/factorization_machines_mnist.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@
178178
"\n",
179179
"key = 'recordio-pb-data'\n",
180180
"boto3.resource('s3').Bucket(bucket).Object(os.path.join(prefix, key)).upload_fileobj(buf)\n",
181-
"s3_train_data = 's3://{}/{}/{}'.format(bucket, prefix, key)\n",
181+
"s3_train_data = 's3://{}/{}/train/{}'.format(bucket, prefix, key)\n",
182182
"print('uploaded training data location: {}'.format(s3_train_data))"
183183
]
184184
},

introduction_to_amazon_algorithms/linear_learner_mnist/linear_learner_mnist.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@
176176
"\n",
177177
"key = 'recordio-pb-data'\n",
178178
"boto3.resource('s3').Bucket(bucket).Object(os.path.join(prefix, key)).upload_fileobj(buf)\n",
179-
"s3_train_data = 's3://{}/{}/{}'.format(bucket, prefix, key)\n",
179+
"s3_train_data = 's3://{}/{}/train/{}'.format(bucket, prefix, key)\n",
180180
"print('uploaded training data location: {}'.format(s3_train_data))"
181181
]
182182
},

introduction_to_amazon_algorithms/pca_mnist/pca_mnist.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@
178178
"\n",
179179
"key = 'recordio-pb-data'\n",
180180
"boto3.resource('s3').Bucket(bucket).Object(os.path.join(prefix, key)).upload_fileobj(buf)\n",
181-
"s3_train_data = 's3://{}/{}/{}'.format(bucket, prefix, key)\n",
181+
"s3_train_data = 's3://{}/{}/train/{}'.format(bucket, prefix, key)\n",
182182
"print('uploaded training data location: {}'.format(s3_train_data))"
183183
]
184184
},

0 commit comments

Comments
 (0)