-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AdamW config with defaut weight decay (#35)
* AdamW with XP in an experiment * Bump version V2.4.3
- Loading branch information
1 parent
0841b6b
commit 2bdba2b
Showing
4 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# @package _global_ | ||
defaults: | ||
- override /datamodule/transforms/augmentations: light.yaml | ||
- override /model/optimizer: AdamW.yaml | ||
|
||
|
||
logger: | ||
comet: | ||
experiment_name: "RandLaNet - FR Data" | ||
|
||
datamodule: | ||
batch_size: 32 | ||
|
||
trainer: | ||
num_sanity_val_steps: 2 | ||
min_epochs: 100 | ||
max_epochs: 150 | ||
# gpus: [1] | ||
|
||
callbacks: | ||
early_stopping: | ||
patience: 20 | ||
|
||
predict: | ||
interpolation_k: 10 |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
_target_: functools.partial | ||
_args_: | ||
- "${get_method:torch.optim.AdamW}" | ||
lr: ${model.lr} # not needed since we give it in model.py ? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters