Skip to content

Commit

Permalink
AdamW config with defaut weight decay (#35)
Browse files Browse the repository at this point in the history
* AdamW with XP in an experiment

* Bump version V2.4.3
  • Loading branch information
CharlesGaydon authored Sep 2, 2022
1 parent 0841b6b commit 2bdba2b
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 1 deletion.
25 changes: 25 additions & 0 deletions configs/experiment/RandLaNet_base_run_FR_WD.yaml
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
4 changes: 4 additions & 0 deletions configs/model/optimizer/AdamW.yaml
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 ?
2 changes: 1 addition & 1 deletion package_metadata.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__: "2.4.2"
__version__: "2.4.3"
__name__: "myria3d"
__url__: "https://github.com/IGNF/myria3d"
__description__: "Multiclass Semantic Segmentation for Lidar Point Cloud"
Expand Down

0 comments on commit 2bdba2b

Please sign in to comment.