diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-08-08 19:59:55 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-08-08 19:59:55 +0200 |
commit | 240f5e9f20032e82515fa66ce784619527d1041e (patch) | |
tree | b002d28bbfc9abe9b6af090f7db60bea0aeed6e8 /training/conf/config.yaml | |
parent | d12f70402371dda586d457af2a3df7fb5b3130ad (diff) |
Add VQGAN and loss function
Diffstat (limited to 'training/conf/config.yaml')
-rw-r--r-- | training/conf/config.yaml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/training/conf/config.yaml b/training/conf/config.yaml index c606366..5897d87 100644 --- a/training/conf/config.yaml +++ b/training/conf/config.yaml @@ -6,11 +6,13 @@ defaults: - datamodule: iam_extended_paragraphs - hydra: default - logger: wandb - - lr_scheduler: one_cycle + - lr_schedulers: + - one_cycle - mapping: word_piece - model: lit_transformer - network: conv_transformer - - optimizer: madgrad + - optimizers: + - madgrad - trainer: default seed: 4711 @@ -32,7 +34,9 @@ work_dir: ${hydra:runtime.cwd} debug: False # pretty print config at the start of the run using Rich library -print_config: True +print_config: false # disable python warnings if they annoy you -ignore_warnings: True +ignore_warnings: true + +summary: null # [1, 576, 640] |