ThrunGroup / FastForest

7 stars 0 forks source link

Can reduce memory usage by passing indices of child data instead of child data itself #200

Closed vxbrandon closed 2 years ago

vxbrandon commented 2 years ago

If you look at here, we pass child data itself not its indices. When doing this, we make a copy of data, and it consumes a lot of time! In PR #197, I fixed partially by making a copy of child data with subsampled features, so it lowers the size of copied data.