We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c813f7d commit ca8de95Copy full SHA for ca8de95
samples/features/machine-learning-services/python/getting-started/rental-prediction/rental_prediction.sql
@@ -102,7 +102,7 @@ print(lin_predictions)
102
# Import the scikit-learn function to compute error.
103
from sklearn.metrics import mean_squared_error
104
# Compute error between our test predictions and the actual values.
105
-lin_mse = mean_squared_error(linpredictions, df[target])
+lin_mse = mean_squared_error(lin_predictions, df[target])
106
#print(lin_mse)
107
108
import pandas as pd
0 commit comments