Skip to content

Commit

Permalink
Renamed EXPERIMENT_NAME to experiment_name
Browse files Browse the repository at this point in the history
  • Loading branch information
Ark-kun committed Sep 19, 2019
1 parent 4d61bae commit 4f17ce3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions samples/core/component_build/component_build.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@
"outputs": [],
"source": [
"# Set your output and project. !!!Must Do before you can proceed!!!\n",
"EXPERIMENT_NAME = 'basic_component'\n",
"PROJECT_NAME = 'Your-Gcp-Project-Name' #'Your-GCP-Project-ID'\n",
"experiment_name = 'basic_component'\n",
"PROJECT_NAME = 'Your-Gcp-Project-Name' #'Your-GCP-Project-ID'\n"
]
},
{
Expand Down Expand Up @@ -110,9 +110,9 @@
"client = kfp.Client()\n",
"\n",
"try:\n",
" experiment = client.get_experiment(experiment_name=EXPERIMENT_NAME)\n",
" experiment = client.get_experiment(experiment_name=experiment_name)\n",
"except:\n",
" experiment = client.create_experiment(EXPERIMENT_NAME)"
" experiment = client.create_experiment(experiment_name)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion test/sample-test/configs/component_build.config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@

test_name: component_build
notebook_params:
EXPERIMENT_NAME: component_build-test
experiment_name: component_build-test
PROJECT_NAME: ml-pipeline-test

0 comments on commit 4f17ce3

Please sign in to comment.