You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-Fix a big mistake in sortIndices method (removed unneeded loop)
-Add three hyperparameters to algorithm:
* max_depth: maximum level of recursion when looking for cut point candidates.
* min_length: minimum length of the interval of samples to be searched for candidates.
* max_cut: Maximum number of cutpoints. This could be achieved in two ways: a natural number meaning the maximum number of outpoints in each feature of the dataset, or this number could be a number int the range (0, 1) meaning a proportion of the number of samples.
Unit tests should test whether
ValueError
s are appropriately thrown for invalid inputs.The text was updated successfully, but these errors were encountered: