python-machine-learning-book-2nd-edition icon indicating copy to clipboard operation
python-machine-learning-book-2nd-edition copied to clipboard

Chapter 7 typo

Open rickiepark opened this issue 7 years ago • 5 comments

(p225) In the middle of page, "argmax_i [0.2 \times i_0 + 0.2 \times i_0 + 0.6 \times i_1]" should be "argmax_i [0.2 \times i_0 + 0.2 \times i_0, 0.6 \times i_1]"

Sorry I misunderstood it. "argmax_i [0.2 \times i_0 + 0.2 \times i_0 + 0.6 \times i_1]" is right. :)

rickiepark avatar Oct 18 '18 08:10 rickiepark

(p234) In 3rd line of the first code block, print("Accuracy: ...") should be print("ROC AUC: ..."), because output text is ROC AUC: ....

rickiepark avatar Oct 24 '18 13:10 rickiepark

(p237) In 3rd line, "inside a GridSearch object" should be "inside a GridSearchCV object".

rickiepark avatar Oct 24 '18 14:10 rickiepark

(p221) In 2nd eq. in the page, "1 if \sum_{i} C_{j}(x) \ge 0" should be "1 if \sum_{j} C_{j}(x) \ge 0"

rickiepark avatar Nov 01 '18 01:11 rickiepark

(p248) In step 3, \hat{y} eq. is ambiguous. I suggest \hat{y} = sign[\sum_{j=1}^{m} (\alpha_j \times predict(C_j, X))].

(p250) End of the 1st paragraph, "(step 4)" should be "(step 3)".

rickiepark avatar Nov 04 '18 16:11 rickiepark

(p234) In 3rd line of the first code block, print("Accuracy: ...") should be print("ROC AUC: ..."), because output text is ROC AUC: ....

Oh yes, definitely. Thanks!

(p237) In 3rd line, "inside a GridSearch object" should be "inside a GridSearchCV object".

Yes!

(p221) In 2nd eq. in the page, "1 if \sum_{i} C_{j}(x) \ge 0" should be "1 if \sum_{j} C_{j}(x) \ge 0"

Thanks!

(p248) In step 3, \hat{y} eq. is ambiguous. I suggest \hat{y} = sign[\sum_{j=1}^{m} (\alpha_j \times predict(C_j, X))].

Yes, that's better

(p250) End of the 1st paragraph, "(step 4)" should be "(step 3)".

Yes

rasbt avatar Jun 16 '19 17:06 rasbt