[FIX] Tree: Sparse Support#2430
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2430 +/- ##
==========================================
+ Coverage 73.9% 75.74% +1.84%
==========================================
Files 321 321
Lines 55993 60239 +4246
==========================================
+ Hits 41379 45630 +4251
+ Misses 14614 14609 -5 |
|
@jerneju is this ready for review? IMO this should also go into the next release? |
|
@nikicc: Yes, it is ready. |
|
Works, but it's extremely slow even on reasonably sized sparse data. https://github.com/biolab/orange3/pull/2430/files#diff-e09cca17420838b03154933ede608989R171 changes the column to dense. Since this is done column by column, it is (memory-wise) better than changing the whole matrix to dense but it's time consuming. A better solution - but one requiring a bit more programming - would be to implement a separate @nikicc said we should merge it as it is, but please start working on a better solution. |
Issue
Fixes #2370 .
Description of changes
Work in progress.
Includes