Skip to content

Update 1_classification.ipynb - #22

Merged
pssachdeva merged 1 commit into
masterfrom
issue-20
Oct 18, 2021
Merged

Update 1_classification.ipynb#22
pssachdeva merged 1 commit into
masterfrom
issue-20

Conversation

@kazutoki-m

Copy link
Copy Markdown
Contributor

Closes #20
Update the definition of precision, recall, and specificity.

In the markdown cell of confusion matrix:
-----Incorrect-----
Precision:
(Predicted Positives) / (True Positives)
Recall (or Sensitivity):
(Predicted Positives) / (Condition Positives)
Specificity (like recall for negative examples):
(Predicted Negatives) / (Condition Negatives)

This should be corrected to:
-----Correct-----
Precision:
(True Positives) / (Predicted Positives)
Recall (or Sensitivity):
(True Positives) / (Condition Positives)
Specificity (like recall for negative examples):
(True Negatives) / (Condition Negatives)

Update the definition of precision, recall, and specificity.
@kazutoki-m
kazutoki-m requested a review from pssachdeva October 18, 2021 23:41
@pssachdeva

Copy link
Copy Markdown
Member

LGTM

@pssachdeva
pssachdeva merged commit 1813998 into master Oct 18, 2021
@pssachdeva
pssachdeva deleted the issue-20 branch November 3, 2021 19:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

2 participants