-
Notifications
You must be signed in to change notification settings - Fork 1.1k
added toggle for evaluation step #152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
261e9da
added toggle for evaluation step
sudivate ba26bc1
added param to varriables list
sudivate c1bee1c
corrected to matrices
sudivate b6732da
resolved linting
sudivate 88b99ae
removed duplicate
sudivate a3f02f9
resolved linting
sudivate 39207d6
resolved linting
sudivate 41f4456
Merge branch 'master' of https://github.com/microsoft/MLOpsPython int…
sudivate 1701c0d
added overide switch to cancellation
sudivate ef95fa9
added override cancellation flag
sudivate 43d0824
reversed the condition on runevaluation flag
sudivate 45a94b0
renamed variable
sudivate 3821a42
reversed he coonditon on override run
sudivate 9652e00
renamed variable for test
sudivate 21739c7
Update proper build badge
dtzar f46947f
added default value to env vars
sudivate e5d1566
Merge branch 'sudivate/eval-switch' of https://github.com/microsoft/M…
sudivate 9235f40
defined parameter
sudivate b63c489
added variable
sudivate 8aa3865
corrected comment
sudivate e6c2bde
renamed flags
sudivate bb100d6
updated variable name
sudivate f92b897
added to message
sudivate 2c9392b
addded exception for long line
sudivate 3bcdc93
set the default to true
sudivate fdf3f27
Edited comments
sudivate File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,44 +1,49 @@ | ||
| variables: | ||
| # Azure ML Workspace Variables | ||
| - name: EXPERIMENT_NAME | ||
| value: mlopspython | ||
| # AML Compute Cluster Config | ||
| - name: AML_COMPUTE_CLUSTER_CPU_SKU | ||
| value: STANDARD_DS2_V2 | ||
| - name: AML_COMPUTE_CLUSTER_NAME | ||
| value: train-cluster | ||
| - name: AML_CLUSTER_MIN_NODES | ||
| value: 0 | ||
| - name: AML_CLUSTER_MAX_NODES | ||
| value: 4 | ||
| - name: AML_CLUSTER_PRIORITY | ||
| value: lowpriority | ||
| # Training Config | ||
| - name: BUILD_TRAIN_SCRIPT | ||
| value: diabetes_regression_build_train_pipeline.py | ||
| - name: TRAIN_SCRIPT_PATH | ||
| value: training/train.py | ||
| - name: MODEL_NAME | ||
| value: sklearn_regression_model.pkl | ||
| - name: MODEL_VERSION | ||
| value: '1' | ||
| # AML Pipeline Config | ||
| - name: TRAINING_PIPELINE_NAME | ||
| value: 'diabetes-Training-Pipeline' | ||
| - name: MODEL_PATH | ||
| value: '' | ||
| - name: EVALUATE_SCRIPT_PATH | ||
| value: evaluate/evaluate_model.py | ||
| - name: REGISTER_SCRIPT_PATH | ||
| value: register/register_model.py | ||
| - name: SOURCES_DIR_TRAIN | ||
| value: diabetes_regression | ||
| - name: IMAGE_NAME | ||
| value: 'diabetestrained' | ||
| # Optional. Used by a training pipeline with R on Databricks | ||
| - name: DB_CLUSTER_ID | ||
| value: '' | ||
| - name: SCORE_SCRIPT | ||
| value: score.py | ||
| - name: DATASET_NAME | ||
| value: diabetes_ds | ||
| - name: EXPERIMENT_NAME | ||
| value: mlopspython | ||
| # AML Compute Cluster Config | ||
| - name: AML_COMPUTE_CLUSTER_CPU_SKU | ||
| value: STANDARD_DS2_V2 | ||
| - name: AML_COMPUTE_CLUSTER_NAME | ||
| value: train-cluster | ||
| - name: AML_CLUSTER_MIN_NODES | ||
| value: 0 | ||
| - name: AML_CLUSTER_MAX_NODES | ||
| value: 4 | ||
| - name: AML_CLUSTER_PRIORITY | ||
| value: lowpriority | ||
| # Training Config | ||
| - name: BUILD_TRAIN_SCRIPT | ||
| value: diabetes_regression_build_train_pipeline.py | ||
| - name: TRAIN_SCRIPT_PATH | ||
| value: training/train.py | ||
| - name: MODEL_NAME | ||
| value: sklearn_regression_model.pkl | ||
| - name: MODEL_VERSION | ||
| value: "1" | ||
| # AML Pipeline Config | ||
| - name: TRAINING_PIPELINE_NAME | ||
| value: "diabetes-Training-Pipeline" | ||
| - name: MODEL_PATH | ||
| value: "" | ||
| - name: EVALUATE_SCRIPT_PATH | ||
| value: evaluate/evaluate_model.py | ||
| - name: REGISTER_SCRIPT_PATH | ||
| value: register/register_model.py | ||
| - name: SOURCES_DIR_TRAIN | ||
| value: diabetes_regression | ||
| - name: IMAGE_NAME | ||
| value: "diabetestrained" | ||
| # Optional. Used by a training pipeline with R on Databricks | ||
| - name: DB_CLUSTER_ID | ||
| value: "" | ||
| - name: SCORE_SCRIPT | ||
| value: score.py | ||
| - name: DATASET_NAME | ||
| value: diabetes_ds | ||
| # These are the default values set in ml_service\util\env_variables.py. Uncomment and override if desired. | ||
| # - name: RUN_EVALUATION | ||
| # value: "true" | ||
| # - name: ALLOW_RUN_CANCEL | ||
| # value: "true" |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.