From d76132b64fcdc3bdd7c07e818c28dfea64008dd0 Mon Sep 17 00:00:00 2001 From: lkrsnik Date: Thu, 5 Apr 2018 09:44:05 +0200 Subject: [PATCH] Fixed prepare_data file and workbenches for running multiple instances at once --- prepare_data.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prepare_data.py b/prepare_data.py index 9797b6f..eafa31d 100644 --- a/prepare_data.py +++ b/prepare_data.py @@ -75,8 +75,8 @@ class Data: self.y_train = np.concatenate((self.y_train, self.y_test), axis=0) self.x_test = self.x_validate - self.x_other_features_train = self.x_other_features_validate - self.y_train = self.y_validate + self.x_other_features_test = self.x_other_features_validate + self.y_test = self.y_validate def _generate_inputs(self, content_location, content_shuffle_vector_location, shuffle_vector_location, test_and_validation_size, train_path, test_path, validate_path):