Description
GradientBoostingClassifier and GradientBoostingRegressor fit() method documentation doesn't show that they can both work on sparse training samples (X) as well .
Current documentation string is:
X : array-like, shape (n_samples, n_features)
It should be something like:
X : {array-like, sparse matrix}, shape (n_samples, n_features)
...