|
|
|
|
|
by i_don_t_know
2653 days ago
|
|
If you want to rank results differently, you'd apply a function to each element of the original vector that computes the rank / weight of that element. Then you sort by weights, and apply the result to the original vector. Something like: input[<{...compute weight of element x...}'input] |
|