Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
AnmolArora15 opened this issue May 22, 2024 · 0 comments

Comments

@AnmolArora15
Copy link

AnmolArora15 commented May 22, 2024

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant