Skip to content

Tags: YiYangabc/MLOpsPython

Tags

129507

Toggle 129507's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add an env var flag to recreate AMLS Environment (microsoft#230)

129243

Toggle 129243's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Added get_latest_model method (microsoft#231)

128836

Toggle 128836's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
added abtest.yml to bootstrapping (microsoft#233)

128446

Toggle 128446's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Improve Canary guide and add prerequisites (microsoft#225)

127795

Toggle 127795's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Canary pipeline fixes (microsoft#224)

* Add vars template to canary pipeline

* Enable ACR authentication on AKS using a service principal
- Upgrade helm version to 3.1.1
- Remove ACR secret from the abtest-model deployment

127197

Toggle 127197's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
rename config.json to parameters.json (microsoft#223)

AML workspace configuration files are named"config.json" by default, so renaming the file containing training parameters to "parameters.json" to avoid confusion.

126738

Toggle 126738's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
README refactor (microsoft#220)

* Minor README fixes
- Whitespace fixes
- Grammar fixes
- Ported some wording from Getting Started

* Factor out architecture details to dedicated architecture article
We don't need to go through the architecture in detail here. There's an
entire article dedicated to it. A separate change will be needed for the
article.

* Remove architecture diagram from README

126711

Toggle 126711's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix import (microsoft#222)

Fix of importing Dataset, Datastore, Workspace

126539

Toggle 126539's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Proposal: split train.py into train.py and train_aml.py (microsoft#219)

This change splits train.py into two files.

The new train.py is standalone, and has no references to AzureML. It defines three functions, split_data to split a dataframe into test/train data, and train_model which takes the test/train data and a parameter object and trains the model, and get_model_metrics, which evaluates metrics about the model. The script can be run locally, in which case it loads a dataset from a file.

The second file, train_aml.py contains reasonably general AzureML logic. It reads data from a dataset, then calls the split_data function from train.py. It loads input parameters from a config file and logs them, then calls train_model from train.py. It then uploads the model and logs any metrics returned by get_model_metrics.

The hope with these changes is to demonstrate a simple interface for integrating an existing ML script with MLOpsPython, as well as providing an example for how the core ML functionality can be invoked in multiple ways for development purposes.

Co-authored-by: Bryan J Smith <[email protected]>

126385

Toggle 126385's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Getting Started fixes for the Variable Group section (microsoft#221)

Some fixes based on Eugene's feedback.
- Ordered the descriptions to match the table
- Added ACI description
- Added location description and link
- Fixed ACI acronym description

Additional changes
- Added a clarification that the variables with Azure resource names don't have to exist yet
- Removed 'diabetes' from the name of ACI and AKS deployments and switched to generic 'mlops' to match the other resource naming convention