-
Notifications
You must be signed in to change notification settings - Fork 760
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix numerical bug in `BinnedUniforms` (#2344) prob.cumsum() - prob is a numerically unsafe way to shift prob.cumsum() to the right. The numerical error will create small gaps or overlaps in the bins defined by lower and upper bounds. If a quantile falls in one of these overlap or gap the one hot bin indicator will have 0 or 2 hot bins and generate a shape mismatch error. The fix consists of doing a shift by copy. * Fix dominick dataset bug. (#2364) * Proposed fix to zero seed bug. (#2379) Co-authored-by: Sigrid Passano Hellan <[email protected]> Co-authored-by: Marc van Oudheusden <[email protected]> Co-authored-by: Bhaskar Dhariyal <[email protected]> Co-authored-by: Sigrid Passano Hellan <[email protected]> Co-authored-by: Sigrid Passano Hellan <[email protected]>
- Loading branch information
1 parent
0ef14a0
commit be1a39e
Showing
3 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters