sklearn.base.is_regressor — scikit-learn 0.20.4 documentation (original) (raw)

sklearn.base. is_regressor(estimator)[source]

Returns True if the given estimator is (probably) a regressor.

Parameters: estimator : object Estimator object to test.
Returns: out : bool True if estimator is a regressor and False otherwise.