Path: blob/master/models/hub/yolov3-tiny.yaml
1641 views
# YOLOv5 🚀 by Ultralytics, GPL-3.0 license12# Parameters3nc: 80 # number of classes4depth_multiple: 1.0 # model depth multiple5width_multiple: 1.0 # layer channel multiple6anchors:7- [10,14, 23,27, 37,58] # P4/168- [81,82, 135,169, 344,319] # P5/32910# YOLOv3-tiny backbone11backbone:12# [from, number, module, args]13[[-1, 1, Conv, [16, 3, 1]], # 014[-1, 1, nn.MaxPool2d, [2, 2, 0]], # 1-P1/215[-1, 1, Conv, [32, 3, 1]],16[-1, 1, nn.MaxPool2d, [2, 2, 0]], # 3-P2/417[-1, 1, Conv, [64, 3, 1]],18[-1, 1, nn.MaxPool2d, [2, 2, 0]], # 5-P3/819[-1, 1, Conv, [128, 3, 1]],20[-1, 1, nn.MaxPool2d, [2, 2, 0]], # 7-P4/1621[-1, 1, Conv, [256, 3, 1]],22[-1, 1, nn.MaxPool2d, [2, 2, 0]], # 9-P5/3223[-1, 1, Conv, [512, 3, 1]],24[-1, 1, nn.ZeroPad2d, [[0, 1, 0, 1]]], # 1125[-1, 1, nn.MaxPool2d, [2, 1, 0]], # 1226]2728# YOLOv3-tiny head29head:30[[-1, 1, Conv, [1024, 3, 1]],31[-1, 1, Conv, [256, 1, 1]],32[-1, 1, Conv, [512, 3, 1]], # 15 (P5/32-large)3334[-2, 1, Conv, [128, 1, 1]],35[-1, 1, nn.Upsample, [None, 2, 'nearest']],36[[-1, 8], 1, Concat, [1]], # cat backbone P437[-1, 1, Conv, [256, 3, 1]], # 19 (P4/16-medium)3839[[19, 15], 1, Detect, [nc, anchors]], # Detect(P4, P5)40]414243