-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Compile samples instead of hard code them in API server (#76)
* compile samples * update logging * update description * update sample * add immediate value sample * revert * fail fast if the samples are failed to load * comment * address comments * comment out * update command * comments
- Loading branch information
1 parent
c7bb1ff
commit 7847b74
Showing
15 changed files
with
84 additions
and
2,377 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
[ | ||
{ | ||
"name":"[Sample] ML - XGBoost - Training with Confusion Matrix", | ||
"description":"A trainer that does end-to-end distributed training for XGBoost models. For source code, refer to https://github.com/kubeflow/pipelines/tree/master/samples/xgboost-spark", | ||
"file":"/samples/xgboost-spark/xgboost-training-cm.py.tar.gz" | ||
}, | ||
{ | ||
"name":"[Sample] ML - TFX - Taxi Tip Prediction Model Trainer", | ||
"description":"Example pipeline that does classification with model analysis based on a public tax cab BigQuery dataset. For source code, refer to https://github.com/kubeflow/pipelines/tree/master/samples/tfx", | ||
"file":"/samples/tfx/taxi-cab-classification-pipeline.py.tar.gz" | ||
}, | ||
{ | ||
"name":"[Sample] Basic - Sequential", | ||
"description":"A pipeline with two sequential steps. For source code, refer to https://github.com/kubeflow/pipelines/blob/master/samples/basic/sequential.py", | ||
"file":"/samples/basic/sequential.py.tar.gz" | ||
}, | ||
{ | ||
"name":"[Sample] Basic - Parallel Join", | ||
"description":"A pipeline that downloads two messages in parallel and print the concatenated result. For source code, refer to https://github.com/kubeflow/pipelines/blob/master/samples/basic/parallel_join.py", | ||
"file":"/samples/basic/parallel_join.py.tar.gz" | ||
}, | ||
{ | ||
"name":"[Sample] Basic - Immediate Value", | ||
"description":"A pipeline with parameter values hard coded. For source code, refer to https://github.com/kubeflow/pipelines/blob/master/samples/basic/immediate_value.py", | ||
"file":"/samples/basic/immediate_value.py.tar.gz" | ||
}, | ||
{ | ||
"name":"[Sample] Basic - Exit Handler", | ||
"description":"A pipeline that downloads a message and print it out. Exit Handler will run at the end. For source code, refer to https://github.com/kubeflow/pipelines/blob/master/samples/basic/exit_handler.py", | ||
"file":"/samples/basic/exit_handler.py.tar.gz" | ||
}, | ||
{ | ||
"name":"[Sample] Basic - Condition", | ||
"description":"A pipeline shows how to use dsl.Condition. For source code, refer to https://github.com/kubeflow/pipelines/blob/master/samples/basic/condition.py", | ||
"file":"/samples/basic/condition.py.tar.gz" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.