From e6f0b1d6644fcbfc349a909d93054623259deeaa Mon Sep 17 00:00:00 2001
From: Peter Prettenhofer <peter.prettenhofer@gmail.com>
Date: Thu, 30 Aug 2012 19:56:29 +0200
Subject: [PATCH] remove *CV classes - only pick decision_function and staged
 predict refactoring

---
 sklearn/ensemble/gradient_boosting.py | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/sklearn/ensemble/gradient_boosting.py b/sklearn/ensemble/gradient_boosting.py
index 045eae5148..136e14f118 100644
--- a/sklearn/ensemble/gradient_boosting.py
+++ b/sklearn/ensemble/gradient_boosting.py
@@ -14,15 +14,6 @@ The module structure is the following:
 
 - ``GradientBoostingRegressor`` implements gradient boosting for
   regression problems.
-
-- The ``BaseGradientBoostingCV`` base class implements a ``fit`` method
-  to choose the best ``n_estimators`` based on cross-validation.
-
-- ``GradientBoostingClassifierCV`` implements ``BaseGradientBoostingCV`` for
-  classification problems.
-
-- ``GradientBoostingRegressor`` implements ``BaseGradientBoostingCV`` for
-  regression problems.
 """
 
 # Authors: Peter Prettenhofer, Scott White, Gilles Louppe
-- 
GitLab