def get_classifier(self, X, Y): """ ??????? :param X: ???? :param Y: ?????? :return: ?? """ clf = Ridge() clf.fit(X, Y) return clf