Skip to content

Commit 4f4da08

Browse files
committed
Updated slides
1 parent 77b4091 commit 4f4da08

10 files changed

+62
-4
lines changed

part0_intro.ipynb

+10-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
"source": [
1515
"## Who am I?\n",
1616
"\n",
17+
"![IntroSlide](screens/SlideIntro.png)\n",
18+
"\n",
1719
"After 20+ years of software engineering and engineering management I now teach professionally and do many things including: \n",
1820
"\n",
1921
"- Teaching Software Development @ [Tech Elevator](https://TechElevator.com) in Columbus, OH\n",
@@ -38,7 +40,9 @@
3840
"source": [
3941
"## What's this talk about?\n",
4042
"\n",
41-
"**Machine Learning in Azure using Python**. Seems kinda obvious.\n",
43+
"Unsurprisingly, we're talking about **Machine Learning in Azure using Python**\n",
44+
"\n",
45+
"![Talk Goals](screens/SlideGoals.png)\n",
4246
"\n",
4347
"Some specific areas we'll cover:\n",
4448
"\n",
@@ -47,6 +51,10 @@
4751
"- Why would I even want to use Azure for this?\n",
4852
"- What does Python code look like for working with Azure?\n",
4953
"\n",
54+
"**Note:** Full source code for this talk is available at [https://github.com/IntegerMan/AutoMLwithPythonAndAzure](https://github.com/IntegerMan/AutoMLwithPythonAndAzure)\n",
55+
"\n",
56+
"---\n",
57+
"\n",
5058
"For the bulk of this talk, we'll explore a **regression experiment** on hockey penalty prediction from data exploration to automated machine learning to model deployment and consumption.\n",
5159
"\n",
5260
"We'll also look briefly at a prior **classification experiment** on Die Hard to see the types of metrics available when looking at classification experiments."
@@ -58,7 +66,7 @@
5866
"source": [
5967
"## Touring Azure Machine Learning Studio\n",
6068
"\n",
61-
"Let's take a look at Azure Machine Learning Studio to see what the Azure ML SDK allows us to automate.\n",
69+
"Let's take a look at [Azure Machine Learning Studio](https://portal.azure.com) to see what the Azure ML SDK allows us to automate.\n",
6270
"\n",
6371
"![](screens/AutoMLModelPerformance.png)"
6472
]

part2_automl_nhl_regression.ipynb

+1-1
Large diffs are not rendered by default.

part6_classification.ipynb

+1-1
Large diffs are not rendered by default.

part7_nextsteps.ipynb

+50
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
{
22
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"## Other Topics\n",
8+
"\n",
9+
"### Hyperdrive\n",
10+
"Hyperdrive lets you automatically tune hyperparameters for a script to maximize or minimize a target metric.\n",
11+
"![Hyperdrive Code](screens/HyperdriveCode.png)\n",
12+
"\n",
13+
"A Hyperdrive run is like AutoML, but targeted at a specific piece of code you provide and seeks to find the best combination of hyperparameters.\n",
14+
"![Hyperdrive Run](screens/HyperdriveRun.png)\n",
15+
"\n",
16+
"### Azure Cognitive Services\n",
17+
"\n",
18+
"Azure Cognitive Services lets you work with pay-per-use APIs that expose pre-trained customizable image, text, and speech machine learning algorithms.\n",
19+
"\n",
20+
"![Azure Cognitive Services](screens/AzureCognitiveServices.png)\n",
21+
"\n",
22+
"### Azure Synapse Analytics\n",
23+
"\n",
24+
"Azure Synapse Analytics is a data ingestion and transformation solution that lets you automate feeding pre-processed data into the model training or prediction generation processes for Azure Machine Learning Studio.\n",
25+
"\n",
26+
"![Azure Synapse Analytics](screens/AzureSynapse.png)"
27+
]
28+
},
329
{
430
"cell_type": "markdown",
531
"metadata": {},
@@ -25,6 +51,17 @@
2551
"%pip install plotly # Used for data visualization"
2652
]
2753
},
54+
{
55+
"cell_type": "markdown",
56+
"metadata": {},
57+
"source": [
58+
"### View this Code\n",
59+
"\n",
60+
"This is a public GitHub repository, so you can find the code and tailor it to your own experiments on your own Azure accounts.\n",
61+
"\n",
62+
"Visit [https://github.com/IntegerMan/AutoMLwithPythonAndAzure](https://github.com/IntegerMan/AutoMLwithPythonAndAzure) for the full source code."
63+
]
64+
},
2865
{
2966
"cell_type": "markdown",
3067
"metadata": {},
@@ -39,12 +76,25 @@
3976
"- Other services perpetually free"
4077
]
4178
},
79+
{
80+
"cell_type": "markdown",
81+
"metadata": {},
82+
"source": [
83+
"### Kaggle.com\n",
84+
"\n",
85+
"[Kaggle](https://kaggle.com/datasets) is a very good way of getting free data sources for data science experiments.\n",
86+
"\n",
87+
"![Kaggle](screens/Kaggle.png)"
88+
]
89+
},
4290
{
4391
"cell_type": "markdown",
4492
"metadata": {},
4593
"source": [
4694
"## Learning More\n",
4795
"\n",
96+
"![MattEland.dev](screens/MattElandDev.png)\n",
97+
"\n",
4898
"### My Content\n",
4999
"\n",
50100
"- [AccessibleAI.dev](https://AccessibleAI.dev) - Data Science Blog\n",

screens/AzureCognitiveServices.png

111 KB
Loading

screens/AzureSynapse.png

49.8 KB
Loading

screens/HyperdriveCode.png

214 KB
Loading

screens/MattElandDev.png

237 KB
Loading

screens/SlideGoals.png

38.4 KB
Loading

screens/SlideIntro.png

78.9 KB
Loading

0 commit comments

Comments
 (0)