Skip to content

Commit 797a353

Browse files
fixing quotes
1 parent 1924e9b commit 797a353

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/classification2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -675,15 +675,15 @@ from sklearn.metrics import recall_score, precision_score
675675
precision_score(
676676
y_true=cancer_test["Class"],
677677
y_pred=cancer_test["predicted"],
678-
pos_label='Malignant'
678+
pos_label="Malignant"
679679
)
680680
```
681681

682682
```{code-cell} ipython3
683683
recall_score(
684684
y_true=cancer_test["Class"],
685685
y_pred=cancer_test["predicted"],
686-
pos_label='Malignant'
686+
pos_label="Malignant"
687687
)
688688
```
689689
The output shows that the estimated precision and recall of the classifier on the test

0 commit comments

Comments
 (0)