Upload 26 files
Browse files- .gitattributes +1 -0
- runs/detect/train/F1_curve.png +0 -0
- runs/detect/train/PR_curve.png +0 -0
- runs/detect/train/P_curve.png +0 -0
- runs/detect/train/R_curve.png +0 -0
- runs/detect/train/args.yaml +106 -0
- runs/detect/train/confusion_matrix.png +0 -0
- runs/detect/train/confusion_matrix_normalized.png +0 -0
- runs/detect/train/events.out.tfevents.1720967181.PCZoneGaming.14596.0 +3 -0
- runs/detect/train/labels.jpg +0 -0
- runs/detect/train/labels_correlogram.jpg +0 -0
- runs/detect/train/predictions.json +3 -0
- runs/detect/train/results.csv +11 -0
- runs/detect/train/train_batch0.jpg +0 -0
- runs/detect/train/train_batch1.jpg +0 -0
- runs/detect/train/train_batch2.jpg +0 -0
- runs/detect/train/val_batch0_labels.jpg +0 -0
- runs/detect/train/val_batch0_pred.jpg +0 -0
- runs/detect/train/val_batch1_labels.jpg +0 -0
- runs/detect/train/val_batch1_pred.jpg +0 -0
- runs/detect/train/val_batch2_labels.jpg +0 -0
- runs/detect/train/val_batch2_pred.jpg +0 -0
- runs/detect/train/weights/best.pt +3 -0
- runs/detect/train/weights/last.pt +3 -0
- yolo-world inference.ipynb +0 -0
- yolov8s-worldv2-lvis.pt +3 -0
- yolov8s-worldv2.pt +3 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
runs/detect/train/predictions.json filter=lfs diff=lfs merge=lfs -text
|
runs/detect/train/F1_curve.png
ADDED
runs/detect/train/PR_curve.png
ADDED
runs/detect/train/P_curve.png
ADDED
runs/detect/train/R_curve.png
ADDED
runs/detect/train/args.yaml
ADDED
@@ -0,0 +1,106 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
task: detect
|
2 |
+
mode: train
|
3 |
+
model: yolov8s-worldv2.pt
|
4 |
+
data: lvis.yaml
|
5 |
+
epochs: 10
|
6 |
+
time: null
|
7 |
+
patience: 100
|
8 |
+
batch: 16
|
9 |
+
imgsz: 640
|
10 |
+
save: true
|
11 |
+
save_period: -1
|
12 |
+
cache: false
|
13 |
+
device: 0
|
14 |
+
workers: 8
|
15 |
+
project: null
|
16 |
+
name: train
|
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: false
|
70 |
+
opset: null
|
71 |
+
workspace: 4
|
72 |
+
nms: false
|
73 |
+
lr0: 0.01
|
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 |
+
label_smoothing: 0.0
|
86 |
+
nbs: 64
|
87 |
+
hsv_h: 0.015
|
88 |
+
hsv_s: 0.7
|
89 |
+
hsv_v: 0.4
|
90 |
+
degrees: 0.0
|
91 |
+
translate: 0.1
|
92 |
+
scale: 0.5
|
93 |
+
shear: 0.0
|
94 |
+
perspective: 0.0
|
95 |
+
flipud: 0.0
|
96 |
+
fliplr: 0.5
|
97 |
+
bgr: 0.0
|
98 |
+
mosaic: 1.0
|
99 |
+
mixup: 0.0
|
100 |
+
copy_paste: 0.0
|
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\train
|
runs/detect/train/confusion_matrix.png
ADDED
runs/detect/train/confusion_matrix_normalized.png
ADDED
runs/detect/train/events.out.tfevents.1720967181.PCZoneGaming.14596.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:860c1919304fa5f90b8e6aa64cd01d91710355da5aa49f51a231a20fe17fd1df
|
3 |
+
size 249721
|
runs/detect/train/labels.jpg
ADDED
runs/detect/train/labels_correlogram.jpg
ADDED
runs/detect/train/predictions.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0bfc9f4cab04e3287fb553e3dc77e9d461e6e66c475ef6d9c31b202849799a62
|
3 |
+
size 573094346
|
runs/detect/train/results.csv
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
epoch, train/box_loss, train/cls_loss, train/dfl_loss, metrics/precision(B), metrics/recall(B), metrics/mAP50(B), metrics/mAP50-95(B), val/box_loss, val/cls_loss, val/dfl_loss, lr/pg0, lr/pg1, lr/pg2
|
2 |
+
1, 1.2462, 2.0376, 1.2333, 0.43617, 0.1067, 0.06331, 0.04623, 1.1947, 3.6806, 1.1721, 0.0033328, 0.0033328, 0.0033328
|
3 |
+
2, 1.284, 1.9294, 1.2357, 0.50394, 0.10376, 0.06445, 0.04667, 1.2134, 3.4415, 1.1797, 0.0060062, 0.0060062, 0.0060062
|
4 |
+
3, 1.3613, 2.0508, 1.2744, 0.54677, 0.09808, 0.06043, 0.04383, 1.2311, 3.4689, 1.1936, 0.0080196, 0.0080196, 0.0080196
|
5 |
+
4, 1.3843, 2.0762, 1.2889, 0.54283, 0.10519, 0.06449, 0.04686, 1.2056, 3.4312, 1.184, 0.00703, 0.00703, 0.00703
|
6 |
+
5, 1.3278, 1.943, 1.2574, 0.55773, 0.10675, 0.07122, 0.05226, 1.1726, 3.3207, 1.1658, 0.00604, 0.00604, 0.00604
|
7 |
+
6, 1.2834, 1.8363, 1.2317, 0.54744, 0.11553, 0.07612, 0.05611, 1.15, 3.2407, 1.1525, 0.00505, 0.00505, 0.00505
|
8 |
+
7, 1.2417, 1.7482, 1.208, 0.52059, 0.12078, 0.07996, 0.0593, 1.1345, 3.1952, 1.1439, 0.00406, 0.00406, 0.00406
|
9 |
+
8, 1.2045, 1.664, 1.1863, 0.51724, 0.124, 0.08257, 0.06147, 1.1243, 3.1576, 1.1369, 0.00307, 0.00307, 0.00307
|
10 |
+
9, 1.1682, 1.5835, 1.1653, 0.51374, 0.12638, 0.08452, 0.06315, 1.1173, 3.1269, 1.132, 0.00208, 0.00208, 0.00208
|
11 |
+
10, 1.1334, 1.5046, 1.1456, 0.51686, 0.12547, 0.08629, 0.06458, 1.1122, 3.1097, 1.1283, 0.00109, 0.00109, 0.00109
|
runs/detect/train/train_batch0.jpg
ADDED
runs/detect/train/train_batch1.jpg
ADDED
runs/detect/train/train_batch2.jpg
ADDED
runs/detect/train/val_batch0_labels.jpg
ADDED
runs/detect/train/val_batch0_pred.jpg
ADDED
runs/detect/train/val_batch1_labels.jpg
ADDED
runs/detect/train/val_batch1_pred.jpg
ADDED
runs/detect/train/val_batch2_labels.jpg
ADDED
runs/detect/train/val_batch2_pred.jpg
ADDED
runs/detect/train/weights/best.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:931c7cf872dabe25e61f38d48c2dd2228884ab04434aeee5de0a8fecdf656d9e
|
3 |
+
size 27028673
|
runs/detect/train/weights/last.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:68dc75cdf021245b0b8526fcc9ff6760917a8db50893b6328f06b9adecc09502
|
3 |
+
size 27028673
|
yolo-world inference.ipynb
ADDED
The diff for this file is too large to render.
See raw diff
|
|
yolov8s-worldv2-lvis.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:931c7cf872dabe25e61f38d48c2dd2228884ab04434aeee5de0a8fecdf656d9e
|
3 |
+
size 27028673
|
yolov8s-worldv2.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9b2c17ab6124a913e9b3a5c170617920d91b0f01111a8479da69f00e2cf27792
|
3 |
+
size 25923032
|