geoffwoollard
Results
1
issues of
geoffwoollard
There is an error in `darknet.py` line 118 in https://github.com/ayooshkathuria/YOLO_v3_tutorial_from_scratch/commit/0057114edfa1522e089dc5f379a1ebd4282f0ff3 `upsample = nn.Upsample(scale_factor = 2, mode = "nearest")` should be `upsample = nn.Upsample(scale_factor = stride, mode = "nearest")` This bug...