1
0
mirror of https://github.com/Microsoft/sql-server-samples.git synced 2025-12-08 14:58:54 +00:00

Merge remote-tracking branch 'refs/remotes/Microsoft/master'

This commit is contained in:
Jovan Popovic
2017-04-24 00:52:00 +02:00

View File

@ -102,7 +102,7 @@ print(lin_predictions)
# Import the scikit-learn function to compute error.
from sklearn.metrics import mean_squared_error
# Compute error between our test predictions and the actual values.
lin_mse = mean_squared_error(linpredictions, df[target])
lin_mse = mean_squared_error(lin_predictions, df[target])
#print(lin_mse)
import pandas as pd