前言:最近对图神经网络部分比较感兴趣,偶尔看到清华大学刘知远老师在今年3月份发表的一本书:Introduction to Graph Neural Network,于是将该书内容进行翻译,记录阅读中自己的感悟。如翻译有不准确或者错误的地方,请指正。

在原文中,不可避免的会有大量的人名、专业词汇等,本文翻译时将其保留,便于日后对其他文献的阅读与理解

翻译进展:

  • Chapter1:Introduction
  • Chapter2:Basic of Math and Graph
  • Chapter3:Basic of Neural Networks
  • Chapter4:Vanilla Graph Neural Networks
  • Chapter5:Graph Convolutional Networks
  • Chapter6:Graph Recurrent Networks
  • Chapter7:Graph Attention Networks
  • Chapter8:Graph Residual Networks
  • Chapter9:Variants for Different Graph Types
  • Chapter10:Variants for Advanced Training Methods
  • Chapter11:General Frameworks
  • Chapter12:Applications – Structural Scenarios
  • Chapter13:Applications – Non-Structural Scenarios
  • Chapter14:Applications – Other Scenarios
  • Chapter15:Open Resources
  • Chapter16:Conclusion

    文章目录

    • Introduction to Graph Neural Network
      • Preface
      • Chapter1:Introduction
      • Chapter2:Basic of Math and Graph
      • Chapter3:Basic of Neural Networks
      • Chapter4:Vanilla Graph Neural Networks
      • Chapter5:Graph Convolutional Networks
      • Chapter6:Graph Recurrent Networks
      • Chapter7:Graph Attention Networks
      • Chapter8:Graph Residual Networks
      • Chapter9:Variants for Different Graph Types
      • Chapter10:Variants for Advanced Training Methods
      • Chapter11:General Frameworks
      • Chapter12:Applications – Structural Scenarios
      • Chapter13:Applications – Non-Structural Scenarios
      • Chapter14:Applications – Other Scenarios
      • Chapter15:Open Resources
      • Chapter16:Conclusion

Introduction to Graph Neural Network

Preface

深度学习在计算机视觉和自然语言处理等许多领域都取得了可喜的进展。这些任务中的数据通常在欧几里得域中表示.然而,许多学习任务需要处理非欧几里得图数据,这些数据中包含了丰富的元素之间的关系信息,如物理系统建模、学习分子指纹、预测蛋白质界面等。图神经网络(GNN)是基于深度学习的方法,在图域上进行操作。由于GNN具有令人信服的性能和较高的可解释性,近来已成为一种应用广泛的图分析方法。

本书全面介绍了图神经网络的基本概念、模型和应用。它从数学和神经网络的基础知识开始。在前几章中,它对GNN的基本概念进行了介绍,旨在为读者提供一个总体的概述。然后介绍了GNNs的不同变体:图卷积网络、图递归网络、图注意力网络、图残差网络以及几种通用框架。这些变体倾向于将不同的深度学习技术泛化到图中,如卷积神经网络、递归神经网络、注意机制和跳过连接等。此外,本书还介绍了GNN在结构场景(物理、化学、知识图)、非结构场景(图像、文本)和其他场景(生成模型、组合优化)中的不同应用。最后,书中列出了相关的数据集、开源平台和GNNs的实现。

本书的结构如下。在第1章的概述之后,我们在第2章介绍了一些数学和图论的基本知识。我们在第3章中展示了神经网络的基础知识,然后在第4章中对原始GNN进行了简单介绍。在第5章、第6章、第7章和第8章分别介绍了四种类型的模型。在第9章和第10章中介绍了针对不同图类型的其他变体和高级训练方法。然后我们在第11章提出了几种通用的GNN框架。在第12、13和14章中介绍了GNN在结构场景、非结构场景和其他场景中的应用。最后,我们在第15章提供了一些开放资源,并在第16章结束本书。

Chapter1:Introduction

Introduction to Graph Neural Network(图神经网络概论)翻译:Chapter1:Introduction

Chapter2:Basic of Math and Graph

Introduction to Graph Neural Network(图神经网络概论)翻译:Chapter2:Basic of Math and Graph

Chapter3:Basic of Neural Networks

Introduction to Graph Neural Network(图神经网络概论)翻译:Chapter3:Basic of Neual Networks

Chapter4:Vanilla Graph Neural Networks

Introduction to Graph Neural Network(图神经网络概论)翻译:Chapter4:Vanilla Graph Neural Networks

Chapter5:Graph Convolutional Networks

Chapter6:Graph Recurrent Networks

Chapter7:Graph Attention Networks

Chapter8:Graph Residual Networks

Chapter9:Variants for Different Graph Types

