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
I had to add np.transpose in all_acc[split_ctr] = np.transpose(np.genfromtxt(file, delimiter=' ')) in both plot_global and plot_ss functions
the printed out global and ss in the ss experiment plot (last two cells) are only mean from fold 1. Correct code should be:
global_acc = 100all_acc[:,:,1,0].mean()
ss_acc = 100all_acc[:,:,1,-1].mean()
The text was updated successfully, but these errors were encountered:
in trian_val_global_ss.ipynb
global_acc = 100all_acc[:,:,1,0].mean()
ss_acc = 100all_acc[:,:,1,-1].mean()
The text was updated successfully, but these errors were encountered: