-
-
Save arunm8489/11afa19e81bb1e35814e072dc3b1726c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# sort them based on probability #getting index | |
conf_sort_index = torch.sort(image_pred_class[:,4], descending = True )[1] | |
image_pred_class = image_pred_class[conf_sort_index] | |
idx = image_pred_class.size(0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment