[综述笔记]A Survey on Deep Learning for Neuroimaging-Based Brain Disorder Analysis

论文网址:Frontiers | A Survey on Deep Learning for Neuroimaging-Based Brain Disorder Analysis (frontiersin.org)

英文是纯手打的!论文原文的summarizing and paraphrasing。可能会出现难以避免的拼写错误和语法错误,若有发现欢迎评论指正!文章偏向于笔记,谨慎食用

1. 省流版

1.1. 心得

(1)上来直接就开模型介绍,文心吃这些东西吃多了吧

1.2. 论文总结图

2. 论文逐段精读

2.1. Abstract

        ①Structural magnetic resonance imaging (MRI), functional MRI, and positron emission tomography (PET) can all be used in neuroimage analysis

        ②Disease included: Alzheimer's disease, Parkinson's disease, Autism spectrum disorder, and Schizophrenia

2.2. Introduction

        ①Introducing medical imaging

        ②Therefore, the feature selection step is extremely important for complex medical image processing. Although sparse learning and dictionary learning have been used to extract features, their shallow architectures still limit their representation ability.

        ③The development of hardware promotes the improvement of deep learning in medical image analysis

        ④Categories of medical imaging analysis: classification, detection/localization, registration, and segmentation

        ⑤This survey mainly centers on brain disease

cardiac  adj.心脏的;心脏病的  n.心脏病患者;强心剂;健胃剂

2.3. Deep Learning

2.3.1. Feed-Forward Neural Networks

        ①The function of FFNN:

y_k(\boldsymbol{x};\boldsymbol{\theta})=f^{(2)}\left(\sum_{j=1}^Mw_{k,j}^{(2)}f^{(1)}\left(\sum_{i=1}^Nw_{j,i}^{(1)}x_i+b_j^{(1)}\right)+b_k^{(2)}\right)

where the \boldsymbol{x} is the input vector, y_k is the output;

superscript denotes layer index, M is the number of hidden units;

b_j and b_k are bias terms of input layer hidden layer respectively;

f^{(1)} and f^{(2)} denote non-linear activation function;

\theta=\left\{w_{j}^{(1)},w_{k}^{(2)},b_{j}^{(1)},b_{k}^{(2)}\right\} represents parameter set

        ②Sketch map of (A) single and (B) multi layer neural networks:

2.3.2. Stacked Auto-Encoders

        ①Auto-encoder (AE), namely so called auto-associator, possesses the ability of encoding and decoding

        ②AE can be stacked as stacked auto-encoders (SAE) with better performance

        ③Sketch map of SAE:

where the blue and red dot boxes are encoder and decoder respectively

        ④To avoid being trapped in local optimal solution, SAE applies layer-wise pretraining methods

2.3.3. Deep Belief Networks

        ①By stacking multiple restricted Bolztman machines (RBMs), the Deep Belief Network (DBN) is constructed

        ②The joint distribution of DBN:

P(v,h^{(1)},\ldots,h^{(L)})=P(v\mid h^{(1)})(\prod_{l=1}^{L-2}P(h^{(l)}\mid h^{(l+1)}))P(h^{(L-1)},h^{(L)})

where v denotes visible units and h^{(1)},...,h^{(L)} denotes L hidden layers

        ③Sketch map of (A) DBN and (B) DBM:

where the double-headed arrow denotes undirected connection and the single-headed arrow denotes directed connection

2.3.4. Deep Boltzmann Machine

        ①Futher stacking RBMs can get Deep Boltzmann Machine (DBM):

\begin{gathered}P(v_i|\boldsymbol{h}^1)=\sigma(\sum_jW_{ij}^{(1)}h_j^{(1)})\quad\\\\P(h_k^{(l)}|\boldsymbol{h}^{(l-1)},\boldsymbol{h}^{(l+1)})=\sigma(\sum_mW_{m\boldsymbol{k}}^{(l)}\boldsymbol{h}_m^{(l-1)}+\sum_nW_{kn}^{(l+1)}h_n^{(l+1)})\quad\\\\P(h_t^{(L)}|\boldsymbol{h}^{(L-1)})=\sigma(\sum_sW_{st}^{(L)}\boldsymbol{h}_s^{(L-1)})\quad\end{gathered}

