LykaAustria commited on
Commit
c8a0928
·
verified ·
1 Parent(s): 1848d5c

Upload 3 files

Browse files
Files changed (3) hide show
  1. config.yaml +62 -106
  2. config_cvat.yaml +64 -0
  3. data.yaml +2 -6
config.yaml CHANGED
@@ -1,106 +1,62 @@
1
- task: detect
2
- mode: train
3
- model: yolo11n.pt
4
- data: data.yaml
5
- epochs: 1000
6
- time: null
7
- patience: 100
8
- batch: 16
9
- imgsz: 640
10
- save: true
11
- save_period: -1
12
- cache: false
13
- device: null
14
- workers: 8
15
- project: null
16
- name: train2
17
- exist_ok: false
18
- pretrained: true
19
- optimizer: auto
20
- verbose: true
21
- seed: 0
22
- deterministic: true
23
- single_cls: false
24
- rect: false
25
- cos_lr: false
26
- close_mosaic: 10
27
- resume: false
28
- amp: true
29
- fraction: 1.0
30
- profile: false
31
- freeze: null
32
- multi_scale: false
33
- overlap_mask: true
34
- mask_ratio: 4
35
- dropout: 0.0
36
- val: true
37
- split: val
38
- save_json: false
39
- save_hybrid: false
40
- conf: null
41
- iou: 0.7
42
- max_det: 300
43
- half: false
44
- dnn: false
45
- plots: true
46
- source: null
47
- vid_stride: 1
48
- stream_buffer: false
49
- visualize: false
50
- augment: false
51
- agnostic_nms: false
52
- classes: null
53
- retina_masks: false
54
- embed: null
55
- show: false
56
- save_frames: false
57
- save_txt: false
58
- save_conf: false
59
- save_crop: false
60
- show_labels: true
61
- show_conf: true
62
- show_boxes: true
63
- line_width: null
64
- format: torchscript
65
- keras: false
66
- optimize: false
67
- int8: false
68
- dynamic: false
69
- simplify: true
70
- opset: null
71
- workspace: null
72
- nms: false
73
- lr0: 0.001
74
- lrf: 0.01
75
- momentum: 0.937
76
- weight_decay: 0.0005
77
- warmup_epochs: 3.0
78
- warmup_momentum: 0.8
79
- warmup_bias_lr: 0.1
80
- box: 7.5
81
- cls: 0.5
82
- dfl: 1.5
83
- pose: 12.0
84
- kobj: 1.0
85
- nbs: 64
86
- hsv_h: 0.015
87
- hsv_s: 0.7
88
- hsv_v: 0.4
89
- degrees: 0.0
90
- translate: 0.1
91
- scale: 0.5
92
- shear: 0.0
93
- perspective: 0.0
94
- flipud: 0.0
95
- fliplr: 0.5
96
- bgr: 0.0
97
- mosaic: 1.0
98
- mixup: 0.0
99
- copy_paste: 0.0
100
- copy_paste_mode: flip
101
- auto_augment: randaugment
102
- erasing: 0.4
103
- crop_fraction: 1.0
104
- cfg: null
105
- tracker: botsort.yaml
106
- save_dir: runs/detect/train2
 
