You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
brad-gh d70312fb78
delete q1 (#50)
2 years ago
..
audit Renaming with uppercase of readme files to respect standard 2 years ago
README.md delete q1 (#50) 2 years ago

README.md

Exercise 1 Scikit-learn estimator

The goal of this exercise is to learn to fit a Scikit-learn estimator and use it to predict.

X, y = [[1],[2.1],[3]], [[1],[2],[3]]
  1. Fit a LinearRegression from Scikit-learn with X the features and y the target and predict for x_pred = [[4]]

  2. Print the coefficients (coefs_) and the intercept (intercept_), the score (score) of the regression of X and y.