From fe092c2cb0808be026d714dc91bb4fa2a666fe41 Mon Sep 17 00:00:00 2001 From: yelrose <270018958@qq.com> Date: Mon, 24 Jun 2019 16:41:00 +0800 Subject: [PATCH] fixed quick_start bug --- docs/source/md/quick_start.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/md/quick_start.md b/docs/source/md/quick_start.md index 0a30c39..9356362 100644 --- a/docs/source/md/quick_start.md +++ b/docs/source/md/quick_start.md @@ -95,7 +95,7 @@ After defining the GCN layer, we can construct a deeper GCN model with two GCN l ```python output = gcn_layer(gw, gw.node_feat['feature'], hidden_size=8, name='gcn_layer_1', activation='relu') -output = gcn_layer(gw, output, hidden_size=2, +output = gcn_layer(gw, output, hidden_size=1, name='gcn_layer_2', activation=None) ``` -- GitLab