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

@@ -6,6 +6,9 @@ from .benchmark import BenchmarkRunner
from .classifiers import (
Classifier,
Regressor,
)
from .classifiers.sklearn import (
ScikitLearnRegressor,
ScikitLearnClassifier,
)
from .classifiers.adaptive import AdaptiveClassifier