1
+
2
+ # path: C:\\Users\\LykaA\\Downloads\\Lyka sgtech\\LEARN\\Image Annotation\\CVAT\\finetune_yolov8\\finetuning_yolo\\code\\small_dataset_from_lyka\\data # objects test
3
+ path: C:\\Users\\LykaA\\Downloads\\Lyka sgtech\\LEARN\\Image Annotation\\CVAT\\finetune_yolov8\\finetuning_yolo\\code\\activities_dataset\\data # activities test
4
+ train: train # train images (relative to 'path')
5
+ val: validation # val images (relative to 'path')
6
+
7
+ # Classes
8
+ nc: 53
9
+ names:
10
+ 0: Person
11
+ 1: Scooter
12
+ 2: bottle
13
+ 3: Wheelchair
14
+ 4: Skipping rope
15
+ 5: food
16
+ 6: Phone
17
+ 7: Cup
18
+ 8: Book
19
+ 9: Cloth
20
+ 10: Shoes
21
+ 11: Bicycle
22
+ 12: Fishing Rod
23
+ 13: Skating Shoes
24
+ 14: Toy
25
+ 15: Headphone
26
+ 16: Jogging
27
+ 17: Drinking
28
+ 18: Comforting
29
+ 19: Crying
30
+ 20: Throwing litter
31
+ 21: Tying
32
+ 22: Scooting
33
+ 23: Cycling
34
+ 24: Sliding
35
+ 25: Climbing
36
+ 26: Scolding
37
+ 27: Guiding
38
+ 28: Talking
39
+ 29: Reading
40
+ 30: Wiping
41
+ 31: Pushing
42
+ 32: Preparing
43
+ 33: Holding
44
+ 34: Waiting
45
+ 35: Running
46
+ 36: Playing
47
+ 37: Exercising
48
+ 38: Photography
49
+ 39: Selfie
50
+ 40: Eating
51
+ 41: Looking
52
+ 42: Pointing
53
+ 43: Watching
54
+ 44: Fishing
55
+ 45: Falling
56
+ 46: Searching
57
+ 47: Shouting
58
+ 48: Laughing
59
+ 49: Shocked
60
+ 50: Swinging
61
+ 51: Clapping
62
+ 52: Resting
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
config_cvat.yaml ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model:
2
+ type: YOLOv8
3
+ framework: PyTorch
4
+ weights: C:\Users\LykaA\Downloads\Lyka sgtech\LEARN\Image Annotation\CVAT\finetune_yolov8\finetuning_yolo\code\runs\detect rain2\weightsest.pt
5
+ input_size: [640, 640]
6
+ inference:
7
+ confidence_threshold: 0.25
8
+ iou_threshold: 0.45
9
+ max_detections: 300
10
+ classes:
11
+ - 0: Person
12
+ - 1: Scooter
13
+ - 2: Wheelchair
14
+ - 3: Phone
15
+ - 4: Cup
16
+ - 5: Book
17
+ - 6: Cloth
18
+ - 7: Shoes
19
+ - 8: Bicycle
20
+ - 9: Skating Shoes
21
+ - 10: Toy
22
+ - 11: Headphone
23
+ - 12: Food
24
+ - 13: Bottle
25
+ - 14: Ball
26
+ - 15: Map
27
+ - 16: Ice cream
28
+ - 17: Camera
29
+ - 18: Shovel
30
+ - 19: Sandcastle bucket
31
+ - 20: Chair
32
+ - 21: Trolley
33
+ - 22: Swimming float
34
+ - 23: Slide
35
+ - 24: Water
36
+ - 25: Plate
37
+ - 26: Tray
38
+ - 27: Wallet
39
+ - 28: Ipad
40
+ - 29: Luggage
41
+ - 30: Car
42
+ - 31: Package
43
+ - 32: Microphone
44
+ - 33: Cleaning trolley
45
+ - 34: Stroller
46
+ - 35: Clothes
47
+ - 36: Flyers
48
+ - 37: Water can
49
+ - 38: Compost
50
+ - 39: Pot
51
+ - 40: Plant
52
+ - 41: Pitcher
53
+ - 42: Bin
54
+ - 43: Bucket
55
+ - 44: Aquarium
56
+ - 45: Fishing net
57
+ - 46: Sandcastle
58
+ - 47: Newspaper
59
+ - 48: Shell
60
+ - 49: Sunscreen
61
+ - 50: Water gun
62
+ - 51: Bookshelf
63
+ - 52: Yarn
64
+ - 53: Baby
data.yaml CHANGED
@@ -1,9 +1,3 @@
1
-
2
- path: /home/besanhalwa/Eshan/YOLO/Try3_bigger_data_reduced_labels/code/data/nicpras_all_images/nicpras_obj_all/data # dataset root dir
3
- train: train/ # train images (relative to 'path')
4
- val: validation/ # val images (relative to 'path')
5
-
6
- # Classes
7
  names:
8
  0: Person
9
  1: Scooter
@@ -59,3 +53,5 @@ names:
59
  51: Bookshelf
60
  52: Yarn
61
  53: Baby
 
 
 
 
 
 
 
 
 
1
  names:
2
  0: Person
3
  1: Scooter
 
53
  51: Bookshelf
54
  52: Yarn
55
  53: Baby
56
+ path: .
57
+ train: train.txt