-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix ExternalArtifact behavior * update zenml-ref * fix ref name * YAML based template configuration * update docs * fix config * verbose tests output * verbose tests output * no fail fast * verbose tests output * bump timeouts for mlflow * try replace * testing inside python * restore test flow * update requirements * properly skip macos * revert ref
- Loading branch information
1 parent
d4d52f9
commit 80aaa6c
Showing
22 changed files
with
328 additions
and
347 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
## Describe changes | ||
I implemented/fixed _ to achieve _. | ||
|
||
## Pre-requisites | ||
Please ensure you have done the following: | ||
- [ ] If my change requires a change to docs, I have updated the documentation accordingly. | ||
- [ ] I have added tests to cover my changes. | ||
- [ ] I have updated `ref-zenml` in `.github/workflows/ci.yml` accordingly (if you don't know - `main` would be a solid choice) | ||
|
||
## Types of changes | ||
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> | ||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to change) | ||
- [ ] Other (add details above) | ||
|
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
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 |
---|---|---|
@@ -1,2 +1 @@ | ||
copier | ||
jinja2-time | ||
zenml[templates] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,78 @@ | ||
# {% include 'template/license_header' %} | ||
|
||
settings: | ||
docker: | ||
requirements: | ||
- aws | ||
{%- if data_quality_checks %} | ||
- evidently | ||
{%- endif %} | ||
- kubeflow | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
avishniakov
Author
Contributor
|
||
- kubernetes | ||
- mlflow | ||
- sklearn | ||
- slack | ||
extra: | ||
mlflow_model_name: e2e_use_case_model | ||
{%- if target_environment == 'production' %} | ||
target_env: Production | ||
{%- else %} | ||
target_env: Staging | ||
{%- endif %} | ||
notify_on_success: False | ||
notify_on_failure: True | ||
{%- if hyperparameters_tuning %} | ||
# This set contains all the models 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 | ||
{%- else %} | ||
# This model configuration will be used for the training stage. | ||
model_configuration: | ||
model_package: sklearn.tree | ||
model_class: DecisionTreeClassifier | ||
params: | ||
criterion: gini | ||
max_depth: 5 | ||
min_samples_leaf: 3 | ||
{%- endif %} |
Oops, something went wrong.
@avishniakov I believe this leads to a failed image build because
kubeflow
is the name of a zenml integration and not the name of a pypi packageI do not believe these requirements are passed through the integration
-->
pypi package mapping.