Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion torchbenchmark/models/yolov3/yolo_train.py
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ def train_loop(epochs):
parser.add_argument('--freeze-layers', action='store_true', help='Freeze non-output layers')
opt = parser.parse_args(args)
opt.weights = last if opt.resume else opt.weights
check_git_status()
# check_git_status()
opt.cfg = check_file(opt.cfg) # check file
print(opt.data)
opt.data = check_file(opt.data) # check file
Expand Down