Skip to content

Commit f007133

Browse files
committed
fix bug in quick_start
1 parent 2ba64e1 commit f007133

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/source/quick_start/md/quick_start.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ After defining the GCN layer, we can construct a deeper GCN model with two GCN l
9595
```python
9696
output = gcn_layer(gw, gw.node_feat['feature'],
9797
hidden_size=8, name='gcn_layer_1', activation='relu')
98-
output = gcn_layer(gw, output, hidden_size=2,
98+
output = gcn_layer(gw, output, hidden_size=1,
9999
name='gcn_layer_2', activation=None)
100100
```
101101

0 commit comments

Comments
 (0)