Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f86a97f

Browse files
authoredDec 13, 2017
Merge pull request aws#144 from awslabs/arpin_readme_s3_bucket
Updated: README to include video games, TensorFlow BYOM, and basic setup
2 parents a0df030 + 9dfc3ea commit f86a97f

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed
 

‎README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ These examples provide a gentle introduction to machine learning concepts as the
1313
- [Time-series Forecasting](introduction_to_applying_machine_learning/linear_time_series_forecast) generates a forecast for topline product demand using Amazon SageMaker's Linear Learner algorithm.
1414
- [Cancer Prediction](introduction_to_applying_machine_learning/breast_cancer_prediction) predicts Breast Cancer based on features derived from images, using SageMaker's Linear Learner.
1515
- [Ensembling](introduction_to_applying_machine_learning/ensemble_modeling) predicts income using two Amazon SageMaker models to show the advantages in ensembling.
16+
- [Video Game Sales](introduction_to_applying_machine_learning/video_game_sales) develops a binary prediction model for the success of video games based on review scores.
1617

1718
### Introduction to Amazon Algorithms
1819

@@ -48,6 +49,7 @@ These examples that showcase unique functionality available in Amazon SageMaker.
4849
- [Bring Your Own R Algorithm](advanced_functionality/r_bring_your_own) shows how to bring your own algorithm container to Amazon SageMaker using the R language.
4950
- [Installing the R Kernel](advanced_functionality/install_r_kernel) shows how to install the R kernel into an Amazon SageMaker Notebook Instance.
5051
- [Bring Your Own scikit Algorithm](advanced_functionality/scikit_bring_your_own) provides a detailed walkthrough on how to package a scikit learn algorithm for training and production-ready hosting.
52+
- [Bring Your Own TensorFlow Model](advanced_functionality/tensorflow_iris_byom) shows how to bring a model trained anywhere using TensorFlow into Amazon SageMaker
5153

5254
### Amazon SageMaker TensorFlow and MXNet Pre-Built Containers and the Python SDK
5355

@@ -68,10 +70,17 @@ These examples focus on the Amazon SageMaker Python SDK which allows you to writ
6870
These Amazon SageMaker examples fully illustrate a concept, but may require some additional configuration on the users part to complete.
6971

7072
- [Bring Your Own MXNet Model](under_development/mxnet_mnist_byom) shows how to bring a model trained anywhere using MXNet into Amazon SageMaker
71-
- [Bring Your Own TensorFlow Model](under_development/tensorflow_iris_byom) shows how to bring a model trained anywhere using TensorFlow into Amazon SageMaker
7273

7374
## FAQ
7475

76+
*What do I need in order to get started?*
77+
78+
- The quickest setup to run example notebooks includes:
79+
- An [AWS account](http://docs.aws.amazon.com/sagemaker/latest/dg/gs-account.html)
80+
- Proper [IAM User and Role](http://docs.aws.amazon.com/sagemaker/latest/dg/authentication-and-access-control.html) setup
81+
- An [Amazon SageMaker Notebook Instance](http://docs.aws.amazon.com/sagemaker/latest/dg/gs-setup-working-env.html)
82+
- An [S3 bucket](http://docs.aws.amazon.com/sagemaker/latest/dg/gs-config-permissions.html)
83+
7584
*Will these examples work outside of Amazon SageMaker Notebook Instances?*
7685

7786
- 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).

‎advanced_functionality/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ These examples that showcase unique functionality available in Amazon SageMaker.
1313
- [Installing the R Kernel](install_r_kernel) shows how to install the R kernel into an Amazon SageMaker Notebook Instance.
1414
- [Bring Your Own R Algorithm](r_bring_your_own) shows how to bring your own algorithm container to Amazon SageMaker using the R language.
1515
- [Bring Your Own scikit Algorithm](scikit_bring_your_own) provides a detailed walkthrough on how to package a scikit learn algorithm for training and production-ready hosting.
16+
- [Bring Your Own TensorFlow Model](tensorflow_iris_byom) shows how to bring a model trained anywhere using TensorFlow into Amazon SageMaker

‎introduction_to_applying_machine_learning/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ These examples provide a gentle introduction to machine learning concepts as the
99
- [Time-series Forecasting](linear_time_series_forecast) generates a forecast for topline product demand using Amazon SageMaker's Linear Learner algorithm.
1010
- [Cancer Prediction](breast_cancer_prediction) predicts Breast Cancer based on features derived from images, using SageMaker's Linear Learner.
1111
- [Ensembling](ensemble_modeling) predicts income using two Amazon SageMaker models to show the advantages in ensembling.
12+
- [Video Game Sales](video_game_sales) develops a binary prediction model for the success of video games based on review scores.

0 commit comments

Comments
 (0)
Please sign in to comment.