Datasets:
Tasks:
Object Detection
Formats:
webdataset
Languages:
English
Size:
< 1K
ArXiv:
Tags:
webdataset
License:
Tony Fang
commited on
Commit
·
0575f2f
1
Parent(s):
65d0b74
added yaml files in yolo_benchmark
Browse files
.gitignore
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
*.png
|
2 |
+
*.txt
|
3 |
+
*.out
|
4 |
+
*.pt
|
5 |
+
*.cache
|
6 |
+
*submit.sh
|
7 |
+
object_detector_benchmark/yolo_benchmark/*
|
8 |
+
!object_detector_benchmark/yolo_benchmark/
|
9 |
+
!object_detector_benchmark/yolo_benchmark/*.yaml
|
object_detector_benchmark/yolo_benchmark/experiment.yaml
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
task: detect
|
2 |
+
mode: train
|
3 |
+
|
4 |
+
data: full_dataset.yaml
|
5 |
+
model: yolo11n.pt
|
6 |
+
pretrained: True
|
7 |
+
name: yolo11n
|
8 |
+
epochs: 100
|
9 |
+
patience: 10
|
10 |
+
batch: 5
|
11 |
+
imgsz: 640
|
12 |
+
device: 0
|
13 |
+
workers: 8
|
14 |
+
name: train
|
15 |
+
optimizer: SGD
|
16 |
+
single_cls: True
|
17 |
+
cos_lr: False
|
18 |
+
verbose: True
|
19 |
+
lr0: 0.01
|
20 |
+
lrf: 0.0001
|
21 |
+
momentum: 0.937
|
22 |
+
weight_decay: 0.0005
|
23 |
+
warmup_epochs: 3
|
24 |
+
warmup_momentum: 0.8
|
25 |
+
warmup_bias_lr: 0.1
|
26 |
+
|
27 |
+
hsv_h: 0.0 # (float) image HSV-Hue augmentation (fraction)
|
28 |
+
hsv_s: 0.0 # (float) image HSV-Saturation augmentation (fraction)
|
29 |
+
hsv_v: 0.0 # (float) image HSV-Value augmentation (fraction)
|
30 |
+
degrees: 0.0 # (float) image rotation (+/- deg)
|
31 |
+
translate: 0.0 # (float) image translation (+/- fraction)
|
32 |
+
scale: 0.0 # (float) image scale (+/- gain)
|
33 |
+
shear: 0.0 # (float) image shear (+/- deg)
|
34 |
+
perspective: 0.0 # (float) image perspective (+/- fraction), range 0-0.001
|
35 |
+
flipud: 0.0 # (float) image flip up-down (probability)
|
36 |
+
fliplr: 0.0 # (float) image flip left-right (probability)
|
37 |
+
mosaic: 0.0 # (float) image mosaic (probability)
|
38 |
+
mixup: 0.0 # (float) image mixup (probability)
|
39 |
+
copy_paste: 0.0 # (float) segment copy-paste (probability)
|
40 |
+
auto_augment: None
|
41 |
+
erasing: 0.0
|
42 |
+
crop_fraction: 0.0
|
object_detector_benchmark/yolo_benchmark/full_dataset.yaml
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# full dataset path
|
2 |
+
train: Paper1/8-calves/object_detector_benchmark/8_calves_yolo/train/images
|
3 |
+
val: Paper1/8-calves/object_detector_benchmark/8_calves_yolo/val/images
|
4 |
+
test: Paper1/8-calves/object_detector_benchmark/8_calves_yolo/test/images
|
5 |
+
# Number of classes
|
6 |
+
nc: 1
|
7 |
+
|
8 |
+
# Class names
|
9 |
+
names: ['calf']
|