Browse Source

remove q1

Week 2 Day 2 ex 1 question 1 #28
pull/63/head
brad-gh 2 years ago committed by eslopfer
parent
commit
384ef72c6c
  1. 8
      piscine/week02/day02/ex01/README.md

8
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.
3. Print the coefficients (`coef_`), the intercept (`intercept_`) and the score of the logistic regression of X and y.

Loading…
Cancel
Save