This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
# 加载数据 | |
data = np.load('eeg.npy') | |
# 获取数据的形状 | |
num_channels, num_timepoints, num_samples = data.shape | |
# 对每个 channel 进行正则化 | |
for i in range(num_samples): |