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
{{ message }}
This repository was archived by the owner on Jun 18, 2024. It is now read-only.
As I know F1 score is usually used for accuracy evaluation. But I don't know the following concepts,
In TestActivity.java,
double accuracy_reference = (double) matches_reference / (double) total_reference;
double accuracy_deviation = (double) matches_deviation / (double) total_deviation;
double robustness = accuracy_deviation / accuracy_reference;
Could you give out explanations on these concepts?