当前位置:网站首页>Mmdetection learning rate and batch_ Size relationship
Mmdetection learning rate and batch_ Size relationship
2022-07-03 14:53:00 【swust_ fang】
commonly mmdetection The learning rate of the reproduced articles is corresponding config Under the document , yes 0.01 perhaps 0.02.
If you want to reproduce your thesis , however gpu inadequate , For example, there is only one piece gpu, How to set the learning rate
But the learning rate of the original thesis is 0.01,samples_per_gpu=2,gpu_num = 8
Original thesis batch_size = samples_per_gpu * gpu_num =16
that batch_size*LR This value is constant
If you only have one piece gpu,samples_per_gpu=8,batch_size=8, Your new learning rate lr = 0.005
If you have two pieces gpu,sample_per_gpu=2,batch_size=4, So the new learning rate lr=0.025
If you have 4 block gpu,sample_per_gpu=4,batch_size=16, Constant learning rate ,lr=0.01
边栏推荐
- Address book sorting
- How can entrepreneurial teams implement agile testing to improve quality and efficiency? Voice network developer entrepreneurship lecture Vol.03
- Piwigo 2.7.1 sqli learning
- dllexport和dllimport
- Zzuli:1041 sum of sequence 2
- Zzuli:1042 sum of sequence 3
- Pyqt interface production (login + jump page)
- Zzuli:1057 prime number determination
- [opengl] advanced chapter of texture - principle of flowmap
- Zzuli:1040 sum of sequence 1
猜你喜欢

Adobe Premiere Pro 15.4 has been released. It natively supports Apple M1 and adds the function of speech to text

On MEM series functions of C language

Analysis of gene family characteristics - chromosome location analysis

Talking about part of data storage in C language

Tonybot humanoid robot starts for the first time 0630

ASTC texture compression (adaptive scalable texture compression)

【微信小程序】WXSS 模板样式

5-1 blocking / non blocking, synchronous / asynchronous
![[engine development] rendering architecture and advanced graphics programming](/img/a4/3526a4e0f68e49c1aa5ce23b578781.jpg)
[engine development] rendering architecture and advanced graphics programming

QT program font becomes larger on computers with different resolutions, overflowing controls
随机推荐
C language memory function
7-3 count the number of words in a line of text
【7.3】146. LRU caching mechanism
cpu飙升排查方法
Some concepts about agile
Paper sharing: generating playful palettes from images
远程服务器后台挂起 nohup
5.2-5.3
Byte practice surface longitude
Several sentences extracted from the book "leather bag"
.NET六大设计原则个人白话理解,有误请大神指正
Zzuli:1042 sum of sequence 3
Luogu p3065 [usaco12dec]first! G problem solution
Yolov5进阶之九 目标追踪实例1
Zzuli:1057 prime number determination
[opengl] bone animation blending effect
C # realizes the login interface, and the password asterisk is displayed (hide the input password)
Centos7 deployment sentry redis (with architecture diagram, clear and easy to understand)
Detailed explanation of four modes of distributed transaction (Seata)
mmdetection 学习率与batch_size关系