Skip to content

Commit 7177aba

Browse files
authored
Update config.py
changed lr to 1e-5
1 parent 7b09333 commit 7177aba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626

2727
resume = not True # False for trainig from scratch, True for loading a previously saved weight
2828
ckpt='model01.pth' # model file path to load the weights from, only useful when resume is True
29-
lr = 3e-6 # learning rate
30-
epochs = 3 # epochs to train for
29+
lr = 1e-5 # learning rate
30+
epochs = 12 # epochs to train for
3131

3232
# batch size for train and val loaders
3333
batch_size = 32 # try decreasing the batch_size if there is a memory error

0 commit comments

Comments
 (0)