-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
109 changed files
with
25,670 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
path: ../datasets/coco # dataset root dir | ||
train: train2017.txt # train images (relative to 'path') 118287 images | ||
val: val2017.txt # val images (relative to 'path') 5000 images | ||
test: test-dev2017.txt # 20288 of 40670 images, submit to https://competitions.codalab.org/competitions/20794 | ||
|
||
# Classes | ||
names: | ||
0: person | ||
1: bicycle | ||
2: car | ||
3: motorcycle | ||
4: airplane | ||
5: bus | ||
6: train | ||
7: truck | ||
8: boat | ||
9: traffic light | ||
10: fire hydrant | ||
11: stop sign | ||
12: parking meter | ||
13: bench | ||
14: bird | ||
15: cat | ||
16: dog | ||
17: horse | ||
18: sheep | ||
19: cow | ||
20: elephant | ||
21: bear | ||
22: zebra | ||
23: giraffe | ||
24: backpack | ||
25: umbrella | ||
26: handbag | ||
27: tie | ||
28: suitcase | ||
29: frisbee | ||
30: skis | ||
31: snowboard | ||
32: sports ball | ||
33: kite | ||
34: baseball bat | ||
35: baseball glove | ||
36: skateboard | ||
37: surfboard | ||
38: tennis racket | ||
39: bottle | ||
40: wine glass | ||
41: cup | ||
42: fork | ||
43: knife | ||
44: spoon | ||
45: bowl | ||
46: banana | ||
47: apple | ||
48: sandwich | ||
49: orange | ||
50: broccoli | ||
51: carrot | ||
52: hot dog | ||
53: pizza | ||
54: donut | ||
55: cake | ||
56: chair | ||
57: couch | ||
58: potted plant | ||
59: bed | ||
60: dining table | ||
61: toilet | ||
62: tv | ||
63: laptop | ||
64: mouse | ||
65: remote | ||
66: keyboard | ||
67: cell phone | ||
68: microwave | ||
69: oven | ||
70: toaster | ||
71: sink | ||
72: refrigerator | ||
73: book | ||
74: clock | ||
75: vase | ||
76: scissors | ||
77: teddy bear | ||
78: hair drier | ||
79: toothbrush | ||
|
||
|
||
# Download script/URL (optional) | ||
download: | | ||
from utils.general import download, Path | ||
# Download labels | ||
#segments = True # segment or box labels | ||
#dir = Path(yaml['path']) # dataset root dir | ||
#url = 'https://github.com/WongKinYiu/yolov7/releases/download/v0.1/' | ||
#urls = [url + ('coco2017labels-segments.zip' if segments else 'coco2017labels.zip')] # labels | ||
#download(urls, dir=dir.parent) | ||
# Download data | ||
#urls = ['http://images.cocodataset.org/zips/train2017.zip', # 19G, 118k images | ||
# 'http://images.cocodataset.org/zips/val2017.zip', # 1G, 5k images | ||
# 'http://images.cocodataset.org/zips/test2017.zip'] # 7G, 41k images (optional) | ||
#download(urls, dir=dir / 'images', threads=3) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
lr0: 0.01 # initial learning rate (SGD=1E-2, Adam=1E-3) | ||
lrf: 0.01 # final OneCycleLR learning rate (lr0 * lrf) | ||
momentum: 0.937 # SGD momentum/Adam beta1 | ||
weight_decay: 0.0005 # optimizer weight decay 5e-4 | ||
warmup_epochs: 3.0 # warmup epochs (fractions ok) | ||
warmup_momentum: 0.8 # warmup initial momentum | ||
warmup_bias_lr: 0.1 # warmup initial bias lr | ||
box: 7.5 # box loss gain | ||
cls: 0.5 # cls loss gain | ||
cls_pw: 1.0 # cls BCELoss positive_weight | ||
obj: 0.7 # obj loss gain (scale with pixels) | ||
obj_pw: 1.0 # obj BCELoss positive_weight | ||
dfl: 1.5 # dfl loss gain | ||
iou_t: 0.20 # IoU training threshold | ||
anchor_t: 5.0 # anchor-multiple threshold | ||
# anchors: 3 # anchors per output layer (0 to ignore) | ||
fl_gamma: 0.0 # focal loss gamma (efficientDet default gamma=1.5) | ||
hsv_h: 0.015 # image HSV-Hue augmentation (fraction) | ||
hsv_s: 0.7 # image HSV-Saturation augmentation (fraction) | ||
hsv_v: 0.4 # image HSV-Value augmentation (fraction) | ||
degrees: 0.0 # image rotation (+/- deg) | ||
translate: 0.1 # image translation (+/- fraction) | ||
scale: 0.9 # image scale (+/- gain) | ||
shear: 0.0 # image shear (+/- deg) | ||
perspective: 0.0 # image perspective (+/- fraction), range 0-0.001 | ||
flipud: 0.5 # image flip up-down (probability) | ||
fliplr: 0.5 # image flip left-right (probability) | ||
mosaic: 1.0 # image mosaic (probability) | ||
mixup: 0.15 # image mixup (probability) | ||
copy_paste: 0.3 # segment copy-paste (probability) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
lr0: 0.01 # initial learning rate (SGD=1E-2, Adam=1E-3) | ||
lrf: 0.01 # final OneCycleLR learning rate (lr0 * lrf) | ||
momentum: 0.937 # SGD momentum/Adam beta1 | ||
weight_decay: 0.0005 # optimizer weight decay 5e-4 | ||
warmup_epochs: 3.0 # warmup epochs (fractions ok) | ||
warmup_momentum: 0.8 # warmup initial momentum | ||
warmup_bias_lr: 0.1 # warmup initial bias lr | ||
box: 7.5 # box loss gain | ||
cls: 0.5 # cls loss gain | ||
cls_pw: 1.0 # cls BCELoss positive_weight | ||
obj: 0.7 # obj loss gain (scale with pixels) | ||
obj_pw: 1.0 # obj BCELoss positive_weight | ||
dfl: 1.5 # dfl loss gain | ||
iou_t: 0.20 # IoU training threshold | ||
anchor_t: 5.0 # anchor-multiple threshold | ||
# anchors: 3 # anchors per output layer (0 to ignore) | ||
fl_gamma: 0.0 # focal loss gamma (efficientDet default gamma=1.5) | ||
hsv_h: 0.015 # image HSV-Hue augmentation (fraction) | ||
hsv_s: 0.7 # image HSV-Saturation augmentation (fraction) | ||
hsv_v: 0.4 # image HSV-Value augmentation (fraction) | ||
degrees: 0.0 # image rotation (+/- deg) | ||
translate: 0.1 # image translation (+/- fraction) | ||
scale: 0.9 # image scale (+/- gain) | ||
shear: 0.0 # image shear (+/- deg) | ||
perspective: 0.0 # image perspective (+/- fraction), range 0-0.001 | ||
flipud: 0.0 # image flip up-down (probability) | ||
fliplr: 0.5 # image flip left-right (probability) | ||
mosaic: 1.0 # image mosaic (probability) | ||
mixup: 0.15 # image mixup (probability) | ||
copy_paste: 0.3 # segment copy-paste (probability) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
path: G:/wb/object-detect/rgb | ||
train: train-win.txt | ||
val: val-win.txt | ||
test: test-win.txt | ||
|
||
# Classes | ||
names: | ||
0: zw | ||
1: gs | ||
2: xws | ||
3: gsyc | ||
4: dk | ||
5: pp | ||
6: qk | ||
7: zk | ||
8: yx |
Oops, something went wrong.