Skip to content

Commit

Permalink
Fixed typo: Replaced cencus with census (#937)
Browse files Browse the repository at this point in the history
Fixes #936
  • Loading branch information
Ark-kun authored Mar 7, 2019
1 parent 7243ded commit cfd50fb
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions components/gcp/ml_engine/batch_predict/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ compiler.Compiler().compile(pipeline_func, pipeline_filename)
#Specify pipeline argument values
arguments = {
'project_id': PROJECT_ID,
'model_path': 'gs://ml-pipeline-playground/samples/ml_engine/cencus/trained_model/',
'input_paths': '["gs://ml-pipeline-playground/samples/ml_engine/cencus/test.json"]',
'model_path': 'gs://ml-pipeline-playground/samples/ml_engine/census/trained_model/',
'input_paths': '["gs://ml-pipeline-playground/samples/ml_engine/census/test.json"]',
'input_data_format': 'JSON',
'output_path': GCS_WORKING_DIR + '/batch_predict/output/',
'region': 'us-central1',
Expand Down
4 changes: 2 additions & 2 deletions components/gcp/ml_engine/batch_predict/sample.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@
"#Specify pipeline argument values\n",
"arguments = {\n",
" 'project_id': PROJECT_ID,\n",
" 'model_path': 'gs://ml-pipeline-playground/samples/ml_engine/cencus/trained_model/',\n",
" 'input_paths': '[\"gs://ml-pipeline-playground/samples/ml_engine/cencus/test.json\"]',\n",
" 'model_path': 'gs://ml-pipeline-playground/samples/ml_engine/census/trained_model/',\n",
" 'input_paths': '[\"gs://ml-pipeline-playground/samples/ml_engine/census/test.json\"]',\n",
" 'input_data_format': 'JSON',\n",
" 'output_path': GCS_WORKING_DIR + '/batch_predict/output/',\n",
" 'region': 'us-central1',\n",
Expand Down
2 changes: 1 addition & 1 deletion components/gcp/ml_engine/deploy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ compiler.Compiler().compile(pipeline_func, pipeline_filename)
```python
#Specify pipeline argument values
arguments = {
'model_uri': 'gs://ml-pipeline-playground/samples/ml_engine/cencus/trained_model/',
'model_uri': 'gs://ml-pipeline-playground/samples/ml_engine/census/trained_model/',
'project_id': PROJECT_ID,
'model_id': 'kfp_sample_model',
'runtime_version': '1.10',
Expand Down
2 changes: 1 addition & 1 deletion components/gcp/ml_engine/deploy/sample.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
"source": [
"#Specify pipeline argument values\n",
"arguments = {\n",
" 'model_uri': 'gs://ml-pipeline-playground/samples/ml_engine/cencus/trained_model/',\n",
" 'model_uri': 'gs://ml-pipeline-playground/samples/ml_engine/census/trained_model/',\n",
" 'project_id': PROJECT_ID,\n",
" 'model_id': 'kfp_sample_model',\n",
" 'runtime_version': '1.10',\n",
Expand Down
2 changes: 1 addition & 1 deletion components/gcp/ml_engine/train/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ arguments = {
'project_id': PROJECT_ID,
'python_module': 'trainer.task',
'package_uris': json.dumps([
'gs://ml-pipeline-playground/samples/ml_engine/cencus/trainer.tar.gz'
'gs://ml-pipeline-playground/samples/ml_engine/census/trainer.tar.gz'
]),
'region': 'us-central1',
'args': json.dumps([
Expand Down
2 changes: 1 addition & 1 deletion components/gcp/ml_engine/train/sample.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
" 'project_id': PROJECT_ID,\n",
" 'python_module': 'trainer.task',\n",
" 'package_uris': json.dumps([\n",
" 'gs://ml-pipeline-playground/samples/ml_engine/cencus/trainer.tar.gz'\n",
" 'gs://ml-pipeline-playground/samples/ml_engine/census/trainer.tar.gz'\n",
" ]),\n",
" 'region': 'us-central1',\n",
" 'args': json.dumps([\n",
Expand Down

0 comments on commit cfd50fb

Please sign in to comment.