We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17d9d46 commit 92f4457Copy full SHA for 92f4457
.gitignore
@@ -1,3 +1,10 @@
1
+# ignore map, miou, datasets
2
+map_out/
3
+miou_out/
4
+VOCdevkit/
5
+datasets/
6
+Medical_Datasets/
7
+
8
# Byte-compiled / optimized / DLL files
9
__pycache__/
10
*.py[cod]
train.py
@@ -239,7 +239,7 @@
239
#-------------------------------------------------------------------#
240
# 判断当前batch_size与64的差别,自适应调整学习率
241
242
- nbs = 64 if not Freeze_Train else 32 # nominal batch size
+ nbs = 64
243
Init_lr = max(batch_size / nbs * Init_lr, 1e-4)
244
Min_lr = max(batch_size / nbs * Min_lr, 1e-6)
245
0 commit comments