🚀 Feature request
Motivation
- Create a vectorized version of torch_gather_like function implemented here. This function is used to gather top-k indices from each row of one-hot vector of labels.
Your contribution
Maybe later check if we could come up with a more efficient implementation of gather_torch_like which does not using TensorArray, but rather uses only tf.gather_nd() with a 2D index (rows, cols), like the one I implemented here here.
Not a priority for now, but maybe it might improve the metrics performance
Originally posted by @gabrielspmoreira in #189 (comment)