提交 f007133d 编写于 作者: L liweibin

fix bug in quick_start

上级 2ba64e10
...@@ -95,7 +95,7 @@ After defining the GCN layer, we can construct a deeper GCN model with two GCN l ...@@ -95,7 +95,7 @@ After defining the GCN layer, we can construct a deeper GCN model with two GCN l
```python ```python
output = gcn_layer(gw, gw.node_feat['feature'], output = gcn_layer(gw, gw.node_feat['feature'],
hidden_size=8, name='gcn_layer_1', activation='relu') 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) name='gcn_layer_2', activation=None)
``` ```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册