├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── Allfiles └── Labs │ ├── 01-preprocess-data │ ├── 01-process-data.ipynb │ └── script │ │ ├── data │ │ ├── airlines_raw.csv │ │ ├── airports.csv │ │ └── carriers.csv │ │ └── preprocess-rapids.py │ ├── 02-train-model │ ├── 01-train-model.ipynb │ └── script │ │ └── train.py │ └── 03-deploy-model │ ├── 01-invoke-endpoint.ipynb │ ├── create-triton-model.yaml │ ├── densenet_labels.txt │ ├── models │ └── model_1 │ │ └── 1 │ │ └── model.onnx │ ├── test-images │ ├── test-image01.jpg │ ├── test-image02.jpg │ └── test-image03.jpg │ └── triton_densenet_scoring.py ├── Instructions ├── 00-set-up.md ├── 01-preprocess-data-rapids.md ├── 02-train-model-pytorch.md ├── 03-deploy-triton.md └── media │ ├── 03-01-model-page.png │ └── 03-02-model-deploy.png ├── LICENSE ├── _build.yml ├── _config.yml ├── index.md └── readme.md /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Allfiles/Labs/01-preprocess-data/01-process-data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/Allfiles/Labs/01-preprocess-data/01-process-data.ipynb -------------------------------------------------------------------------------- /Allfiles/Labs/01-preprocess-data/script/data/airlines_raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/Allfiles/Labs/01-preprocess-data/script/data/airlines_raw.csv -------------------------------------------------------------------------------- /Allfiles/Labs/01-preprocess-data/script/data/airports.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/Allfiles/Labs/01-preprocess-data/script/data/airports.csv -------------------------------------------------------------------------------- /Allfiles/Labs/01-preprocess-data/script/data/carriers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/Allfiles/Labs/01-preprocess-data/script/data/carriers.csv -------------------------------------------------------------------------------- /Allfiles/Labs/01-preprocess-data/script/preprocess-rapids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/Allfiles/Labs/01-preprocess-data/script/preprocess-rapids.py -------------------------------------------------------------------------------- /Allfiles/Labs/02-train-model/01-train-model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/Allfiles/Labs/02-train-model/01-train-model.ipynb -------------------------------------------------------------------------------- /Allfiles/Labs/02-train-model/script/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/Allfiles/Labs/02-train-model/script/train.py -------------------------------------------------------------------------------- /Allfiles/Labs/03-deploy-model/01-invoke-endpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/Allfiles/Labs/03-deploy-model/01-invoke-endpoint.ipynb -------------------------------------------------------------------------------- /Allfiles/Labs/03-deploy-model/create-triton-model.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/Allfiles/Labs/03-deploy-model/create-triton-model.yaml -------------------------------------------------------------------------------- /Allfiles/Labs/03-deploy-model/densenet_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/Allfiles/Labs/03-deploy-model/densenet_labels.txt -------------------------------------------------------------------------------- /Allfiles/Labs/03-deploy-model/models/model_1/1/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/Allfiles/Labs/03-deploy-model/models/model_1/1/model.onnx -------------------------------------------------------------------------------- /Allfiles/Labs/03-deploy-model/test-images/test-image01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/Allfiles/Labs/03-deploy-model/test-images/test-image01.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/03-deploy-model/test-images/test-image02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/Allfiles/Labs/03-deploy-model/test-images/test-image02.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/03-deploy-model/test-images/test-image03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/Allfiles/Labs/03-deploy-model/test-images/test-image03.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/03-deploy-model/triton_densenet_scoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/Allfiles/Labs/03-deploy-model/triton_densenet_scoring.py -------------------------------------------------------------------------------- /Instructions/00-set-up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/Instructions/00-set-up.md -------------------------------------------------------------------------------- /Instructions/01-preprocess-data-rapids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/Instructions/01-preprocess-data-rapids.md -------------------------------------------------------------------------------- /Instructions/02-train-model-pytorch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/Instructions/02-train-model-pytorch.md -------------------------------------------------------------------------------- /Instructions/03-deploy-triton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/Instructions/03-deploy-triton.md -------------------------------------------------------------------------------- /Instructions/media/03-01-model-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/Instructions/media/03-01-model-page.png -------------------------------------------------------------------------------- /Instructions/media/03-02-model-deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/Instructions/media/03-02-model-deploy.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/LICENSE -------------------------------------------------------------------------------- /_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/_build.yml -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/_config.yml -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/index.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-deep-learning/HEAD/readme.md --------------------------------------------------------------------------------