ThrunGroup / FastForest

7 stars 0 forks source link

Possible to obviate allocating entire dataset to left/right nodes and only use them on the fly? #199

Open motiwari opened 2 years ago

motiwari commented 2 years ago

@vxbrandon had an interesting idea, which is to avoid assigning points to the left/right nodes when a split is performed, and only query them once we need to consequently split given node's children.

This would obviate the need to assign children to the left/right children of every split. However, there may be an issue (see Slack for a discussion of this)