From 1c72ede64c16fbebefc6968abd987e2b41e8b99f Mon Sep 17 00:00:00 2001 From: Zander <6073079+awmatheson@users.noreply.github.com> Date: Mon, 30 Mar 2020 11:19:31 -0400 Subject: [PATCH 1/2] Update training test size Increase the test size to 23% --- src/train/train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/train/train.py b/src/train/train.py index 1540be5..8e70436 100644 --- a/src/train/train.py +++ b/src/train/train.py @@ -78,7 +78,7 @@ def main(args): X, y = datasets.load_iris(return_X_y=True) #dividing X,y into train and test data - x_train, x_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=223) + x_train, x_test, y_train, y_test = train_test_split(X, y, test_size=0.23, random_state=223) data = {'train': {'X': x_train, 'y': y_train}, 'test': {'X': x_test, 'y': y_test}} From 2301aa5a7cf195aa63cde1c65cc4b289d25d328b Mon Sep 17 00:00:00 2001 From: Marvin Buss <34542414+marvinbuss@users.noreply.github.com> Date: Sun, 5 Apr 2020 12:54:39 +0200 Subject: [PATCH 2/2] Update run.json --- .ml/.azure/run.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ml/.azure/run.json b/.ml/.azure/run.json index 4b79e7c..e43e730 100644 --- a/.ml/.azure/run.json +++ b/.ml/.azure/run.json @@ -1,3 +1,3 @@ { - "experiment": "GitHubActionExperiment" -} \ No newline at end of file + "experiment_name": "GitHubActionExperiment" +}