Skip to content

Instantly share code, notes, and snippets.

@naxty
Created August 6, 2019 11:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save naxty/e9ae5c6380b3d53339ce1e9d95599dfa to your computer and use it in GitHub Desktop.
Save naxty/e9ae5c6380b3d53339ce1e9d95599dfa to your computer and use it in GitHub Desktop.
Train a simple linear regression.
from sklearn.model_selection import train_test_split
X_train, X_test, y_train, y_test = train_test_split(boston_housing.data, boston_housing.target, test_size=0.2, random_state=0)
model = LinearRegression()
model.fit(X_train, y_train)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment