Пример #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()