From 1d5ce3be9024dc1db06ddaaef15871ae8e577412 Mon Sep 17 00:00:00 2001 From: vkitsios Date: Thu, 11 Jan 2024 14:23:51 +0200 Subject: [PATCH] - Comments --- testEEGNet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testEEGNet.py b/testEEGNet.py index f5204b0..e50eb2f 100644 --- a/testEEGNet.py +++ b/testEEGNet.py @@ -55,7 +55,7 @@ X_train = X_train_scaled.reshape(X_train.shape) X_test = X_test_scaled.reshape(X_test.shape) -# convert data to NHWC (trials, channels, samples, kernels) format. Data +# Convert data to NHWC (trials, channels, samples, kernels) format. Data # contains 60 channels and 151 time-points. Set the number of kernels to 1. X_train = X_train.reshape(X_train.shape[0], X_train.shape[1], X_train.shape[2], 1) X_test = X_test.reshape(X_test.shape[0], X_test.shape[1], X_test.shape[2], 1)