Support sklearn.tree.DecisionTreeClassifier

This commit is contained in:
Jason Jafari 2024-06-19 22:39:15 -04:00
parent 8e7f93ac03
commit d7a8ea9dc6
2 changed files with 8 additions and 0 deletions

View File

@ -299,6 +299,10 @@ supportedModels = {
"supported": True,
"normalPredictorFunction": "predict_proba"
},
"sklearn.tree.DecisionTreeClassifier": {
"supported": True,
"normalPredictorFunction": "predict_proba"
},
}
```

View File

@ -47,6 +47,10 @@ supportedModels = {
"supported": True,
"normalPredictorFunction": "predict_proba"
},
"sklearn.tree.DecisionTreeClassifier": {
"supported": True,
"normalPredictorFunction": "predict_proba"
},
}
supportedDataType = {