-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Fix incorrect DataFrame min max computation with NULL #6734
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix incorrect DataFrame min max computation with NULL #6734
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #6734 +/- ##
==========================================
+ Coverage 68.87% 68.89% +0.02%
==========================================
Files 1216 1216
Lines 250915 251125 +210
Branches 26259 26311 +52
==========================================
+ Hits 172825 173021 +196
+ Misses 71265 71242 -23
- Partials 6825 6862 +37
Flags with carried forward coverage won't be shown. Click here to find out more.
|
…n_max_computation
Thanks @asmirnov82! Can you merge this into https://github.com/JakeRadMSFT/machinelearning/tree/u/jakerad/generic-math as well? It's possible this was fixed by other changes in the generic math branch. Can you make sure it meets your needs/add/update tests? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd like the null check to stay consistent everywhere. We can analyze perf later ... and see if in-lining would help.
This wasn't fixed by the latest changes in generic-math branch. I merged my changes, however this requires additional work to change new generic implementation (CalculateReduction method), until changes are done 2 new unit tests fail (TestIntComputations_MaxMin_WithNulls and TestIntComputations_MaxMin_OnEmptyColumn) |
Awesome @asmirnov82 - I've made those changes and merged. Can you take a look at them when you have a chance? Changes for Reduction method If you're up for it - I'd love for you to review my generic math PR once I have the .NET 8 branch setup. It should be ready for review after next week. |
Merged into Generic Math branch! |
/azp run |
Azure Pipelines successfully started running 2 pipeline(s). |
…n_max_computation
Fixes #6733