check_anchors() bug fix #102
This commit is contained in:
parent
7c6fd4d670
commit
05b8ee5ca4
2
train.py
2
train.py
|
|
@ -199,7 +199,7 @@ def train(hyp):
|
||||||
tb_writer.add_histogram('classes', c, 0)
|
tb_writer.add_histogram('classes', c, 0)
|
||||||
|
|
||||||
# Check anchors
|
# Check anchors
|
||||||
check_anchors(dataset, anchors=model.model[-1].anchor_grid, thr=hyp['anchor_t'], imgsz=imgsz)
|
check_anchors(dataset, model=model.model[-1].anchor_grid, thr=hyp['anchor_t'], imgsz=imgsz)
|
||||||
|
|
||||||
# Exponential moving average
|
# Exponential moving average
|
||||||
ema = torch_utils.ModelEMA(model)
|
ema = torch_utils.ModelEMA(model)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue