niobures commited on
Commit
d8c8b86
·
verified ·
1 Parent(s): c3dd1c2

YOLO v2 Tiny

Browse files
.gitattributes CHANGED
@@ -52,3 +52,4 @@ Qwen2-VL/Qwen2-VL-2B-Instruct-GGUF/Qwen2-VL-2B-Instruct-Q3_K_L.gguf filter=lfs d
52
  Qwen2-VL/Qwen2-VL-2B-Instruct-GGUF/Qwen2-VL-2B-Instruct-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
53
  Qwen2-VL/Qwen2-VL-2B-Instruct-GGUF/Qwen2-VL-2B-Instruct-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
54
  Qwen2-VL/Qwen2-VL-2B-Instruct-GGUF/Qwen2-VL-2B-Instruct-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
 
 
52
  Qwen2-VL/Qwen2-VL-2B-Instruct-GGUF/Qwen2-VL-2B-Instruct-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
53
  Qwen2-VL/Qwen2-VL-2B-Instruct-GGUF/Qwen2-VL-2B-Instruct-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
54
  Qwen2-VL/Qwen2-VL-2B-Instruct-GGUF/Qwen2-VL-2B-Instruct-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
55
+ YOLO/yolov2-tiny/yolov2-tiny-voc.weights filter=lfs diff=lfs merge=lfs -text
YOLO/yolov2-tiny/voc.names ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ aeroplane
2
+ bicycle
3
+ bird
4
+ boat
5
+ bottle
6
+ bus
7
+ car
8
+ cat
9
+ chair
10
+ cow
11
+ diningtable
12
+ dog
13
+ horse
14
+ motorbike
15
+ person
16
+ pottedplant
17
+ sheep
18
+ sofa
19
+ train
20
+ tvmonitor
YOLO/yolov2-tiny/yolov2-tiny-voc.cfg ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
18
+ learning_rate=0.001
19
+ max_batches = 40200
20
+ policy=steps
21
+ steps=-1,100,20000,30000
22
+ scales=.1,10,.1,.1
23
+
24
+ [convolutional]
25
+ batch_normalize=1
26
+ filters=16
27
+ size=3
28
+ stride=1
29
+ pad=1
30
+ activation=leaky
31
+
32
+ [maxpool]
33
+ size=2
34
+ stride=2
35
+
36
+ [convolutional]
37
+ batch_normalize=1
38
+ filters=32
39
+ size=3
40
+ stride=1
41
+ pad=1
42
+ activation=leaky
43
+
44
+ [maxpool]
45
+ size=2
46
+ stride=2
47
+
48
+ [convolutional]
49
+ batch_normalize=1
50
+ filters=64
51
+ size=3
52
+ stride=1
53
+ pad=1
54
+ activation=leaky
55
+
56
+ [maxpool]
57
+ size=2
58
+ stride=2
59
+
60
+ [convolutional]
61
+ batch_normalize=1
62
+ filters=128
63
+ size=3
64
+ stride=1
65
+ pad=1
66
+ activation=leaky
67
+
68
+ [maxpool]
69
+ size=2
70
+ stride=2
71
+
72
+ [convolutional]
73
+ batch_normalize=1
74
+ filters=256
75
+ size=3
76
+ stride=1
77
+ pad=1
78
+ activation=leaky
79
+
80
+ [maxpool]
81
+ size=2
82
+ stride=2
83
+
84
+ [convolutional]
85
+ batch_normalize=1
86
+ filters=512
87
+ size=3
88
+ stride=1
89
+ pad=1
90
+ activation=leaky
91
+
92
+ [maxpool]
93
+ size=2
94
+ stride=1
95
+
96
+ [convolutional]
97
+ batch_normalize=1
98
+ filters=1024
99
+ size=3
100
+ stride=1
101
+ pad=1
102
+ activation=leaky
103
+
104
+ ###########
105
+
106
+ [convolutional]
107
+ batch_normalize=1
108
+ size=3
109
+ stride=1
110
+ pad=1
111
+ filters=1024
112
+ activation=leaky
113
+
114
+ [convolutional]
115
+ size=1
116
+ stride=1
117
+ pad=1
118
+ filters=125
119
+ activation=linear
120
+
121
+ [region]
122
+ anchors = 1.08,1.19, 3.42,4.41, 6.63,11.38, 9.42,5.11, 16.62,10.52
123
+ bias_match=1
124
+ classes=20
125
+ coords=4
126
+ num=5
127
+ softmax=1
128
+ jitter=.2
129
+ rescore=1
130
+
131
+ object_scale=5
132
+ noobject_scale=1
133
+ class_scale=1
134
+ coord_scale=1
135
+
136
+ absolute=1
137
+ thresh = .6
138
+ random=1
YOLO/yolov2-tiny/yolov2-tiny-voc.weights ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f2f0af3c8915093d43843311ddc34f3b7838da9e9b42171c1adbba15834f196
3
+ size 63471556