2.3.5. Generative Adversarial Networks

        ①Simultaneously including generator G and discriminator D, Generative Adversarial Networks (GANs) achieves the task of training models with a small number of labeled samples:

\begin{aligned}\min_G\max_DV(G,D)&=\mathbb{E}_{x-p_{data}(x)}\left[\log D(x)\right]\\&+\mathbb{E}_{x-p_z(z)}\left[\log(1-D(G(z)))\right]\end{aligned}

        ②The framework of GAN:

2.3.6. Convolutional Neural Networks

        ①The framework of convolutional neural network (CNN):

2.3.7. Graph Convolutional Networks

        ①The framework of Graph Convolutional Networks (GCN):

which includes spectral-based and spatial-based methods

2.3.8. Recurrent Neural Networks

        ①As the extension of FFNN, recurrent neural network (RNN) ia able to learn features and long-term dependencies from sequential and time-series data

        ②Framework of (A) long-short-term memory (LSTM) and (B) Gated Recurrent Unit (GRU):

2.3.9. Open Source Deep Learning Library

        ①Some toolkits of deep learning:

2.4. Applications in Brain Disorder Analysis With Medical Images

2.4.1. Deep Learning for Alzheimer's Disease Analysis

        ①Introducing the Alzheimer's Disease Neuroimaging Initiative (ADNI)

2.4.2. Deep Learning for Parkinson's Disease Analysis

2.4.3. Deep Learning for Austism Spectrum Disorder Analysis

2.4.4. Deep Learning for Schizophrenia Analysis

2.5. Discussion and Future Direction

2.6. Conclusion

3. 知识补充

4. Reference List

Zhang, L. et al. (2020) 'A Survey on Deep Learning for Neuroimaging-Based Brain Disorder Analysis', Front Neurosci. doi: 10.3389/fnins.2020.00779 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mfbz.cn/a/479550.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

NET 自定义控件

如果添加 Category, 自定义控件,会放在杂项中

03-Java面试题八股文-----java基础——10题

41、HashMap 的长度为什么是 2 的 N 次方呢? 为了能让 HashMap 存数据和取数据的效率高,尽可能地减少 hash 值的碰撞,也就是说尽量把数据能均匀的分配,每个链表或者红黑树长度尽量相等。 我们首先可能会想到 % 取模的操作来实现。…

6 修改主机名和HOSTS文件

后期我们会配置多台服务器,那么每台服务器我们都会给定一个主机名,方便后期通过主机名进行访问。主机名的修改我们可以在安装操作系统时对其修改,如果忘记了,就可以修改配置文件完成,像后期我们进行虚拟机克隆后&#…

Unity Toggle与Toggle Group的妙用

Toggle与Toggle Group结合使用,妙处多多。 因为在同一Toggle Group内只有一个Toggle可以被选中,那么对于我们要创建单选按钮组、游戏的一些开关、暗夜模式、筛选不同显示内容等功能都非常好用。 比如我要实现通过点击不同按钮,从而筛选显示不同内容&am…

基于springboot的“漫画之家”系统

目录 背景 技术简介 系统简介 界面浏览 背景 随着科技的不断进步,计算机已经变成了人们日常生活和工作不可或缺的工具。在这样的环境下,互联网技术被广泛运用于各个领域,以提升工作和生活的效率,推动了网络信息技术的迅猛发展…

物联网和工业物联网的区别——青创智通

工业物联网解决方案-工业IOT-青创智通 物联网(IoT)和工业物联网(IIoT)作为现代科技的重要分支,正在逐渐渗透到我们的日常生活和工业生产中。它们的应用范围广泛,涵盖了从智能家居到自动化工厂的多个领域。…

基于SSM的土家风景文化管理平台(有报告)。Javaee项目。ssm项目。

演示视频: 基于SSM的土家风景文化管理平台(有报告)。Javaee项目。ssm项目。 项目介绍: 采用M(model)V(view)C(controller)三层体系结构,通过Spri…

python_BeautifulSoup爬取汽车评论数据

爬取的网站: 完整代码在文章末尾 https://koubei.16888.com/57233/0-0-0-2 使用方法: from bs4 import BeautifulSoup 拿到html后使用find_all()拿到文本数据,下图可见,数据标签为: content_text soup.find_all…

微信群发技巧有哪几种?

