yolov3-tiny.cfg 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. [net]
  2. # Testing
  3. batch=1
  4. subdivisions=1
  5. # Training
  6. # batch=64
  7. # subdivisions=2
  8. width=416
  9. height=416
  10. channels=3
  11. momentum=0.9
  12. decay=0.0005
  13. angle=0
  14. saturation = 1.5
  15. exposure = 1.5
  16. hue=.1
  17. learning_rate=0.001
  18. burn_in=1000
  19. max_batches = 500200
  20. policy=steps
  21. steps=400000,450000
  22. scales=.1,.1
  23. [convolutional]
  24. batch_normalize=1
  25. filters=16
  26. size=3
  27. stride=1
  28. pad=1
  29. activation=leaky
  30. [maxpool]
  31. size=2
  32. stride=2
  33. [convolutional]
  34. batch_normalize=1
  35. filters=32
  36. size=3
  37. stride=1
  38. pad=1
  39. activation=leaky
  40. [maxpool]
  41. size=2
  42. stride=2
  43. [convolutional]
  44. batch_normalize=1
  45. filters=64
  46. size=3
  47. stride=1
  48. pad=1
  49. activation=leaky
  50. [maxpool]
  51. size=2
  52. stride=2
  53. [convolutional]
  54. batch_normalize=1
  55. filters=128
  56. size=3
  57. stride=1
  58. pad=1
  59. activation=leaky
  60. [maxpool]
  61. size=2
  62. stride=2
  63. [convolutional]
  64. batch_normalize=1
  65. filters=256
  66. size=3
  67. stride=1
  68. pad=1
  69. activation=leaky
  70. [maxpool]
  71. size=2
  72. stride=2
  73. [convolutional]
  74. batch_normalize=1
  75. filters=512
  76. size=3
  77. stride=1
  78. pad=1
  79. activation=leaky
  80. [maxpool]
  81. size=2
  82. stride=1
  83. [convolutional]
  84. batch_normalize=1
  85. filters=1024
  86. size=3
  87. stride=1
  88. pad=1
  89. activation=leaky
  90. ###########
  91. [convolutional]
  92. batch_normalize=1
  93. filters=256
  94. size=1
  95. stride=1
  96. pad=1
  97. activation=leaky
  98. [convolutional]
  99. batch_normalize=1
  100. filters=512
  101. size=3
  102. stride=1
  103. pad=1
  104. activation=leaky
  105. [convolutional]
  106. size=1
  107. stride=1
  108. pad=1
  109. filters=255
  110. activation=linear
  111. [yolo]
  112. mask = 3,4,5
  113. anchors = 10,14, 23,27, 37,58, 81,82, 135,169, 344,319
  114. classes=80
  115. num=6
  116. jitter=.3
  117. ignore_thresh = .7
  118. truth_thresh = 1
  119. random=1
  120. [route]
  121. layers = -4
  122. [convolutional]
  123. batch_normalize=1
  124. filters=128
  125. size=1
  126. stride=1
  127. pad=1
  128. activation=leaky
  129. [upsample]
  130. stride=2
  131. [route]
  132. layers = -1, 8
  133. [convolutional]
  134. batch_normalize=1
  135. filters=256
  136. size=3
  137. stride=1
  138. pad=1
  139. activation=leaky
  140. [convolutional]
  141. size=1
  142. stride=1
  143. pad=1
  144. filters=255
  145. activation=linear
  146. [yolo]
  147. mask = 0,1,2
  148. anchors = 10,14, 23,27, 37,58, 81,82, 135,169, 344,319
  149. classes=80
  150. num=6
  151. jitter=.3
  152. ignore_thresh = .7
  153. truth_thresh = 1
  154. random=1