Support sklearn.tree.DecisionTreeRegressor
This commit is contained in:
parent
a6ed3d96e2
commit
17f6a99fa2
@ -51,6 +51,10 @@ supportedModels = {
|
|||||||
"supported": True,
|
"supported": True,
|
||||||
"normalPredictorFunction": "predict_proba"
|
"normalPredictorFunction": "predict_proba"
|
||||||
},
|
},
|
||||||
|
"sklearn.tree.DecisionTreeRegressor": {
|
||||||
|
"supported": True,
|
||||||
|
"normalPredictorFunction": "predict"
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
supportedDataType = {
|
supportedDataType = {
|
||||||
|
|||||||
@ -27,7 +27,8 @@ def test_ensureCLassInstance():
|
|||||||
'sm.OLS',
|
'sm.OLS',
|
||||||
'sm.Logit',
|
'sm.Logit',
|
||||||
'sklearn.neighbors.KNeighborsClassifier',
|
'sklearn.neighbors.KNeighborsClassifier',
|
||||||
'sklearn.tree.DecisionTreeClassifier'
|
'sklearn.tree.DecisionTreeClassifier',
|
||||||
|
'sklearn.tree.DecisionTreeRegressor',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user