DataTalksClub / mlops-zoomcamp

Free MLOps course from DataTalks.Club
11.03k stars 2.12k forks source link

Use `root_mean_squared_error` instead of `mean_squared_error` #326

Closed Pythongoras closed 2 months ago

Pythongoras commented 2 months ago

The 'squared' arg is deprecated in version 1.4 and will be removed in 1.6. To calculate the root mean squared error, use the function'root_mean_squared_error'.

alexeygrigorev commented 2 months ago

Thanks!

Pythongoras commented 2 months ago

The metric calculations in the code in week2-week6 are also using mean_squared_error. They could be updated when someone has a chance to go through the repo.