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.
2 parents 59d2b6d + f89c380 commit 065e4ceCopy full SHA for 065e4ce
mlperf_logging/compliance_checker/training_2.0.0/closed_maskrcnn.yaml
@@ -1,7 +1,8 @@
1
- BEGIN:
2
CODE: >
3
s.update({
4
- 'initialized_tensors': []
+ 'initialized_tensors': [],
5
+ 'global_batch_size': None,
6
})
7
- KEY:
8
NAME: weights_initialization
@@ -40,11 +41,12 @@
40
41
NAME: global_batch_size
42
REQ: EXACTLY_ONE
43
CHECK: " v['value'] > 0"
44
+ POST: " s['global_batch_size'] = v['value'] "
45
46
47
NAME: opt_base_learning_rate
48
- CHECK: " is_integer(v['value'] / 0.02) "
49
+ CHECK: " is_integer(v['value'] / 0.02) or ( s['global_batch_size'] < 16 and is_integer(0.02 / v['value']) )"
50
51
52
NAME: opt_learning_rate_warmup_steps
0 commit comments