diff --git a/piscine/week02/day02/ex01/README.md b/piscine/week02/day02/ex01/README.md index 67dc9fc..0142b65 100644 --- a/piscine/week02/day02/ex01/README.md +++ b/piscine/week02/day02/ex01/README.md @@ -8,10 +8,8 @@ X = [[0],[0.1],[0.2], [1],[1.1],[1.2], [1.3]] y = [0,0,0,1,1,1,0] ``` -1. Fit a Logistic regression on X and y. +1. Predict the class for `x_pred = [[0.5]]`. -2. Predict the class for `x_pred = [[0.5]]`. +2. Predict the probabilities for `x_pred = [[0.5]]` using `predict_proba`. -3. Predict the probabilities for `x_pred = [[0.5]]` using `predict_proba`. - -4. Print the coefficients (`coef_`), the intercept (`intercept_`) and the score of the logistic regression of X and y. \ No newline at end of file +3. Print the coefficients (`coef_`), the intercept (`intercept_`) and the score of the logistic regression of X and y.