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
When I add my code of loading data on OVANet, the result is more or less the same as in the figure. However, when I transfer the code to DANCE, the result was very different from that shown in the figure. I checked the data loading code and it seems to have no problem. And the calculation of H-score is also transferred from OVANet.
I try to reproduce the result of Fig5 and Fig6.
When I add my code of loading data on OVANet, the result is more or less the same as in the figure. However, when I transfer the code to DANCE, the result was very different from that shown in the figure. I checked the data loading code and it seems to have no problem. And the calculation of H-score is also transferred from OVANet.
known_acc = per_class_acc[:len(class_list)-1].mean()
unknown = per_class_acc[-1]
h_score = 2 * known_acc * unknown / (known_acc + unknown)
Is there anything else that I haven't changed?
The text was updated successfully, but these errors were encountered: