i am trying to post process the output but getting the error " grid_h, grid_w = position.shape[2:4]
ValueError: not enough values to unpack (expected 2, got 1)
".
position.shape would return the shape of position which is tuple representing dimensions of position. your code requires position to be at least 4 dimensional, maybe it is of < 4 dimensional
position is of 3 dimension, so position.shape[2:4] is returning only value at position.shape[2], so it is returning only 1 value, but in left hand side you were expecting 2 values, so it is giving error