Skip to content

Commit 4433d5a

Browse files
authored
Merge pull request aws#174 from awslabs/arpin_blazingtext_readme
Updated: README with BlazingText and videogames to use prefix
2 parents e2f6338 + 71242a2 commit 4433d5a

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ These examples provide quick walkthroughs to get you up and running with Amazon
3030
- [XGBoost for regression](introduction_to_amazon_algorithms/xgboost_abalone) predicts the age of abalone ([Abalone dataset](https://www.csie.ntu.edu.tw/~cjlin/libsvmtools/datasets/regression.html)) using regression from Amazon SageMaker's implementation of [XGBoost](https://github.com/dmlc/xgboost).
3131
- [XGBoost for multi-class classification](introduction_to_amazon_algorithms/xgboost_mnist) uses Amazon SageMaker's implementation of [XGBoost](https://github.com/dmlc/xgboost) to classify handwritten digits from the MNIST dataset as one of the ten digits using a multi-class classifier. Both single machine and distributed use-cases are presented.
3232
- [DeepAR for time series forecasting](introduction_to_amazon_algorithms/deepar_synthetic) illustrates how to use the Amazon SageMaker DeepAR algorithm for time series forecasting on a synthetically generated data set.
33+
- [BlazingText Word2Vec](introduction_to_amazon_algorithms/blazingtext_word2vec_text8) generates Word2Vec embeddings from a cleaned text dump of Uncyclopedia articles using SageMaker's fast and scalable BlazingText implementation.
3334

3435
### Scientific Details of Algorithms
3536

@@ -71,7 +72,7 @@ These examples focus on the Amazon SageMaker Python SDK which allows you to writ
7172

7273
These examples show how to use Amazon SageMaker for model training, hosting, and inference through Apache Spark using [SageMaker Spark](https://github.com/aws/sagemaker-spark). SageMaker Spark allows you to interleave Spark Pipeline stages with Pipeline stages that interact with Amazon SageMaker.
7374

74-
- [MNIST with SageMaker Spark](sagemaker-spark/pyspark_mnist)
75+
- [MNIST with SageMaker PySpark](sagemaker-spark/pyspark_mnist)
7576

7677
### Under Development
7778

introduction_to_amazon_algorithms/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ These examples provide quick walkthroughs to get you up and running with Amazon
1414
- [Image Classification](introduction_to_amazon_algorithms/imageclassification_caltech) includes full training and transfer learning examples of Amazon SageMaker's Image Classification algorithm. This uses a ResNet deep convolutional neural network to classify images from the caltech dataset.
1515
- [XGBoost for regression](xgboost_abalone) predicts the age of abalone ([Abalone dataset](https://www.csie.ntu.edu.tw/~cjlin/libsvmtools/datasets/regression.html)) using regression from Amazon SageMaker's implementation of [XGBoost](https://github.com/dmlc/xgboost).
1616
- [XGBoost for multi-class classification](xgboost_mnist) uses Amazon SageMaker's implementation of [XGBoost](https://github.com/dmlc/xgboost) to classifiy handwritten digits from the MNIST dataset as one of the ten digits using a multi-class classifier. Both single machine and distributed use-cases are presented.
17-
- [DeepAR for time series forecasting](deepar_synthetic) illustrates how to use the Amazon SageMaker DeepAR algorithm for time series forecasting on a synthetically generated data set.
17+
- [DeepAR for time series forecasting](deepar_synthetic) illustrates how to use the Amazon SageMaker DeepAR algorithm for time series forecasting on a synthetically generated data set.
18+
- [BlazingText Word2Vec](blazingtext_word2vec_text8) generates Word2Vec embeddings from a cleaned text dump of Uncyclopedia articles using SageMaker's fast and scalable BlazingText implementation.

introduction_to_applying_machine_learning/video_game_sales/video-game-sales-xgboost.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
"---\n",
9494
"## Data\n",
9595
"\n",
96-
"Before proceeding further, you'll need to sign in to Kaggle or create a Kaggle account if you don't have one. Then **upload the raw CSV data set from the above Kaggle link to the S3 bucket you specified above**. The raw_data_filename specified below is the name of the data file from Kaggle, but you should alter it if the name changes. Let's download the data from your S3 bucket to your notebook instance, where it will appear in the same directory as this notebook. Then we'll take an initial look at the data."
96+
"Before proceeding further, you'll need to sign in to Kaggle or create a Kaggle account if you don't have one. Then **upload the raw CSV data set from the above Kaggle link to the S3 bucket and prefix you specified above**. The raw_data_filename specified below is the name of the data file from Kaggle, but you should alter it if the name changes. Let's download the data from your S3 bucket to your notebook instance, where it will appear in the same directory as this notebook. Then we'll take an initial look at the data."
9797
]
9898
},
9999
{
@@ -107,7 +107,7 @@
107107
"raw_data_filename = 'Video_Games_Sales_as_at_22_Dec_2016.csv'\n",
108108
"\n",
109109
"s3 = boto3.resource('s3')\n",
110-
"s3.Bucket(bucket).download_file(raw_data_filename, 'raw_data.csv')\n",
110+
"s3.Bucket(bucket).download_file(prefix + '/' + raw_data_filename, 'raw_data.csv')\n",
111111
"\n",
112112
"data = pd.read_csv('./raw_data.csv')\n",
113113
"pd.set_option('display.max_rows', 20) \n",

sagemaker-spark/README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
# Amazon SageMaker Examples
22

3-
## Amazon SageMaker using SageMaker Spark
3+
### Using Amazon SageMaker with Apache Spark
44

5-
These examples demonstrate using SageMaker Spark, which allows you to interleave Apache Spark code with Amazon SageMaker.
5+
These examples show how to use Amazon SageMaker for model training, hosting, and inference through Apache Spark using [SageMaker Spark](https://github.com/aws/sagemaker-spark). SageMaker Spark allows you to interleave Spark Pipeline stages with Pipeline stages that interact with Amazon SageMaker.
66

7-
See [SageMaker Spark](https://github.com/aws/sagemaker-spark) for more information.
8-
9-
- [MNIST with SageMaker Spark](pyspark_mnist)
7+
- [MNIST with SageMaker PySpark](pyspark_mnist)

0 commit comments

Comments
 (0)