[Lesson 19] Add Introduction

pull/59/head
Amagash 3 years ago
parent 54849c8eeb
commit 66252e9fc4

@ -1,9 +1,42 @@
# Data Science in the Cloud: TBD
# Data Science in the Cloud: The "Azure ML SDK" way
Table of contents:
- [Data Science in the Cloud: The "Azure ML SDK" way](#data-science-in-the-cloud-the-azure-ml-sdk-way)
- [Pre-Lecture Quiz](#pre-lecture-quiz)
- [1. Introduction](#1-introduction)
- [1.1 What is Azure ML SDK?](#11-what-is-azure-ml-sdk)
- [🚀 Challenge](#-challenge)
- [Post-Lecture Quiz](#post-lecture-quiz)
- [Review & Self Study](#review--self-study)
- [Assignment](#assignment)
## Pre-Lecture Quiz
[Pre-lecture quiz]()
## 1. Introduction
### 1.1 What is Azure ML SDK?
Data scientists and AI developers use the Azure Machine Learning SDK to build and run machine learning workflows with the Azure Machine Learning service. You can interact with the service in any Python environment, including Jupyter Notebooks, Visual Studio Code, or your favorite Python IDE.
Key areas of the SDK include:
- Explore, prepare and manage the lifecycle of your datasets used in machine learning experiments.
- Manage cloud resources for monitoring, logging, and organizing your machine learning experiments.
- Train models either locally or by using cloud resources, including GPU-accelerated model training.
- Use automated machine learning, which accepts configuration parameters and training data. It automatically iterates through algorithms and hyperparameter settings to find the best model for running predictions.
- Deploy web services to convert your trained models into RESTful services that can be consumed in any application.
[Learn more about the Azure Machine Learning SDK](https://docs.microsoft.com/en-us/python/api/overview/azure/ml/?view=azure-ml-py)
In the [previous lesson](../18-tbd/README.md), we saw how to train, deploy and consume a model in a Low code/No code fashion. We used the Heart Failure dataset to generate and Heart failure prediction model. In this lesson, we are going to do the exact same thing but using the Azure Machine Learning SDK.
![project-schema](img/project-schema.PNG)
Check [here](../18-tbd/README.md) the Heart failure prediction project and dataset introduction.
## 🚀 Challenge

Binary file not shown.

After

Width:  |  Height:  |  Size: 120 KiB

Loading…
Cancel
Save