Skip to content

Commit e5b2c24

Browse files
authored
Add isConfigCell metadata + updated bucket placeholder (aws#3)
1 parent ae4df9a commit e5b2c24

File tree

4 files changed

+19
-12
lines changed

4 files changed

+19
-12
lines changed

im-python-sdk/1P_kmeans_highlevel/kmeans_mnist.ipynb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,13 @@
5454
"cell_type": "code",
5555
"execution_count": null,
5656
"metadata": {
57-
"collapsed": true
57+
"collapsed": true,
58+
"isConfigCell": true
5859
},
5960
"outputs": [],
6061
"source": [
6162
"role='<your IM execution role here>'\n",
62-
"bucket='<<bucket-name>>'"
63+
"bucket='<bucket-name>'"
6364
]
6465
},
6566
{

im-python-sdk/1P_kmeans_lowlevel/kmeans_mnist_lowlevel.ipynb

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,13 @@
5353
{
5454
"cell_type": "code",
5555
"execution_count": null,
56-
"metadata": {},
56+
"metadata": {
57+
"isConfigCell": true
58+
},
5759
"outputs": [],
5860
"source": [
5961
"role='<your IM execution role here>'\n",
60-
"bucket='<<bucket-name>>'"
62+
"bucket='<bucket-name>'"
6163
]
6264
},
6365
{
@@ -517,7 +519,7 @@
517519
],
518520
"metadata": {
519521
"kernelspec": {
520-
"display_name": "Python [default]",
522+
"display_name": "Python 3",
521523
"language": "python",
522524
"name": "python3"
523525
},
@@ -531,7 +533,7 @@
531533
"name": "python",
532534
"nbconvert_exporter": "python",
533535
"pygments_lexer": "ipython3",
534-
"version": "3.6.1"
536+
"version": "3.5.2"
535537
}
536538
},
537539
"nbformat": 4,

im-python-sdk/mxnet_mnist/mxnet_mnist.ipynb

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,15 @@
1313
{
1414
"cell_type": "code",
1515
"execution_count": null,
16-
"metadata": {},
16+
"metadata": {
17+
"isConfigCell": true
18+
},
1719
"outputs": [],
1820
"source": [
1921
"#Bucket location to save your custom code in tar.gz format.\n",
20-
"custom_code_upload_location = 's3://<<bucket-name>>/customcode'\n",
22+
"custom_code_upload_location = 's3://<bucket-name>/customcode'\n",
2123
"#Bucket location where results of model training are saved.\n",
22-
"model_artifacts_location = 's3://<<bucket-name>>/artifacts'\n",
24+
"model_artifacts_location = 's3://<bucket-name>/artifacts'\n",
2325
"role='<your IM execution role here>'"
2426
]
2527
},

im-python-sdk/tensorflow_iris/tf_iris.ipynb

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,15 @@
9292
{
9393
"cell_type": "code",
9494
"execution_count": null,
95-
"metadata": {},
95+
"metadata": {
96+
"isConfigCell": true
97+
},
9698
"outputs": [],
9799
"source": [
98100
"#Bucket location to save your custom code in tar.gz format.\n",
99-
"custom_code_upload_location = 's3://<<bucket-name>>/customcode'\n",
101+
"custom_code_upload_location = 's3://<bucket-name>/customcode'\n",
100102
"#Bucket location where results of model training are saved.\n",
101-
"model_artifacts_location = 's3://<<bucket-name>>/artifacts'\n",
103+
"model_artifacts_location = 's3://<bucket-name>/artifacts'\n",
102104
"role='<your IM execution role here>'"
103105
]
104106
},

0 commit comments

Comments
 (0)