Skip to content

Commit 48acac6

Browse files
committed
reduce verbosity
1 parent e788fff commit 48acac6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stock_prediction_numpy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,11 @@ def generate_future_data(self, time_steps, min_max, start_date, end_date, latest
125125
test_scaled = min_max.fit_transform(test_data)
126126
x_test = []
127127
y_test = []
128-
print(test_scaled.shape[0])
128+
#print(test_scaled.shape[0])
129129
for i in range(time_steps, test_scaled.shape[0]):
130130
x_test.append(test_scaled[i - time_steps:i])
131131
y_test.append(test_scaled[i, 0])
132-
print(i - time_steps)
132+
#print(i - time_steps)
133133

134134
x_test, y_test = np.array(x_test), np.array(y_test)
135135
x_test = np.reshape(x_test, (x_test.shape[0], x_test.shape[1], 1))

0 commit comments

Comments
 (0)