The original data to be split
The original data to be split
The indices of the elements in the array that are to
be split in the current operation.data
The indices of the elements in the array that are to
be split in the current operation.data
Given a set of
for data points fromindices, create a random hyperplane to split the data, returning two arrays indices that fall on either side of the hyperplane. This is the basis for a random projection tree, which simply uses this splitting recursively. This particular split uses euclidean distance to determine the hyperplane and which side each data sample falls on.dataThe original data to be split
The indices of the elements in the
array that are to be split in the current operation.data