Skip to content

Commit 48718f3

Browse files
authored
duplicate file paths and code snippet for file paths
1 parent c8c2824 commit 48718f3

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

docs/code_description.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,33 +2,33 @@
22

33
### Environment Setup
44

5-
- environment_setup/requirements.txt : It consist of list of python packages which are needed by the train.py to run successfully on host agent (locally).
5+
- `environment_setup/requirements.txt` : It consist of list of python packages which are needed by the train.py to run successfully on host agent (locally).
66

7-
- environment_setup/install_requirements.sh : This script prepare the python environment i.e. install the Azure ML SDK and the packages specified in requirements.txt
7+
- `environment_setup/install_requirements.sh` : This script prepare the python environment i.e. install the Azure ML SDK and the packages specified in requirements.txt
88

9-
- environment_setup/iac-*.yml, arm-templates: Infrastructure as Code piplines to create and delete required resources along with corresponding arm-templates.
9+
- `environment_setup/iac-*.yml, arm-templates` : Infrastructure as Code piplines to create and delete required resources along with corresponding arm-templates.
1010

11-
- environment_setup/Dockerfile : Dockerfile of a building agent containing Python 3.6 and all required packages.
11+
- `environment_setup/Dockerfile` : Dockerfile of a building agent containing Python 3.6 and all required packages.
1212

13-
- environment_setup/docker-image-pipeline.yml : An AzDo pipeline building and pushing [microsoft/mlopspython](https://hub.docker.com/_/microsoft-mlops-python) image.
13+
- `environment_setup/docker-image-pipeline.yml` : An AzDo pipeline building and pushing [microsoft/mlopspython](https://hub.docker.com/_/microsoft-mlops-python) image.
1414

1515
### Pipelines
1616

17-
- .pipelines/azdo-base-pipeline.yml : a pipeline template used by ci-build-train pipeline and pr-build-train pipelines. It contains steps performig linting, data and unit testing.
18-
- .pipelines/azdo-ci-build-train.yml : a pipeline triggered when the code is merged into **master**. It profrorms linting, data integrity testing, unit testing, building and publishing an ML pipeline.
19-
- .pipelines/azdo-pr-build-train.yml : a pipeline triggered when a **pull request** to the **master** branch is created. It profrorms linting, data integrity testing and unit testing only.
17+
- `.pipelines/azdo-base-pipeline.yml` : a pipeline template used by ci-build-train pipeline and pr-build-train pipelines. It contains steps performig linting, data and unit testing.
18+
- `.pipelines/azdo-ci-build-train.yml` : a pipeline triggered when the code is merged into **master**. It profrorms linting, data integrity testing, unit testing, building and publishing an ML pipeline.
19+
- `.pipelines/azdo-pr-build-train.yml` : a pipeline triggered when a **pull request** to the **master** branch is created. It profrorms linting, data integrity testing and unit testing only.
2020

2121
### ML Services
2222

23-
- ml_service/pipelines/build_train_pipeline.py : builds and publishes an ML training pipeline.
24-
- ml_service/pipelines/run_train_pipeline.py : invokes a published ML training pipeline via REST API.
25-
- ml_service/util : contains common utility functions used to build and publish an ML training pipeline.
23+
- `ml_service/pipelines/build_train_pipeline.py` : builds and publishes an ML training pipeline.
24+
- `ml_service/pipelines/run_train_pipeline.py` : invokes a published ML training pipeline via REST API.
25+
- `ml_service/util` : contains common utility functions used to build and publish an ML training pipeline.
2626

2727
### Code
2828

29-
- code/training/train.py : a training step of an ML training pipeline.
30-
- code/evaluate/evaluate_model.py : an evaluating step of an ML training pipeline.
31-
- code/evaluate/evaluate_model.py : registers a new trained model if evaluation shows the new model is more performent than the previous one.
29+
- `code/training/train.py` : a training step of an ML training pipeline.
30+
- `code/evaluate/evaluate_model.py` : an evaluating step of an ML training pipeline.
31+
- `code/evaluate/register_model.py` : registers a new trained model if evaluation shows the new model is more performent than the previous one.
3232

3333
### Scoring
3434
- code/scoring/score.py : a scoring script which is about to be packed into a Docker Image along with a model while being deployed to QA/Prod environment.

0 commit comments

Comments
 (0)