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