Skip to content

Commit

Permalink
use n_layers=1 for readout
Browse files Browse the repository at this point in the history
  • Loading branch information
corochann committed Dec 9, 2019
1 parent 761de72 commit 183b6a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chainer_chemistry/models/megnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def __init__(self, out_dim=32, n_update_layers=3, dropout_ratio=-1,
skip_intermediate=(i == 0)
) for i in range(n_update_layers)])
self.readout = MEGNetReadout(out_dim=out_dim, in_channels=32,
n_layers=16, processing_steps=3,
n_layers=1, processing_steps=3,
dropout_ratio=dropout_ratio,
activation=activation)

Expand Down

0 comments on commit 183b6a1

Please sign in to comment.