群发是指通过微信平台对特定受众进行大规模信息发布的过程,如节日祝福、活动促销等。随着科技的不断发展,群发的定义已不再仅限于手机信息群发或短信群发。如今,微信内置的群发功能也被广泛应用。 一、微信群发的操作步骤 1. 进入微信&…

Matlab 双目相机标定(内置函数)

文章目录 一、简介二、实现代码三、实现效果参考资料一、简介 相机标定的目的就是要找到从世界坐标转换为图像坐标所用到的投影P矩阵各个系数(即相机的内参与外参)。具体过程如下所述: 1、首先我们需要获取一个已知图形的图像(这里我们使用MATLAB所提供的数据)。 2、找到同…

基于Springboot的疫情物资管理系统(有报告)。Javaee项目,springboot项目。

演示视频: 基于Springboot的疫情物资管理系统(有报告)。Javaee项目,springboot项目。 项目介绍: 采用M(model)V(view)C(controller)三层体系结构…

Java项目:70 ssm小学生课外知识学习网站+vue

作者主页:舒克日记 简介:Java领域优质创作者、Java项目、学习资料、技术互助 文中获取源码 项目介绍 管理员;首页、个人中心、医护人员管理、科室管理、病人管理、病房管理、病人信息管理、病历管理、医嘱管理、手术安排管理、药品信息管理、…

@MapperScan注解使用

要了解MapperScan注解得先去了解Mapper注解 1、Mapper注解: 作用:在接口类上添加了Mapper,在编译之后会生成相应的接口实现类 添加位置:接口类上面 如果想要每个接口都要变成实现类,那么需要在每个接口类上加上Mappe…

C++小白学力扣之977.有序数组的平方

题目介绍 思路分析 首先,我们拿到一个数组题,根据题目。我们就能确定我们要运用什么方法来解答它,一般有两种方法,第一种是大家都能想到的的,暴力求解法,本题,如果使用暴力法,就是将…

线性顺序表算法库

list.cpp 具体函数实现 #include <stdio.h> #include "list.h" #include <malloc.h>/************************************************** ①函数名: CreateList 功 能: 用数组构建顺序表 参 数: ①SqList *&L:传入的线性表 ②ElemType a[]:使用…

打造新质生产力,亚信科技2024年如何行稳致远?

引言&#xff1a;不冒进、不激进&#xff0c;稳扎稳打&#xff0c; 一个行业一个行业地深度拓展。 【全球云观察 &#xff5c; 科技热点关注】 基于以往“一巩固、三发展”的多年业务战略&#xff0c;亚信科技正在落实向非通信行业、标准产品、软硬一体产品和国际市场的“四…

CrossOver 23 用户可以免费升级到 CrossOver24吗?CrossOver用户如何升级呢?

也就是上个月&#xff08;2024年2月底&#xff09;左右&#xff0c;CrossOver 刚刚更新了 24 版本&#xff0c;CrossOver更新的内容有哪些&#xff0c;大家可以参考这篇文章&#xff1a;CrossOver24.0新功能介绍&#xff0c;这篇文章详细介绍了CrossOver24有哪些新特点&#xf…

Java最后一块石头的重量 II(力扣Leetcod1049)

最后一块石头的重量 II 力扣原题 有一堆石头&#xff0c;用整数数组 stones 表示。其中 stones[i] 表示第 i 块石头的重量。 每一回合&#xff0c;从中选出任意两块石头&#xff0c;然后将它们一起粉碎。假设石头的重量分别为 x 和 y&#xff0c;且 x < y。那么粉碎的可能结…

2核4G服务器优惠价格和性能测试,2024年

阿里云2核4G服务器租用优惠价格&#xff0c;轻量2核4G服务器165元一年、u1服务器2核4G5M带宽199元一年、云服务器e实例30元3个月&#xff0c;活动链接 aliyunfuwuqi.com/go/aliyun 活动链接如下图&#xff1a; 阿里云2核4G服务器优惠价格 轻量应用服务器2核2G4M带宽、60GB高效…

软考90-上午题-【操作系统】-死锁

一、同类资源分配不当引起死锁 系统中有m个资源&#xff0c;被n个进程共享&#xff0c;每个进程都要求k个资源。 当m < n*k时&#xff0c;即&#xff1a;资源数<进程所要求的总数时&#xff0c;可能会引起死锁。&#xff08;但是不一定&#xff01;&#xff09; 例如&…
最新文章