Rforestry icon indicating copy to clipboard operation
Rforestry copied to clipboard

Results 15 Rforestry issues
Sort by recently updated
recently updated
newest added

Note: reconstruct_forest (reconstructForest) deserialization logic is changed as well as Python part of serialization: tree_counts contains 3 values for each tree instead of 4: numNodes, numSplitIdx, numAvIdx Verified by adding...

We're interested in compatibility with sklearn estimators (see [instructions](https://scikit-learn.org/stable/developers/develop.html)) for integration with other libraries like [Ray](https://github.com/ray-project/ray). The goal would be to pass the [`check_estimator()`](https://scikit-learn.org/stable/developers/develop.html#rolling-your-own-estimator) check. A few specific items to...

enhancement
Python

When one of the entries of `colSd` doesn't exist (constant values, or too many missing values), we we should describe why this is a problem instead of using the current...

When passing a data frame with 0 in training, the resulting `processed_x` occasionally replaces 0 with 1.387e-17. This is likely due to floating point behavior either in the C++ logic...

bug
C++

While implementing saving + loading in Python, I realized that that we don't have `customAveragingSample`, `customSplittingSample`, and `customExcludedSample` implemented in the Python wrapper. It would be useful to have these,...

Let's have ``` form random_forestry import RandomForest rf_1 = RandomForest() rf_2 = RandomForest() ``` Since default value for seed is random number, we expect: ``` assert rf_1.seed != rf_2.seed ```...

Python

Updates description of the `naDirection` parameter in R and Python.