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
Sensitivity and Specificity are the default standards for evaluating diagnostic tests (https://en.wikipedia.org/wiki/Sensitivity_and_specificity), sensitivity is called "recall" but specificity is not provided in https://scikit-learn.org/stable/modules/model_evaluation.html#classification-metrics but it can be obtained through the confusion matrix or the recall of the negative class.
Implement in way that can be incorporated in the cv_metrics field of a classifier (i.e. "accuracy, recall, specificity"):
get_cross_validation_scores() is currently considered to be engine specific:
More info: https://scikit-learn.org/stable/modules/model_evaluation.html#scoring-parameter
The text was updated successfully, but these errors were encountered:
This hit a limitation / flaw in django-ai (math-a3k/django-ai@fd85385), with that settled, it is implemented in fbfb983.
Sorry, something went wrong.
math-a3k
No branches or pull requests
Sensitivity and Specificity are the default standards for evaluating diagnostic tests (https://en.wikipedia.org/wiki/Sensitivity_and_specificity), sensitivity is called "recall" but specificity is not provided in https://scikit-learn.org/stable/modules/model_evaluation.html#classification-metrics but it can be obtained through the confusion matrix or the recall of the negative class.
Implement in way that can be incorporated in the cv_metrics field of a classifier (i.e. "accuracy, recall, specificity"):
get_cross_validation_scores() is currently considered to be engine specific:
More info: https://scikit-learn.org/stable/modules/model_evaluation.html#scoring-parameter
The text was updated successfully, but these errors were encountered: