Skip to content

Commit 03d3344

Browse files
committed
Fixed: Typos of sagemarker to sagemaker
1 parent bd4beee commit 03d3344

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

advanced_functionality/r_bring_your_own/r_bring_your_own.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"\n",
9898
"### Fit\n",
9999
"\n",
100-
"`mars.R` creates functions to fit and serve our model. The algorithm we've chosen to use is [Multivariate Adaptive Regression Splines](https://en.wikipedia.org/wiki/Multivariate_adaptive_regression_splines). This is a suitable example as it's a unique and powerful algorithm, but isn't as broadly used as Amazon SageMarker algorithms, and it isn't available in Python's scikit-learn library. R's repository of packages is filled with algorithms that share these same criteria. "
100+
"`mars.R` creates functions to fit and serve our model. The algorithm we've chosen to use is [Multivariate Adaptive Regression Splines](https://en.wikipedia.org/wiki/Multivariate_adaptive_regression_splines). This is a suitable example as it's a unique and powerful algorithm, but isn't as broadly used as Amazon SageMaker algorithms, and it isn't available in Python's scikit-learn library. R's repository of packages is filled with algorithms that share these same criteria. "
101101
]
102102
},
103103
{

advanced_functionality/working_with_redshift_data/working_with_redshift_data.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"region = boto3.Session().region_name\n",
6060
"\n",
6161
"bucket='<your_s3_bucket_name_here>' # put your s3 bucket name here, and create s3 bucket\n",
62-
"prefix = 'sagemarker/redshift'\n",
62+
"prefix = 'sagemaker/redshift'\n",
6363
"# customize to your bucket where you have stored the data\n",
6464
"\n",
6565
"credfile = 'redshift_creds_template.json.nogit'"

introduction_to_amazon_algorithms/xgboost_mnist/xgboost_mnist.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"region = boto3.Session().region_name\n",
7070
"\n",
7171
"bucket='<bucket-name>' # put your s3 bucket name here, and create s3 bucket\n",
72-
"prefix = 'sagemarker/xgboost-multiclass-classification'\n",
72+
"prefix = 'sagemaker/xgboost-multiclass-classification'\n",
7373
"# customize to your bucket where you have stored the data\n",
7474
"bucket_path = 'https://s3-{}.amazonaws.com/{}'.format(region,bucket)"
7575
]

0 commit comments

Comments
 (0)