We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now, accuracy is calculated as the average of precision and recall.
We should change it to: (true positive + true negative) / (true positive + true negative + false positive + false negative)
The text was updated successfully, but these errors were encountered:
Recompute overall accuracy
19dadab
As per #417
Here's the proposed code for the change. This didn't work, but hopefully it gives you the idea. 19dadab#diff-787324bc47fdd0a159b58f738bf98665
Sorry, something went wrong.
This PR should cover it. We need to test to make sure this works as intended. #512
paulalbert1
No branches or pull requests
Right now, accuracy is calculated as the average of precision and recall.
We should change it to: (true positive + true negative) / (true positive + true negative + false positive + false negative)
The text was updated successfully, but these errors were encountered: