-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-3042] [mllib] DecisionTree Filter top-down instead of bottom-up #1975
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
Closed
Closed
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
a95bc22
timing for DecisionTree internals
jkbradley 511ec85
Merge remote-tracking branch 'upstream/master' into dt-timing
jkbradley bcf874a
Merge remote-tracking branch 'upstream/master' into dt-timing
jkbradley f61e9d2
Merge remote-tracking branch 'upstream/master' into dt-timing
jkbradley 3211f02
Optimizing DecisionTree
jkbradley 0f676e2
Optimizations + Bug fix for DecisionTree
jkbradley b2ed1f3
Merge remote-tracking branch 'upstream/master' into dt-opt
jkbradley b914f3b
DecisionTree optimization: eliminated filters + small changes
jkbradley c1565a5
Small DecisionTree updates:
jkbradley a87e08f
Merge remote-tracking branch 'upstream/master' into dt-opt1
jkbradley 8464a6e
Moved TimeTracker to tree/impl/ in its own file, and cleaned it up. …
jkbradley e66f1b1
TreePoint
jkbradley d036089
Print timing info to logDebug.
jkbradley 430d782
Added more debug info on binning error. Added some docs.
jkbradley 356daba
Merge branch 'dt-opt1' into dt-opt2
jkbradley 26d10dd
Removed tree/model/Filter.scala since no longer used. Removed debugg…
jkbradley 2d2aaaf
Merge remote-tracking branch 'upstream/master' into dt-opt1
jkbradley 6b5651e
Updates based on code review. 1 major change: persisting to memory +…
jkbradley 5f2dec2
Fixed scalastyle issue in TreePoint
jkbradley f40381c
Merge branch 'dt-opt1' into dt-opt2
jkbradley 797f68a
Fixed DecisionTreeSuite bug for training second level. Needed to upd…
jkbradley 931a3a7
Merge remote-tracking branch 'upstream/master' into dt-opt2
jkbradley 6a38f48
Added DTMetadata class for cleaner code
jkbradley db0d773
scala style fix
jkbradley ac0b9f8
Small updates based on code review.
jkbradley 3726d20
Small code improvements based on code review.
jkbradley a0ed0da
Renamed DTMetadata to DecisionTreeMetadata. Small doc updates.
jkbradley 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
Prev
Previous commit
Renamed DTMetadata to DecisionTreeMetadata. Small doc updates.
- Loading branch information
commit a0ed0daa4c3622e19626de7aa3b29e07c6015ff2
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
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
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
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
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.
It would be helpful if we add doc for
numClassesmentioning its value for regression problems.