From 02929c11f7f0ba3d161e7ca5f0ae55cd2e0a5a6f Mon Sep 17 00:00:00 2001 From: rusty1s Date: Wed, 15 May 2019 07:15:45 +0200 Subject: [PATCH] typo --- docs/source/notes/introduction.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/notes/introduction.rst b/docs/source/notes/introduction.rst index f83a90bee8ba..7c9553ed7eec 100644 --- a/docs/source/notes/introduction.rst +++ b/docs/source/notes/introduction.rst @@ -326,7 +326,7 @@ In addition, we can use the ``transform`` argument to randomly augment a ``Data` from torch_geometric.datasets import ShapeNet dataset = ShapeNet(root='/tmp/ShapeNet', category='Airplane', - pre_transform=T.NNGraph(k=6), + pre_transform=T.KNNGraph(k=6), transform=T.RandomTranslate(0.01)) data[0]