diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-08-06 02:42:45 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-08-06 02:42:45 +0200 |
commit | 3ab82ad36bce6fa698a13a029a0694b75a5947b7 (patch) | |
tree | 136f71a62d60e3ccf01e1f95d64bb4d9f9c9befe /training/conf/experiment | |
parent | 1bccf71cf4eec335001b50a8fbc0c991d0e6d13a (diff) |
Fix VQVAE into en/decoder, bug in wandb artifact code uploading
Diffstat (limited to 'training/conf/experiment')
-rw-r--r-- | training/conf/experiment/htr_char.yaml | 7 | ||||
-rw-r--r-- | training/conf/experiment/vqvae.yaml | 8 |
2 files changed, 11 insertions, 4 deletions
diff --git a/training/conf/experiment/htr_char.yaml b/training/conf/experiment/htr_char.yaml index 77126ae..e51a116 100644 --- a/training/conf/experiment/htr_char.yaml +++ b/training/conf/experiment/htr_char.yaml @@ -3,10 +3,15 @@ defaults: - override /mapping: characters +datamodule: + word_pieces: false + criterion: ignore_index: 3 network: - num_classes: 89 + num_classes: 58 pad_index: 3 + +model: max_output_len: 682 diff --git a/training/conf/experiment/vqvae.yaml b/training/conf/experiment/vqvae.yaml index 699612e..eb40f3b 100644 --- a/training/conf/experiment/vqvae.yaml +++ b/training/conf/experiment/vqvae.yaml @@ -8,14 +8,16 @@ defaults: trainer: max_epochs: 64 - gradient_clip_val: 0.25 + # gradient_clip_val: 0.25 datamodule: - batch_size: 32 + batch_size: 16 lr_scheduler: epochs: 64 - steps_per_epoch: 624 + steps_per_epoch: 1245 optimizer: lr: 1.0e-3 + +summary: [1, 576, 640] |