-
Notifications
You must be signed in to change notification settings - Fork 446
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Prepare 0.46.1 release * Auto-update of E2E template --------- Co-authored-by: GitHub Actions <actions@github.com>
- Loading branch information
1 parent
4076cee
commit dcec2d0
Showing
32 changed files
with
876 additions
and
152 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,44 @@ | ||
# Apache Software License 2.0 | ||
# | ||
# Copyright (c) ZenML GmbH 2023. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
# environment configuration | ||
settings: | ||
docker: | ||
required_integrations: | ||
- aws | ||
- evidently | ||
- kubeflow | ||
- kubernetes | ||
- mlflow | ||
- sklearn | ||
- slack | ||
|
||
# configuration of steps | ||
steps: | ||
notify_on_success: | ||
parameters: | ||
notify_on_success: False | ||
|
||
# configuration of the Model Control Plane | ||
model_config: | ||
name: e2e_use_case | ||
version: staging | ||
|
||
# pipeline level extra configurations | ||
extra: | ||
notify_on_failure: True | ||
|
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,44 @@ | ||
# Apache Software License 2.0 | ||
# | ||
# Copyright (c) ZenML GmbH 2023. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
# environment configuration | ||
settings: | ||
docker: | ||
required_integrations: | ||
- aws | ||
- evidently | ||
- kubeflow | ||
- kubernetes | ||
- mlflow | ||
- sklearn | ||
- slack | ||
|
||
# configuration of steps | ||
steps: | ||
notify_on_success: | ||
parameters: | ||
notify_on_success: False | ||
|
||
# configuration of the Model Control Plane | ||
model_config: | ||
name: e2e_use_case | ||
version: staging | ||
|
||
# pipeline level extra configurations | ||
extra: | ||
notify_on_failure: True | ||
|
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,112 @@ | ||
# Apache Software License 2.0 | ||
# | ||
# Copyright (c) ZenML GmbH 2023. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
# environment configuration | ||
settings: | ||
docker: | ||
required_integrations: | ||
- aws | ||
- evidently | ||
- kubeflow | ||
- kubernetes | ||
- mlflow | ||
- sklearn | ||
- slack | ||
|
||
# configuration of steps | ||
steps: | ||
model_trainer: | ||
parameters: | ||
name: e2e_use_case | ||
compute_performance_metrics_on_current_data: | ||
parameters: | ||
target_env: staging | ||
promote_with_metric_compare: | ||
parameters: | ||
mlflow_model_name: e2e_use_case | ||
target_env: staging | ||
notify_on_success: | ||
parameters: | ||
notify_on_success: False | ||
|
||
# configuration of the Model Control Plane | ||
model_config: | ||
name: e2e_use_case | ||
license: apache | ||
description: e2e_use_case E2E Batch Use Case | ||
audience: All ZenML users | ||
use_cases: | | ||
The ZenML E2E project project demonstrates how the most important steps of | ||
the ML Production Lifecycle can be implemented in a reusable way remaining | ||
agnostic to the underlying infrastructure, and shows how to integrate them together | ||
into pipelines for Training and Batch Inference purposes. | ||
ethics: No impact. | ||
tags: | ||
- e2e | ||
- batch | ||
- sklearn | ||
- from template | ||
- ZenML delivered | ||
create_new_model_version: true | ||
|
||
# pipeline level extra configurations | ||
extra: | ||
notify_on_failure: True | ||
# This set contains all the model configurations that you want | ||
# to evaluate during hyperparameter tuning stage. | ||
model_search_space: | ||
random_forest: | ||
model_package: sklearn.ensemble | ||
model_class: RandomForestClassifier | ||
search_grid: | ||
criterion: | ||
- gini | ||
- entropy | ||
max_depth: | ||
- 2 | ||
- 4 | ||
- 6 | ||
- 8 | ||
- 10 | ||
- 12 | ||
min_samples_leaf: | ||
range: | ||
start: 1 | ||
end: 10 | ||
n_estimators: | ||
range: | ||
start: 50 | ||
end: 500 | ||
step: 25 | ||
decision_tree: | ||
model_package: sklearn.tree | ||
model_class: DecisionTreeClassifier | ||
search_grid: | ||
criterion: | ||
- gini | ||
- entropy | ||
max_depth: | ||
- 2 | ||
- 4 | ||
- 6 | ||
- 8 | ||
- 10 | ||
- 12 | ||
min_samples_leaf: | ||
range: | ||
start: 1 | ||
end: 10 |
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
Oops, something went wrong.