Data arrangement

1.Reference Webs

http://nlp.csai.tsinghua.edu.cn/~tcc/

https://blog.csdn.net/a609640147/article/details/89562262

https://blog.csdn.net/liudingbobo/article/details/83039233

https://blog.csdn.net/lzglzj20100700/article/details/84965339

https://blog.csdn.net/weixin_39373480/article/details/89402879

https://blog.csdn.net/r1254/article/details/88343349

https://blog.csdn.net/qq_41727666/article/details/84587027

https://blog.csdn.net/weixin_42137700/article/details/87159371

https://blog.csdn.net/melon0014/article/details/82527750

https://blog.csdn.net/u014281392/article/details/90174664

https://blog.csdn.net/DSTJWJW/article/details/83896312

https://blog.csdn.net/qq_34911465/article/details/88524599

http://i.dataguru.cn/mportal.php?mod=view&aid=14801

https://mp.weixin.qq.com/s?src=11&timestamp=1561431089&ver=1689&signature=EMOEnQ2reNbnmTwed8JVBNlMfbPiT3kg79ZslP0gMBNTyn20BQIsAL-vW8FG3aPfjhAr2eZ8G*WYkOdonzgEixDKstBpumlm8wKbCbWtd7RKgrSBkmWLVxfJ5FJeDfNx&new=1

2.Reference Papers

https://www.cs.purdue.edu/mlg2011/papers/paper_1.pdf

https://link.springer.com/content/pdf/10.1007%2F978-1-4419-6045-0.pdf

https://link.springer.com/content/pdf/10.1007%2F978-1-4419-6045-0.pdf

https://www.cse.wustl.edu/~muhan/papers/AAAI_2018_DGCNN.pdf

http://ryanrossi.com/pubs/KDD18-graph-attention-model.pdf

https://www.cs.uoregon.edu/Reports/AREA-201706-Riazi.pdf

https://paperswithcode.com/task/graph-classification

https://www.kdd.org/kdd2018/accepted-papers/view/graph-classification-using-structural-attention

https://www.csc2.ncsu.edu/faculty/nfsamato/practical-graph-mining-with-R/slides/pdf/Classification.pdf

3.Others

Semi-Supervised Classification with Graph Convolutional Networks

Graph Partition Neural Networks for Semi-Supervised Classification

FastGCN: Fast Learning with Graph Convolutional Networks via Importance Sampling

Generating Classification Weights With GNN Denoising Autoencoders for Few-Shot Learning

Link Prediction Based on Graph Neural Networks

Hierarchical Graph Representation Learning with Differentiable Pooling

还可以到CVPR,ICLR,NIPS,这几个会议上去找找(待找)

Graph network classification(As a beginner, continue to update)的更多相关文章

  1. CF1221G Graph And Number(容斥,搜索,FMT)

    至今觉得这场 edu 的 G 比 EF 都要简单-- 不知道为什么出题人要把 \(m=0\) 放进去,先特判掉. 要求至少一个 \(0\),至少一个 \(1\),至少一个 \(2\),容斥一波,变成总 ...

  2. 命令模式坚决svn树冲突(local unversioned, incoming add upon update)

    当工作目录修改删除过时更新使用svn更新就容易发生树冲突“Tree Confilict”.会出现类似提示. local unversioned, incoming add upon update 如果 ...

  3. Neural Network学习(二)Universal approximator :前向神经网络

    1. 概述 前面我们已经介绍了最早的神经网络:感知机.感知机一个非常致命的缺点是由于它的线性结构,其只能做线性预测(甚至无法解决回归问题),这也是其在当时广为诟病的一个点. 虽然感知机无法解决非线性问 ...

  4. Neural Networks and Deep Learning(week2)Logistic Regression with a Neural Network mindset(实现一个图像识别算法)

    Logistic Regression with a Neural Network mindset You will learn to: Build the general architecture ...

  5. 《Go学习笔记 . 雨痕》流程控制(if、switch、for range、goto、continue、break)

    Go 精简(合并)了流控制语句,虽然某些时候不够便捷,但够用. if...else... 条件表达式值必须是布尔类型,可省略括号,且左花括号不能另起一行. func main() { x := 3 i ...

  6. Regularized least-squares classification(正则化最小二乘法分类器)取代SVM

    在机器学习或者是模式识别其中有一种重要的分类器叫做:SVM .这个被广泛的应用于各个领域.可是其计算的复杂度以及训练的速度是制约其在实时的计算机应用的主要原因.因此也非常非常多的算法被提出来.如SMO ...

  7. 以Network Dataset(网络数据集)方式实现的最短路径分析

    转自原文 以Network Dataset(网络数据集)方式实现的最短路径分析 构建网络有两种方式,分别是网络数据集NetworkDataset和几何网络Geometric Network,这个网络结 ...

  8. 论文阅读:Andromeda: Performance, Isolation, and Velocity at Scale in Cloud Network Virtualization (全文翻译用于资料整理和做PPT版本,之后会修改删除)

    Abstract: This paper presents our design and experience with Andromeda,  Google Cloud Platform’s net ...

  9. Learning Combinatorial Embedding Networks for Deep Graph Matching(基于图嵌入的深度图匹配)

    1. 文献信息 题目: Learning Combinatorial Embedding Networks for Deep Graph Matching(基于图嵌入的深度图匹配) 作者:上海交通大学 ...

随机推荐

  1. fzu 2122

    #include<stdio.h> #include<string.h> #define N 51000 char s1[200],s2[200],s[N]; int main ...

  2. C++ 数据结构模板 队列 栈 动态链表 模板 Queue Stack List

    C++数据结构模板,可以实现基本功能,用法和stl差不多,比如Q.pop();Q.push(a);Q.front();...... (由于动态链表用的不多,若有错误望各位大神不吝赐教:) 队列: cl ...

  3. C++ premier 中文版 学习笔记(第五章 表达式)

    解应用和自增组合使用的理解 由于后自增操作的优先级高于解引用操作,因此 *iter++ 等效于*(iter++).子表达式 iter++ 使 iter 加 1,然后返回 iter 原值的副本作为该表达 ...

  4. hdu_1285_确定比赛名次_201312081335

    确定比赛名次 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Sub ...

  5. Javascript:使用jQuery提交Form表单

    DEMO说明一切: // this is the id of the form $("#idForm").submit(function() { var url = "p ...

  6. source 命令的用法,是在当前bash环境下执行脚本文件

    原文: http://www.cnblogs.com/softwaretesting/archive/2012/02/13/2349550.html source命令用法: source FileNa ...

  7. hdu1068 Girls and Boys --- 最大独立集

    有一个集合男和一个集合女,给出两集合间一些一一相应关系.问该两集合中的最大独立集的点数. 最大独立集=顶点总数-最大匹配数 此题中.若(a,b)有关.则(b,a)有关.每个关系算了两次,相当于二分图的 ...

  8. Servlet仿CSDN动态验证码的生成-带数字和字母

    林炳文Evankaka原创作品.转载请注明出处http://blog.csdn.net/evankaka 一.实现的思路: (1)首先,须要创建一个Servlet.该Servlet通过字节型响应给cl ...

  9. hdu3371 Connect the Cities (MST)

    Connect the Cities Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Other ...

  10. web端log4net输出错误日志到mysql

    1.引用log4net 2.配置log4net.config文件 <?xml version="1.0" encoding="utf-8" ?> & ...