MicrosoftDocs / ml-basics

Exercise notebooks for Machine Learning modules on Microsoft Learn

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to Fix a typo in https://learn.microsoft.com/en-us/training/modules/train-evaluate-regression-models/7-exercise-optimize-save-models

AnmolArora15 opened this issue · comments

Hello,

I recently went through the Microsoft Learn notebook on Train and Evaluate Regression Models, and I noticed a few typos that I believe need correction. (link)[https://learn.microsoft.com/en-us/training/modules/train-evaluate-regression-models/7-exercise-optimize-save-models]

Below are the details of the corrections I have identified:

  1. Typo in Training a Model : -

Current Text:

Fit a lasso model on the training set
model = GradientBoostingRegressor().fit(X_train, y_train)
print (model, "\n")

Corrected Text:

Fit a GradientBoostingRegressor model on the training set
model = GradientBoostingRegressor().fit(X_train, y_train)
print (model, "\n")

Please let me know if you need any further information or if there's a specific process I should follow to submit these corrections officially.

Regards,

Anmol Arora