├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Lab329 ├── LocalFoundryEnv │ └── inference_model.json ├── Notebook │ ├── 01.AzureML_Distillation.ipynb │ ├── 02.AzureML_FineTuningAndConvertByMSOlive.ipynb │ ├── 03.AzureML_RuningByORTGenAI.ipynb │ ├── 04.AzureML_RegisterToAzureML.ipynb │ ├── 05.Local_Download.ipynb │ ├── 06.Local_Inference.ipynb │ ├── 07.Local_inference_AIFoundry.ipynb │ ├── conda.yml │ └── sample.env └── README.md ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── azure.yaml ├── deployment.md ├── img ├── banner.jpg └── temp.txt ├── infra ├── abbreviations.json ├── ai-project.bicep ├── main.bicep └── main.parameters.json └── lab_manual ├── Skillable_lab_manual1.md ├── Skillable_lab_manual2.md ├── Skillable_lab_manual3.md ├── Skillable_lab_manual4.md ├── Skillable_lab_manual5.md ├── Skillable_lab_manual6.md ├── Skillable_lab_manual7.md ├── Skillable_lab_manualconclusion.md ├── Skillable_lab_manualintro.md ├── distillation_lab_manual.md ├── images ├── ML_Studio.png ├── ML_Terminal.png ├── Notebook_Terminal.png ├── Notebooks_Menu.png ├── Skillable_Burger_Menu.png ├── classroom.jpeg ├── localenv.png ├── overview.png ├── step-1.png ├── step-2.png ├── step-3.png ├── step-4.png └── steps.png ├── readme.md └── setup_instructions.md /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/LICENSE -------------------------------------------------------------------------------- /Lab329/LocalFoundryEnv/inference_model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/Lab329/LocalFoundryEnv/inference_model.json -------------------------------------------------------------------------------- /Lab329/Notebook/01.AzureML_Distillation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/Lab329/Notebook/01.AzureML_Distillation.ipynb -------------------------------------------------------------------------------- /Lab329/Notebook/02.AzureML_FineTuningAndConvertByMSOlive.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/Lab329/Notebook/02.AzureML_FineTuningAndConvertByMSOlive.ipynb -------------------------------------------------------------------------------- /Lab329/Notebook/03.AzureML_RuningByORTGenAI.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/Lab329/Notebook/03.AzureML_RuningByORTGenAI.ipynb -------------------------------------------------------------------------------- /Lab329/Notebook/04.AzureML_RegisterToAzureML.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/Lab329/Notebook/04.AzureML_RegisterToAzureML.ipynb -------------------------------------------------------------------------------- /Lab329/Notebook/05.Local_Download.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/Lab329/Notebook/05.Local_Download.ipynb -------------------------------------------------------------------------------- /Lab329/Notebook/06.Local_Inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/Lab329/Notebook/06.Local_Inference.ipynb -------------------------------------------------------------------------------- /Lab329/Notebook/07.Local_inference_AIFoundry.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/Lab329/Notebook/07.Local_inference_AIFoundry.ipynb -------------------------------------------------------------------------------- /Lab329/Notebook/conda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/Lab329/Notebook/conda.yml -------------------------------------------------------------------------------- /Lab329/Notebook/sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/Lab329/Notebook/sample.env -------------------------------------------------------------------------------- /Lab329/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/Lab329/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/azure.yaml -------------------------------------------------------------------------------- /deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/deployment.md -------------------------------------------------------------------------------- /img/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/img/banner.jpg -------------------------------------------------------------------------------- /img/temp.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /infra/abbreviations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/infra/abbreviations.json -------------------------------------------------------------------------------- /infra/ai-project.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/infra/ai-project.bicep -------------------------------------------------------------------------------- /infra/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/infra/main.bicep -------------------------------------------------------------------------------- /infra/main.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/infra/main.parameters.json -------------------------------------------------------------------------------- /lab_manual/Skillable_lab_manual1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/Skillable_lab_manual1.md -------------------------------------------------------------------------------- /lab_manual/Skillable_lab_manual2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/Skillable_lab_manual2.md -------------------------------------------------------------------------------- /lab_manual/Skillable_lab_manual3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/Skillable_lab_manual3.md -------------------------------------------------------------------------------- /lab_manual/Skillable_lab_manual4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/Skillable_lab_manual4.md -------------------------------------------------------------------------------- /lab_manual/Skillable_lab_manual5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/Skillable_lab_manual5.md -------------------------------------------------------------------------------- /lab_manual/Skillable_lab_manual6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/Skillable_lab_manual6.md -------------------------------------------------------------------------------- /lab_manual/Skillable_lab_manual7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/Skillable_lab_manual7.md -------------------------------------------------------------------------------- /lab_manual/Skillable_lab_manualconclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/Skillable_lab_manualconclusion.md -------------------------------------------------------------------------------- /lab_manual/Skillable_lab_manualintro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/Skillable_lab_manualintro.md -------------------------------------------------------------------------------- /lab_manual/distillation_lab_manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/distillation_lab_manual.md -------------------------------------------------------------------------------- /lab_manual/images/ML_Studio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/images/ML_Studio.png -------------------------------------------------------------------------------- /lab_manual/images/ML_Terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/images/ML_Terminal.png -------------------------------------------------------------------------------- /lab_manual/images/Notebook_Terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/images/Notebook_Terminal.png -------------------------------------------------------------------------------- /lab_manual/images/Notebooks_Menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/images/Notebooks_Menu.png -------------------------------------------------------------------------------- /lab_manual/images/Skillable_Burger_Menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/images/Skillable_Burger_Menu.png -------------------------------------------------------------------------------- /lab_manual/images/classroom.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/images/classroom.jpeg -------------------------------------------------------------------------------- /lab_manual/images/localenv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/images/localenv.png -------------------------------------------------------------------------------- /lab_manual/images/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/images/overview.png -------------------------------------------------------------------------------- /lab_manual/images/step-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/images/step-1.png -------------------------------------------------------------------------------- /lab_manual/images/step-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/images/step-2.png -------------------------------------------------------------------------------- /lab_manual/images/step-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/images/step-3.png -------------------------------------------------------------------------------- /lab_manual/images/step-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/images/step-4.png -------------------------------------------------------------------------------- /lab_manual/images/steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/images/steps.png -------------------------------------------------------------------------------- /lab_manual/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/readme.md -------------------------------------------------------------------------------- /lab_manual/setup_instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Build25-LAB329/HEAD/lab_manual/setup_instructions.md --------------------------------------------------------------------------------