PyConKorea2019-Tutorials icon indicating copy to clipboard operation
PyConKorea2019-Tutorials copied to clipboard

Tutorials about Layer-wise Relevance Propagation (LRP) and SHapley Additive exPlanations (SHAP)

Results 2 PyConKorea2019-Tutorials issues
Sort by recently updated
recently updated
newest added

Have you had this problem? When I tried to run this code model = vgg16.VGG16() model = innvestigate.utils.model_wo_softmax(model), I met following error: Exception: No softmax found. I changed to this...

lrp.run에서 idx = np.hstack((np.arange(0,d), np.arange(2*d,4*d))).astype(int) # indices of gates i,f,o together idx_i, idx_f, idx_c, idx_o = np.arange(0,d), np.arange(d,2*d), np.arange(2*d,3*d), np.arange(3*d,4*d) # indices of gates i,g,f,o separately 부분의 idx에 i,f,o의 인덱스만...