Skip to content

Commit

Permalink
Add isConfigCell metadata + updated bucket placeholder (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
winstonaws authored Nov 3, 2017
1 parent ae4df9a commit e5b2c24
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 12 deletions.
5 changes: 3 additions & 2 deletions im-python-sdk/1P_kmeans_highlevel/kmeans_mnist.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,13 @@
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
"collapsed": true,
"isConfigCell": true
},
"outputs": [],
"source": [
"role='<your IM execution role here>'\n",
"bucket='<<bucket-name>>'"
"bucket='<bucket-name>'"
]
},
{
Expand Down
10 changes: 6 additions & 4 deletions im-python-sdk/1P_kmeans_lowlevel/kmeans_mnist_lowlevel.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,13 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"isConfigCell": true
},
"outputs": [],
"source": [
"role='<your IM execution role here>'\n",
"bucket='<<bucket-name>>'"
"bucket='<bucket-name>'"
]
},
{
Expand Down Expand Up @@ -517,7 +519,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python [default]",
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
Expand All @@ -531,7 +533,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.1"
"version": "3.5.2"
}
},
"nbformat": 4,
Expand Down
8 changes: 5 additions & 3 deletions im-python-sdk/mxnet_mnist/mxnet_mnist.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,15 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"isConfigCell": true
},
"outputs": [],
"source": [
"#Bucket location to save your custom code in tar.gz format.\n",
"custom_code_upload_location = 's3://<<bucket-name>>/customcode'\n",
"custom_code_upload_location = 's3://<bucket-name>/customcode'\n",
"#Bucket location where results of model training are saved.\n",
"model_artifacts_location = 's3://<<bucket-name>>/artifacts'\n",
"model_artifacts_location = 's3://<bucket-name>/artifacts'\n",
"role='<your IM execution role here>'"
]
},
Expand Down
8 changes: 5 additions & 3 deletions im-python-sdk/tensorflow_iris/tf_iris.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,15 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"isConfigCell": true
},
"outputs": [],
"source": [
"#Bucket location to save your custom code in tar.gz format.\n",
"custom_code_upload_location = 's3://<<bucket-name>>/customcode'\n",
"custom_code_upload_location = 's3://<bucket-name>/customcode'\n",
"#Bucket location where results of model training are saved.\n",
"model_artifacts_location = 's3://<<bucket-name>>/artifacts'\n",
"model_artifacts_location = 's3://<bucket-name>/artifacts'\n",
"role='<your IM execution role here>'"
]
},
Expand Down

0 comments on commit e5b2c24

Please sign in to comment.