Ejemplo n.º 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()
Ejemplo n.º 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()
Ejemplo n.º 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()
Ejemplo n.º 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()
Ejemplo n.º 5
0
 def complexity(self):
     """
     Return a complexity measure of the current model. 
     """
     Util.abstract()
Ejemplo n.º 6
0
 def __init__(self):
     '''
     Constructor
     '''
     Util.abstract()
Ejemplo n.º 7
0
 def process(self, X):
     Util.abstract()
Ejemplo n.º 8
0
 def learn(self, X):
     Util.abstract()
Ejemplo n.º 9
0
 def __init__(self):
     '''
     Constructor
     '''
     Util.abstract()
Ejemplo n.º 10
0
 def process(self, X):
     Util.abstract()
Ejemplo n.º 11
0
 def learn(self, X):
     Util.abstract()
Ejemplo n.º 12
0
 def complexity(self):
     """
     Return a complexity measure of the current model. 
     """
     Util.abstract()
Ejemplo n.º 13
0
 def learnModel(self, X, y):
     Util.abstract()
Ejemplo n.º 14
0
 def predict(self, X):
     Util.abstract()