Skip to content

Commit

Permalink
Update train.py comment to 'Model attributes' (#5670)
Browse files Browse the repository at this point in the history
  • Loading branch information
glenn-jocher committed Nov 16, 2021
1 parent 0453b75 commit 47fac9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion train.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def train(hyp, # path/to/hyp.yaml or hyp dictionary
if cuda and RANK != -1:
model = DDP(model, device_ids=[LOCAL_RANK], output_device=LOCAL_RANK)

# Model parameters
# Model attributes
nl = de_parallel(model).model[-1].nl # number of detection layers (to scale hyps)
hyp['box'] *= 3 / nl # scale to layers
hyp['cls'] *= nc / 80 * 3 / nl # scale to classes and layers
Expand Down

0 comments on commit 47fac9f

Please sign in to comment.