Add ScikitLearnRegressor; move sklean classes to their own file

This commit is contained in:
2021-04-01 07:54:14 -05:00
parent 820a6256c2
commit 59c734f2a1
8 changed files with 119 additions and 85 deletions

View File

@@ -13,7 +13,8 @@ from sklearn.neighbors import KNeighborsClassifier
from sklearn.pipeline import make_pipeline
from sklearn.preprocessing import StandardScaler
from miplearn.classifiers import Classifier, ScikitLearnClassifier
from miplearn.classifiers import Classifier
from miplearn.classifiers.sklearn import ScikitLearnClassifier
from miplearn.classifiers.counting import CountingClassifier
logger = logging.getLogger(__name__)