Chapter10:Variants for Advanced Training Methods

Chapter11:General Frameworks

Chapter12:Applications – Structural Scenarios

Chapter13:Applications – Non-Structural Scenarios

Chapter14:Applications – Other Scenarios

Chapter15:Open Resources

Chapter16:Conclusion

Introduction to Graph Neural Network(图神经网络概论)翻译:目录总览相关推荐

  1. 【论文阅读】A Gentle Introduction to Graph Neural Networks [图神经网络入门](7)

    [论文阅读]A Gentle Introduction to Graph Neural Networks [图神经网络入门](7) Into the Weeds Other types of grap ...

  2. 【论文阅读】A Gentle Introduction to Graph Neural Networks [图神经网络入门](5)

    [论文阅读]A Gentle Introduction to Graph Neural Networks [图神经网络入门](5) Graph Neural Networks 图神经网络 Now th ...

  3. 【论文阅读】A Gentle Introduction to Graph Neural Networks [图神经网络入门](4)

    [论文阅读]A Gentle Introduction to Graph Neural Networks [图神经网络入门](4) The challenges of using graphs in ...

  4. 【论文阅读】A Gentle Introduction to Graph Neural Networks [图神经网络入门](3)

    [论文阅读]A Gentle Introduction to Graph Neural Networks [图神经网络入门](3) What types of problems have graph ...

  5. 【论文阅读】A Gentle Introduction to Graph Neural Networks [图神经网络入门](1)

    [论文阅读]A Gentle Introduction to Graph Neural Networks [图神经网络入门](1) 最近读了一篇Distill网站上的一篇文章,讲的是图神经网络的入门, ...

  6. 【论文阅读】A Gentle Introduction to Graph Neural Networks [图神经网络入门](6)

    [论文阅读]A Gentle Introduction to Graph Neural Networks [图神经网络入门](6) GNN playground Some empirical GNN ...

  7. 【论文阅读】A Gentle Introduction to Graph Neural Networks [图神经网络入门](2)

    [论文阅读]A Gentle Introduction to Graph Neural Networks [图神经网络入门](2) Graphs and where to find them 图以及在 ...

  8. Graph Neural Network——图神经网络

    本文是跟着李沐老师的论文精度系列进行GNN的学习的,详细链接请见:零基础多图详解图神经网络(GNN/GCN)[论文精读] 该论文的标题为<A Gentle Introduction to Gra ...

  9. 【Graph Neural Network 图神经网络】3.Spatial-based Graph Convolutional Networks 基于空间的图卷积网络

    前言 类似于图像上传统的卷积运算,基于空间的方法根据节点的空间关系定义图卷积.图像可以看作是一种特殊的图形式,每个像素代表一个节点.每个像素都直接连接到它附近的像素,如下图左所示.对3*3的区域应用一 ...

最新文章

  1. 简单探讨隐私增强技术的类型和用途
  2. 2021.8.21 网易秋招开发笔试(题目 + java代码)
  3. 多少血的教训,才能换来对自动驾驶的严格限定、真实了解和正确使用?
  4. 放置奇兵 算法 月度活动 破碎时空记录 第六关 尸妖+鹿男(奥博隆)
  5. fastText中常见问题汇总
  6. 谷歌F12调试公众号时,让鼠标显示出来
  7. MySQL MGR集群搭建
  8. 重拾Javascript(四) 运动 图片的淡入淡出
  9. myeclipse汉化及其相关配置设置(转)
  10. 元素周期表排列的规律_元素周期表中的几个规律
  11. lpad函数和rpad函数的用法
  12. 给你入冬后的第一杯奶茶
  13. Visual Studio 鼠标放代码上出现英文提示如何改为中文?
  14. MySQL给表和字段添加注释
  15. Spectacle源码及分析1 —— 源码概览
  16. node.js实现图片裁剪+获取图片大小+加logo水印
  17. PostgreSQL do $$ DECLARE 操作
  18. 小米电视能看普通的电视台吗?HDP直播和电视家带你解锁看剧新体验
  19. 菜谱管理系统java_无麸质管理食谱
  20. 7个开源制图软件:最佳 GIS 工具介绍

热门文章

  1. (论文阅读)实例分割之PolarMask
  2. TCP/IP协议族在异构网络互联中的作用
  3. 电脑分区了如何恢复?电脑新手村教程
  4. 渲染测试软件 d15,Apophysis 7X V15D详细图文使用教程
  5. nodejs免安装版安装
  6. Linux防火墙关闭方法
  7. AutoJs学习-截屏器
  8. 非参数与半参数统计之核函数
  9. Java_银行开户存取款
  10. 【Unity3D小功能】Unity3D中在创建完项目后自动创建文件夹列表