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
In calc_s_test_single, it seems like the intended operation is to add all the sampled s_test_i together and divide the sum by r. However, it is actually extending the list. Because of this, it seems like when I set r>1, calc_influence_single just completely skips s_test_vec[len(grad_z_vec):]. Am I not understanding what this is doing correctly, or is this a typo? I'm quite unsure because this looks like something intentional, as it's explicitly converted to a list of tensors.
The text was updated successfully, but these errors were encountered:
In calc_s_test_single, it seems like the intended operation is to add all the sampled s_test_i together and divide the sum by
r
. However, it is actually extending the list. Because of this, it seems like when I setr>1
, calc_influence_single just completely skipss_test_vec[len(grad_z_vec):]
. Am I not understanding what this is doing correctly, or is this a typo? I'm quite unsure because this looks like something intentional, as it's explicitly converted to a list of tensors.The text was updated successfully, but these errors were encountered: