Jakob Hansen
Results
3
comments of
Jakob Hansen
I just ran into the same issue. It appears to be due to numba caching in `rp_trees.py`. Removing `cache=True` from `make_dense_tree()`/`make_sparse_tree()` seems to fix it.
I'm also experiencing this problem, and am interested to know if anyone has found a root cause or a workaround.
I think the behavior that feels most natural to me is: - if any column is constant, give a warning but do not raise an exception - make a best...