We see that some of the code doesn't work in colab, due to different versions of sklearn.
For example the regression_report function in the "regression with multiple features" chapter, uses mse.round(3) which may need to be changed to round(mse, 3).
We should lock the version of sklearn to match the version in colab (currently 1.6.1)
We see that some of the code doesn't work in colab, due to different versions of sklearn.
For example the
regression_reportfunction in the "regression with multiple features" chapter, usesmse.round(3)which may need to be changed toround(mse, 3).We should lock the version of sklearn to match the version in colab (currently 1.6.1)