diff --git a/docs/source/md/quick_start.md b/docs/source/md/quick_start.md index 0a30c39e822cb700b84f4df37df54d7de2e80b1a..9356362127e800b53e5dca9258e251eab3868ea6 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) ```