diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 60e86cb..99e1605 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -45,7 +45,7 @@ - + @@ -54,7 +54,7 @@ - + @@ -76,11 +76,11 @@ - - + + - + @@ -119,7 +119,7 @@ - + @@ -146,6 +146,7 @@ usecol valid_data_rate batch_size + predict @@ -205,7 +206,7 @@ - + @@ -246,12 +247,12 @@ - @@ -355,7 +356,7 @@ - + @@ -365,11 +366,11 @@ - - + + - + diff --git a/serve.py b/serve.py index 3984c0b..420e40e 100644 --- a/serve.py +++ b/serve.py @@ -117,10 +117,10 @@ class Data: test_x = [feature_data[self.start_num_in_test + i * self.config.time_step: self.start_num_in_test + ( i + 1) * self.config.time_step] for i in range(time_step_size)] + print("test_x is", test_x) if return_label_data: label_data = self.norm_data[self.train_num + self.start_num_in_test:, self.config.label_in_feature_columns] return np.array(test_x), label_data - print(test_x) return np.array(test_x) # add yqy