diff options
author | Jordan Gong <jordan.gong@protonmail.com> | 2021-03-03 14:15:41 +0800 |
---|---|---|
committer | Jordan Gong <jordan.gong@protonmail.com> | 2021-03-03 14:15:41 +0800 |
commit | d86695967fe0ddd1a64fc6ad41a83417c418f881 (patch) | |
tree | fc8d7538a8ee20a78e54a426c382940a0e73310f /config.py | |
parent | b274351a8528bc63e52afd6a5d0c34811cea84b1 (diff) | |
parent | 6a79a0eee0401318554d6859a733254b770e8e87 (diff) |
Merge branch 'python3.8' into data_parallel_py3.8
Diffstat (limited to 'config.py')
-rw-r--r-- | config.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -80,14 +80,14 @@ config: Configuration = { # Term added to the denominator # 'eps': 1e-8, # Weight decay (L2 penalty) - # 'weight_decay': 0, + 'weight_decay': 0.001, # Use AMSGrad or not # 'amsgrad': False, # Local parameters (override global ones) - 'auto_encoder': { - 'weight_decay': 0.001 - }, + # 'auto_encoder': { + # 'weight_decay': 0.001 + # }, }, 'scheduler': { # Step start to decay |