Was going though @jacobtomlinson dask tutorial and I saw ``` from dask_ml.metrics import mean_squared_error from math import sqrt sqrt(mean_squared_error(y_test, y_predicted)) ``` Wonder if it's possible to add the squared arg - same as scikit-learn (https://scikit-learn.org/stable/modules/generated/sklearn.metrics.mean_squared_error.html; https://github.com/scikit-learn/scikit-learn/blob/fd237278e/sklearn/metrics/_regression.py#L266) May be a one line addition? https://github.com/dask/dask-ml/blob/e5a2f2735be3f52b85dcb5d81d43ce0e5449becb/dask_ml/metrics/regression.py#L32
Was going though @jacobtomlinson dask tutorial and I saw
Wonder if it's possible to add the squared arg - same as scikit-learn (https://scikit-learn.org/stable/modules/generated/sklearn.metrics.mean_squared_error.html; https://github.com/scikit-learn/scikit-learn/blob/fd237278e/sklearn/metrics/_regression.py#L266)
May be a one line addition?
dask-ml/dask_ml/metrics/regression.py
Line 32 in e5a2f27