Skip to content

Commit

Permalink
Lasso
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmahom5 committed Aug 28, 2023
1 parent d53458d commit 5940bd3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/mridle/experiment/architecture.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import skorch
from sklearn.base import BaseEstimator
from sklearn.ensemble import RandomForestClassifier, RandomForestRegressor
from sklearn.linear_model import LogisticRegression
from sklearn.linear_model import LogisticRegression, Lasso
from sklearn.pipeline import Pipeline
from sklearn.compose import ColumnTransformer
from sklearn.preprocessing import FunctionTransformer
Expand Down Expand Up @@ -35,6 +35,7 @@ class ArchitectureInterface(ComponentInterface):
registered_flavors = {
'RandomForestClassifier': RandomForestClassifier, # TODO enable auto-loading from sklearn
'RandomForestRegressor': RandomForestRegressor, # TODO enable auto-loading from sklearn
'LassoRegressor': Lasso, # TODO enable auto-loading from sklearn
'LogisticRegression': LogisticRegression,
'XGBClassifier': xgb.XGBClassifier,
'Pipeline': Pipeline,
Expand Down

0 comments on commit 5940bd3

Please sign in to comment.