You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, appreciate you for this great work. I have a question, why in the below lines of code from get_embed_cifar100.py file, default select is 50 for outlier generation and default select is 1000 for inlier generation (what's the intuition behind it ?), and what will happen when this select value 1000, is greater than K, which is true based on this code (Select=1000>K=300). Wouldn't there be "selected index k out of range" error ? Can you explain this issue, if it is an issue !? Thank you !!
Hello, appreciate you for this great work. I have a question, why in the below lines of code from get_embed_cifar100.py file, default select is 50 for outlier generation and default select is 1000 for inlier generation (what's the intuition behind it ?), and what will happen when this select value 1000, is greater than K, which is true based on this code (Select=1000>K=300). Wouldn't there be "selected index k out of range" error ? Can you explain this issue, if it is an issue !? Thank you !!
parser.add_argument('--ood_det_select', type=int, default=50)
parser.add_argument('--ood_gene_select', type=int, default=1000)
The text was updated successfully, but these errors were encountered: