Skip to content

Commit 33275e4

Browse files
authored
Merge pull request #46 from JakeRadMSFT/main
Upgrade AutoML Visualizer and ML Notebook Cleaning
2 parents 7344fa9 + 8692a60 commit 33275e4

11 files changed

+4677
-4767
lines changed

machine-learning/01-Intro to Machine Learning.ipynb

-11
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
{
22
"cells": [
3-
{
4-
"cell_type": "markdown",
5-
"metadata": {},
6-
"source": [
7-
"## ==**This notebook is under active development**=="
8-
]
9-
},
103
{
114
"cell_type": "markdown",
125
"metadata": {},
@@ -135,7 +128,6 @@
135128
"metadata": {},
136129
"source": [
137130
"Now we are ready to write the code to achieve the machine learning task we need to do. Always start with creating the [MLContext](https://docs.microsoft.com/dotnet/api/microsoft.ml.mlcontext?view=ml-dotnet) which is the common context for all ML.NET operations"
138-
139131
]
140132
},
141133
{
@@ -248,7 +240,6 @@
248240
"metadata": {},
249241
"source": [
250242
"Now we have the data ready, next we'll create the ML.NET pipeline specifying the trainer we are going to use to build our machine learning model. For house price prediction, we are going to use the regression trainer. ML.NET supports other machine learning trainers which can be used for other scenarios as needed. The pipeline will create what is called [Estimator](https://docs.microsoft.com/dotnet/api/microsoft.ml.iestimator-1?view=ml-dotnet) which used to define the operations applied to the data"
251-
252243
]
253244
},
254245
{
@@ -271,7 +262,6 @@
271262
"metadata": {},
272263
"source": [
273264
"After creating the estimator, we are ready to apply the transformations and trainer defined in the pipeline to the data. To do that, call the [Fit](https://docs.microsoft.com/dotnet/api/microsoft.ml.iestimator-1.fit?view=ml-dotnet) method."
274-
275265
]
276266
},
277267
{
@@ -349,7 +339,6 @@
349339
"metadata": {},
350340
"source": [
351341
"Now we have the trained model ready for prediction. Let's use this model to predict a sample house price. We do that by creating the the prediction engine [PredictionEngine<TSrc,TDst>](https://docs.microsoft.com/dotnet/api/microsoft.ml.predictionengine-2?view=ml-dotnet). The prediction engine is the class for making single predictions on a previously trained model (and preceding transform pipeline). Creation of the prediction engine from the trained model can be done by the following code:"
352-
353342
]
354343
},
355344
{

0 commit comments

Comments
 (0)