diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-09-30 23:08:31 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-09-30 23:08:31 +0200 |
commit | 9e98c19d9e218b465a7d03c1b22c1d480f065741 (patch) | |
tree | 03e37dbf0f753976f055a7434ae6dbb9112129c0 /training/conf/network/decoder | |
parent | 4f0469f755507b15dae65510b2000a0ce077b423 (diff) |
Updates to config files
Diffstat (limited to 'training/conf/network/decoder')
-rw-r--r-- | training/conf/network/decoder/vae_decoder.yaml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/training/conf/network/decoder/vae_decoder.yaml b/training/conf/network/decoder/vae_decoder.yaml index 8b5502d..aed5733 100644 --- a/training/conf/network/decoder/vae_decoder.yaml +++ b/training/conf/network/decoder/vae_decoder.yaml @@ -1,7 +1,9 @@ _target_: text_recognizer.networks.vqvae.decoder.Decoder out_channels: 1 hidden_dim: 32 -channels_multipliers: [4, 4, 2, 1] +channels_multipliers: [4, 2, 1] dropout_rate: 0.0 activation: mish use_norm: true +num_residuals: 4 +residual_channels: 32 |