Skip to content

Commit

Permalink
- Comments
Browse files Browse the repository at this point in the history
  • Loading branch information
vkitsios committed Jan 11, 2024
1 parent f19af40 commit 1d5ce3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testEEGNet.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 1d5ce3b

Please sign in to comment.