From 4784e589018f6ac068f6c720f625192a10f2a98e Mon Sep 17 00:00:00 2001
From: Fabian Pedregosa <fabian.pedregosa@inria.fr>
Date: Wed, 15 Dec 2010 09:28:05 +0100
Subject: [PATCH] Remove Methods from docstring.

It is outdated and sphinx generated this for us.
---
 scikits/learn/lda.py | 8 --------
 scikits/learn/qda.py | 8 --------
 2 files changed, 16 deletions(-)

diff --git a/scikits/learn/lda.py b/scikits/learn/lda.py
index ebd189a3f8..2c274e9fd9 100644
--- a/scikits/learn/lda.py
+++ b/scikits/learn/lda.py
@@ -37,14 +37,6 @@ class LDA(BaseEstimator, ClassifierMixin):
     `covariance_` : array-like, shape = [n_features, n_features]
         Covariance matrix (shared by all classes)
 
-    Methods
-    -------
-    fit(X, y) : self
-        Fit the model
-
-    predict(X) : array
-        Predict using the model.
-
     Examples
     --------
     >>> import numpy as np
diff --git a/scikits/learn/qda.py b/scikits/learn/qda.py
index 40bdfe70e6..b6ffd12e93 100644
--- a/scikits/learn/qda.py
+++ b/scikits/learn/qda.py
@@ -43,14 +43,6 @@ class QDA(BaseEstimator, ClassifierMixin):
     `covariances_` : list of array-like, shape = [n_features, n_features]
         Covariance matrices of each class
 
-    Methods
-    -------
-    fit(X, y) : self
-        Fit the model
-
-    predict(X) : array
-        Predict using the model.
-
     Examples
     --------
     >>> from scikits.learn.qda import QDA
-- 
GitLab