-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Fixes for General Additive Models #743
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
Merged
Merged
Changes from 24 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
5339988
Adding a test to step through GAM
8c5907e
Adding weights to GAM calculation; refactor redundant Leaf Split calc…
ea92deb
Using MinDocsPerLeaf as set in the Arguments class during leaf split.…
07fc292
wip
66c6869
WIP: rebase
7675b64
Centering results and unifying outputs; fixing issues with lookups an…
2d46bde
wip
7057dfe
Adding in a validation set and validation set pruning to GAM
a8fd6e4
Fixed GAM Classifier to use a small learning rate: Updated the FastTr…
c20e760
Sped up tests, added comments, cleaned up test helpers.
da6a966
GAM: remove unused calibration parameters.
4a00b92
Rename GAM test file
0d6ea2d
Recentering graph based on mean responses.
ea3ab1c
Unified the documents to thread calculation across implementations.
6bc05db
Updating methods and properties to be as close to private as possible.
b70f203
Updating methods and properties to be as close to private as possible…
759d597
Updating the FastTreeClassification Loss to incorporate the factor of…
8719606
Updating the entrypoints for BinaryClassGamPredictor to reflect the u…
dda64f2
Fixing an issue with no validation and no progress.
d0d4e6b
Fixing null pointer bug, where if a split didn't have positive gain, …
b356e43
Responding to PR Comments
82218ee
Responding to PR Comments: Switched sub-graph calculation to structs;…
cd8a554
Fixing arithmetic error in the weighted split finding
638d1a7
Updating all baseline tests for GAM Classification
e3d896f
Addressed PR Comments: Comments to follow style guide; removed unnece…
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
Oops, something went wrong.
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.
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.
Nice