-
-
Notifications
You must be signed in to change notification settings - Fork 14
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
Add multi-output support to honest trees #86
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
7005dfb
ENH attempt for multi-output
PSSF23 2c3606b
ENH simplify predict_proba & multi-output
PSSF23 f831bc4
DOC update changelog
PSSF23 f1ab592
Fix multi-output
adam2392 dd0662d
FIX simplify code & TST add multi-output test
PSSF23 8365c33
Merge branch 'main' into multi
adam2392 b259441
TST update test format & increase code coverage
PSSF23 16f8561
FIX optimize leaf updates with multi-output
PSSF23 2e00358
Update submodule commit ID
adam2392 fd6643a
ENH remove impute_missing_classes function
PSSF23 c182cad
TST optimize prior test
PSSF23 72306d0
TST add prior for multi-output
PSSF23 ee14b64
Merging main
adam2392 d4d2337
Merging main
adam2392 c14f629
FIX re-update leaf function for multi
PSSF23 2feb117
DOC optimize docstring & TST remove impute test
PSSF23 f172880
DOC correct typo
PSSF23 a31e1de
TST add random state
PSSF23 0fc8ec4
TXT optimize max sample test
PSSF23 0f773e1
TST optimize random seed
PSSF23 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 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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.
Can you just add a short docstring to describe what's going on? I'm reading these lines and having trouble figuring out what
pos
does actually :/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.
pos
indicates the class dimension of y, so that posterior corrections only work on that dimension in multi-output cases.