You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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
The text was updated successfully, but these errors were encountered:
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:
Current Text:
Corrected Text:
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
The text was updated successfully, but these errors were encountered: