Spaces:
Sleeping
Sleeping
File size: 529 Bytes
4dda074 e240dad 4dda074 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | _target_: lightning.Trainer
default_root_dir: ${paths.output_dir}
min_epochs: 1
max_epochs: 50
precision: 32
gradient_clip_val: 0.5
gradient_clip_algorithm: norm
# deterministic algorithms might make training slower but offers more reproducibility than only setting seeds
# True: use deterministic always, throwing an error on an operation that doesn't support deterministic
# warn: use deterministic when possible, throwing warnings on operations that don’t support deterministic
deterministic: warn
inference_mode: True |