mirror of https://github.com/kubeflow/examples.git
notebook cleanup (#679)
This commit is contained in:
parent
7a2977ef11
commit
91374e6d27
|
|
@ -141,11 +141,11 @@
|
||||||
"MODEL = 'model'\n",
|
"MODEL = 'model'\n",
|
||||||
"\n",
|
"\n",
|
||||||
"copydata_op = comp.load_component_from_url(\n",
|
"copydata_op = comp.load_component_from_url(\n",
|
||||||
" 'https://raw.githubusercontent.com/amygdala/kubeflow-examples/ghpl_update/github_issue_summarization/pipelines/components/t2t/datacopy_component.yaml' # pylint: disable=line-too-long\n",
|
" 'https://raw.githubusercontent.com/kubeflow/examples/master/github_issue_summarization/pipelines/components/t2t/datacopy_component.yaml' # pylint: disable=line-too-long\n",
|
||||||
" )\n",
|
" )\n",
|
||||||
"\n",
|
"\n",
|
||||||
"train_op = comp.load_component_from_url(\n",
|
"train_op = comp.load_component_from_url(\n",
|
||||||
" 'https://raw.githubusercontent.com/amygdala/kubeflow-examples/ghpl_update/github_issue_summarization/pipelines/components/t2t/train_component.yaml' # pylint: disable=line-too-long\n",
|
" 'https://raw.githubusercontent.com/kubeflow/examples/master/github_issue_summarization/pipelines/components/t2t/train_component.yaml' # pylint: disable=line-too-long\n",
|
||||||
" )\n",
|
" )\n",
|
||||||
"\n",
|
"\n",
|
||||||
"metadata_log_op = comp.load_component_from_url(\n",
|
"metadata_log_op = comp.load_component_from_url(\n",
|
||||||
|
|
@ -172,7 +172,7 @@
|
||||||
" description='Demonstrate Tensor2Tensor-based training and TF-Serving'\n",
|
" description='Demonstrate Tensor2Tensor-based training and TF-Serving'\n",
|
||||||
")\n",
|
")\n",
|
||||||
"def gh_summ( #pylint: disable=unused-argument\n",
|
"def gh_summ( #pylint: disable=unused-argument\n",
|
||||||
" train_steps: Integer = 2019300,\n",
|
" train_steps: 'Integer' = 2019300,\n",
|
||||||
" project: String = 'YOUR_PROJECT_HERE',\n",
|
" project: String = 'YOUR_PROJECT_HERE',\n",
|
||||||
" github_token: String = 'YOUR_GITHUB_TOKEN_HERE',\n",
|
" github_token: String = 'YOUR_GITHUB_TOKEN_HERE',\n",
|
||||||
" working_dir: GCSPath = 'YOUR_GCS_DIR_HERE',\n",
|
" working_dir: GCSPath = 'YOUR_GCS_DIR_HERE',\n",
|
||||||
|
|
@ -328,7 +328,7 @@
|
||||||
" description='Demonstrate Tensor2Tensor-based training and TF-Serving'\n",
|
" description='Demonstrate Tensor2Tensor-based training and TF-Serving'\n",
|
||||||
")\n",
|
")\n",
|
||||||
"def gh_summ2(\n",
|
"def gh_summ2(\n",
|
||||||
" train_steps: Integer = 2019300,\n",
|
" train_steps: 'Integer' = 2019300,\n",
|
||||||
" project: String = 'YOUR_PROJECT_HERE',\n",
|
" project: String = 'YOUR_PROJECT_HERE',\n",
|
||||||
" github_token: String = 'YOUR_GITHUB_TOKEN_HERE',\n",
|
" github_token: String = 'YOUR_GITHUB_TOKEN_HERE',\n",
|
||||||
" working_dir: GCSPath = 'YOUR_GCS_DIR_HERE',\n",
|
" working_dir: GCSPath = 'YOUR_GCS_DIR_HERE',\n",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue