From b1ba7a8fe65c602f99bc86a0c034702f006ee83a Mon Sep 17 00:00:00 2001 From: lee Date: Fri, 16 Apr 2021 16:40:33 +0100 Subject: [PATCH] function fix --- one_md_per_day_format/piscine/Week2/day2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/one_md_per_day_format/piscine/Week2/day2.md b/one_md_per_day_format/piscine/Week2/day2.md index 53537bf..b270cbd 100644 --- a/one_md_per_day_format/piscine/Week2/day2.md +++ b/one_md_per_day_format/piscine/Week2/day2.md @@ -475,7 +475,7 @@ def predict_one_vs_all(X, clf0, clf1, clf2 ): 1. This question is validated if each classifier has as input a binary data as below: ```python - def train(X_train, y_train): +def train(X_train, y_train): clf = LogisticRegression() clf1 = LogisticRegression() clf2 = LogisticRegression()