跳至内容
贾京南的个人博客
返回

图神经网络

Graph neural network (GNN) is used for unstructured data. I created a PPT for the general introduction on GNN.

Blogs to introduce GNN in general

GNN on medical images

We could regard each pixel (or voxel for 3D images) as a node in a graph, and then convert a image data to a graph data. Such conversion is memory efficient to save data and train networks for sparse data (like vessels).

Python packages for GNN

torch_geometric is a library built upon PyTorch to easily write and train Graph Neural Networks (GNNs). All the related documentation including public datasets, dataloaders, convolution layers could be found here and here.

I strongly recommend to learn the package from the official tutorials

Different GNN designs and their implementations could be found here

some tips


分享此文:

上一篇
seg-metrics:一个用于计算分割指标的 Python 包
下一篇
多元变量回归分析