コード例 #1
0
    def predict(self, X):
        """
        Make a prediction for a set of examples given as the rows of the matrix X.

        :param X: A matrix with examples as rows
        :type X: :class:`ndarray`
        """
        Util.abstract()
コード例 #2
0
    def predict(self, X):
        """
        Make a prediction for a set of examples given as the rows of the matrix X.

        :param X: A matrix with examples as rows
        :type X: :class:`ndarray`
        """
        Util.abstract()
コード例 #3
0
    def learnModel(self, X, y):
        """
        Learn a model for a set of examples given as the rows of the matrix X,
        with corresponding labels given in the elements of 1D array y.

        :param X: A matrix with examples as rows
        :type X: :class:`ndarray`

        :param y: A vector of labels
        :type y: :class:`ndarray`
        """
        Util.abstract()
コード例 #4
0
    def learnModel(self, X, y):
        """
        Learn a model for a set of examples given as the rows of the matrix X,
        with corresponding labels given in the elements of 1D array y.

        :param X: A matrix with examples as rows
        :type X: :class:`ndarray`

        :param y: A vector of labels
        :type y: :class:`ndarray`
        """
        Util.abstract()
コード例 #5
0
 def complexity(self):
     """
     Return a complexity measure of the current model. 
     """
     Util.abstract()
コード例 #6
0
 def __init__(self):
     '''
     Constructor
     '''
     Util.abstract()
コード例 #7
0
 def process(self, X):
     Util.abstract()
コード例 #8
0
 def learn(self, X):
     Util.abstract()
コード例 #9
0
 def __init__(self):
     '''
     Constructor
     '''
     Util.abstract()
コード例 #10
0
 def process(self, X):
     Util.abstract()
コード例 #11
0
 def learn(self, X):
     Util.abstract()
コード例 #12
0
 def complexity(self):
     """
     Return a complexity measure of the current model. 
     """
     Util.abstract()
コード例 #13
0
 def learnModel(self, X, y):
     Util.abstract()
コード例 #14
0
 def predict(self, X):
     Util.abstract()