Fix some NaN problems and a few other fixes. #42
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Handle prediction at tree split points separately. Always use qr
factorization when solving the local system to avoid error when
the system is singular. Also fix a one-off error in the median
calculation in the KDTree implementation.
This fixes some of the issues mentioned in #28 though not all
of them. The solution is to error out informatively in some cases
when the local system becomes too small. I think the main remaining
item is to handle ties differently. I expect that we'd have to construct
the tree only based on unique elements but that is for a future PR.
For now, I've added the test cases with ties from #28 but marked
some of them with
@test_broken
.