diff --git a/backend/src/apiserver/config/sample_config.json b/backend/src/apiserver/config/sample_config.json index a0830c173cd..341125492e6 100644 --- a/backend/src/apiserver/config/sample_config.json +++ b/backend/src/apiserver/config/sample_config.json @@ -9,6 +9,11 @@ "description": "[source code](https://github.com/kubeflow/pipelines/tree/master/samples/core/parameterized_tfx_oss) [GCP Permission requirements](https://github.com/kubeflow/pipelines/blob/master/samples/core/parameterized_tfx_oss#permission). Example pipeline that does classification with model analysis based on a public tax cab dataset.", "file": "/samples/core/parameterized_tfx_oss/parameterized_tfx_oss.py.yaml" }, + { + "name": "[Demo] TFX - Iris classification pipeline", + "description": "[source code](https://github.com/kubeflow/pipelines/tree/master/samples/core/iris). Example pipeline that classifies Iris flower subspecies and how to use native Keras within TFX.", + "file": "/samples/core/iris/iris.py.yaml" + }, { "name": "[Tutorial] Data passing in python components", "description": "[source code](https://github.com/kubeflow/pipelines/tree/master/samples/tutorials/Data%20passing%20in%20python%20components) Shows how to pass data between python components.", @@ -18,10 +23,5 @@ "name": "[Tutorial] DSL - Control structures", "description": "[source code](https://github.com/kubeflow/pipelines/tree/master/samples/tutorials/DSL%20-%20Control%20structures) Shows how to use conditional execution and exit handlers. This pipeline will randomly fail to demonstrate that the exit handler gets executed even in case of failure.", "file": "/samples/tutorials/DSL - Control structures/DSL - Control structures.py.yaml" - }, - { - "name": "[Demo] TFX - Iris classification pipeline", - "description": "[source code](https://github.com/kubeflow/pipelines/tree/master/samples/core/iris). Example pipeline that classifies Iris flower subspecies and how to use native Keras within TFX.", - "file": "/samples/core/iris/iris.py.yaml" } ] diff --git a/frontend/src/config/sample_config_from_backend.json b/frontend/src/config/sample_config_from_backend.json index 534f6ad5193..c314faef09b 100644 --- a/frontend/src/config/sample_config_from_backend.json +++ b/frontend/src/config/sample_config_from_backend.json @@ -1,7 +1,7 @@ [ "[Demo] XGBoost - Training with confusion matrix", "[Demo] TFX - Taxi tip prediction model trainer", + "[Demo] TFX - Iris classification pipeline", "[Tutorial] Data passing in python components", - "[Tutorial] DSL - Control structures", - "[Demo] TFX - Iris classification pipeline" + "[Tutorial] DSL - Control structures" ] diff --git a/frontend/src/pages/GettingStarted.test.tsx b/frontend/src/pages/GettingStarted.test.tsx index c1820be517a..c3da858aeb4 100644 --- a/frontend/src/pages/GettingStarted.test.tsx +++ b/frontend/src/pages/GettingStarted.test.tsx @@ -73,9 +73,24 @@ describe('GettingStarted page', () => {

Demos - Try an end-to-end demonstration pipeline.