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

news/2024/5/19 19:06:01 标签: 机器学习, EEG, 迁移学习, 论文笔记

对session进行评估,判断其是否适合使用迁移学习来提升性能。阅读重点,如何cross-subject。

全文核心:文中提出了一种新的可被迁移性的度量指标LSG,可以衡量一组数据是否适合接受来自其他被试的数据。全文理论基于一个假设,就是当一个session的数据可以很好地训练模型的时候,其他被试的数据将不能提供任何有用的帮助(原文:In this study, we hypothesized that if the pilot session of an individual provides discriminative information between alertness and drowsiness for the session and for sessions from others, then the information from others might not add any value to improve the model based solely on the pilot session for the individual.)。相反,当一个模型还不能很好地拟合数据地时候,它是可以接受外界数据辅助训练的。(原文:Conversely, if the pilot session is not informative enough to model the drowsiness level, and is neither generalizable to predict the drowsiness level of sessions from others, then the model for this individual might benefit from the transfer learning procedure. )
L S G i = P ( i , i ) + P ( l , Φ ( l ) ) ‾ P ( J , J ) + P ( J , Φ ( J ) ) ‾ ‾ ∣ j ∈ Φ ( i ) L S G_{i}=\frac{P(i, i)+\overline{P(l, \Phi(l))}}{\left.\overline{P(J, J)+\overline{P(J, \Phi(J))}}\right|_{j \in \Phi(i)}} LSGi=P(J,J)+P(J,Φ(J))jΦ(i)P(i,i)+P(l,Φ(l))
对公式的理解:可见,分子为一个session训练后的模型对它自己的表现,以及对其他session的表现(以中位数代表)。分母为所有session的同样计算的中位数。因此, L S G i LSG_i LSGi可以理解为在所有session中,session i i i所包含的信息是否足够训练自己的模型,以及对外来信息的接受空间大小,LSG越小,则越能接受来自其他被试的数据的迁移。

如何做到cross-subject的?

基于他们所提的假设所推得当一个session的信息不足以训练其自身的分类器时,它是可以从外界接受辅助的。也就是LSG低(<1)的session可以接受来自其他被试的数据辅助训练。


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

相关文章

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

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

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&#xff1a;过滤8-32Hz的信号&#xff0c;128为采样率&#xff0c;8是阶数&#xff0c;’basspass‘是带通滤波。 filtfilt&#xff1a;数…

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, …

numpy 按0,1数组取元素

import numpy as npa np.array([1,2,3,4,5,6,7,8,9,10]) b np.array([1,0,1,0,1,0,1,0,1,0])a a[ b 1] print(a)# output&#xff1a;[1 3 5 7 9]

到处抄来的写作用语

As illustrated in Fig. 1 如图1所示 exploit 利用 We propose a new model to exploit unlabeled data. facilitate 促进 degraded 退化 it is likely to have degraded performance due to the shift in domain. leverage 利用 Depiction 描述&…

论文笔记:Composite Common Spatial Pattern for Subject-to-Subject Transfer

论文笔记&#xff1a;Composite Common Spatial Pattern for Subject-to-Subject Transfer 概括 ​ 目前大多数CSP算法都是基于单被试数据的协方差矩阵进行特征提取&#xff0c;这忽视了被试间的信息。本文提出了一种新的CSP计算算法&#xff0c;通过线性组合来考虑被试间的关…

论文笔记:Deep Domain Confusion Maximizing for Domain Invariance

论文笔记&#xff1a;Deep Domain Confusion Maximizing for Domain Invariance 概述 提出编码MMD&#xff08;最大 均值差异&#xff0c; Maximun Mean Discrepancy&#xff09;来测量在 CNN中学习到的隐藏特征之间的距离。通过这种方法&#xff0c;网络通过最大化标签依赖性…