论文笔记: Deep Learning With Convolutional Neural Networks for EEG Decoding and Visualization

news/2024/5/19 20:00:55 标签: 神经网络, 深度学习, EEG, CNN, BCI

EEG_Decoding_and_Visualization_0">Deep Learning With Convolutional Neural Networks for EEG Decoding and Visualization

概述

此笔记主要对模型部分进行描述。

因为CNN可以端到端地解决问题,因此考虑将其用到EEG的处理中,因为EEG信号与图片信号有所不同,因此直接使用原始的CNN是不合适的。文章对此展开了研究,并提出了三种面向EEGCNN模型,其中第三种为前两种的混合,不作记录。

CNN_8">Deep CNN

在普通的CNN前加入了一个block,包括两个卷积层和一个平均池化层。

其中第一个卷积层的作用是模拟带通滤波,将数据进行分离多种特征。第二层则是起到一个空间滤波的作用。

CNN_16">Shallow CNN

同上,但结构上略有不同。

与FBCSP的联系

原文中提到: Concretely, the first two layers of the shallow ConvNet perform a temporal convolution and a spatial filter, as in the deep ConvNet. These steps are analogous to the bandpass and CSP spatial filter steps in FBCSP.


http://www.niftyadmin.cn/n/770319.html

相关文章

解密Docker容器网络

一个Linux容器能看见的“网络栈”,被隔离在它自己的Network Namespace中。 1 “网络栈”的内容 网卡(Network Interface)回环设备(Loopback Device)路由表(Routing Table)iptables规则 对于一…

论文笔记:EEGNet:A Compact Convolutional Network for EEG-based Brain-Computer Interfaces

EEGNet:A Compact Convolutional Network for EEG-based Brain-Computer Interfaces 与DEEPCNN、shallow CNN相似(笔记),只是结构上略有不同。整个网络由三个部分组成,分别对应FBCSP中的带通滤波、CSP、特征选择。

论文笔记----Multi-subject data augmentation for target subject semantic decoding with deep multi-view ad

所读论文:Multi-subject data augmentation for target subject semantic decoding with deep multi-view adversarial learning 基于GAN的特征迁移。阅读重点,如何cross-subject。 全文核心:在使用不同被试的数据的时候,主要面临…

论文笔记----Selective Transfer Learning for EEG-Based Drowsiness Detection

对session进行评估,判断其是否适合使用迁移学习来提升性能。阅读重点,如何cross-subject。 全文核心:文中提出了一种新的可被迁移性的度量指标LSG,可以衡量一组数据是否适合接受来自其他被试的数据。全文理论基于一个假设&#x…

论文笔记:Hybrid deep neural network using transfer learning for EEG motor imagery decoding

在跨被试时对特征提取层的参数进行迁移并固定,通过fine-turn训练分类层。阅读重心,如何cross-subject 全文核心 :提了一个网络 如何做到cross-subject的? 先用其他被试的数据训练模型,然后将得到的提取器共享并固定…

scipy.signal.filtfilt 的使用方法以及参数解释

from scipy import signalb,asignal.butter(8,[(8*2/128),(32*2/128)],bandpass)buffer_x_testsignal.filtfilt(b,a,data,axis0) butter:过滤8-32Hz的信号,128为采样率,8是阶数,’basspass‘是带通滤波。 filtfilt:数…

sklearn 特征选择

select_Ksklearn.feature_selection.SelectKBest(mutual_info_classif,k10).fit(features_train,label)

巴特沃斯滤波器 python代码

网上找的 def butter_bandpass(lowcut, highcut, fs, order):nyq 0.5*fslow lowcut/nyqhigh highcut/nyqb, a signal.butter(8, [low, high], bandpass)return b, adef butter_bandpass_filter(data, lowcut, highcut, fs, order):b, a butter_bandpass(lowcut, highcut, …