Implement Random Forest nodes/leaves/depth

This commit is contained in:
2023-11-28 00:35:38 +01:00
parent 4addaefb47
commit d06bf187b2
6 changed files with 60 additions and 1 deletions

View File

@@ -38,6 +38,10 @@ namespace pywrap {
{
return pyWrap->callMethodString(id, method);
}
int PyClassifier::callMethodSumOfItems(const std::string& method) const
{
return pyWrap->callMethodSumOfItems(id, method);
}
int PyClassifier::callMethodInt(const std::string& method) const
{
return pyWrap->callMethodInt(id, method);