From 70e2a44194ff5e3e834ae920d28a62ca6ade43fa Mon Sep 17 00:00:00 2001 From: Vytautas Bielinskas Date: Mon, 28 Feb 2022 10:56:18 +0200 Subject: [PATCH] Update model.py --- model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model.py b/model.py index a8847db..341f93b 100644 --- a/model.py +++ b/model.py @@ -55,7 +55,7 @@ def mse(y_test, y_pred): # Split data into train and test sets -N = 35 +N = 25 X_train = X[:N] # first 40 examples (80% of data) y_train = y[:N]