Upload folder using huggingface_hub
Browse files- .gitattributes +4 -0
- football-ball-detection/args.yaml +109 -0
- football-ball-detection/labels.jpg +3 -0
- football-ball-detection/results.csv +24 -0
- football-ball-detection/train_batch0.jpg +3 -0
- football-ball-detection/train_batch1.jpg +3 -0
- football-ball-detection/train_batch2.jpg +3 -0
- football-ball-detection/weights/best.pt +3 -0
- football-ball-detection/weights/last.pt +3 -0
.gitattributes
CHANGED
|
@@ -251,3 +251,7 @@ football-players-detection/yolo26x.pt_50_1280_new/val_batch1_labels.jpg filter=l
|
|
| 251 |
football-players-detection/yolo26x.pt_50_1280_new/val_batch1_pred.jpg filter=lfs diff=lfs merge=lfs -text
|
| 252 |
football-players-detection/yolo26x.pt_50_1280_new/val_batch2_labels.jpg filter=lfs diff=lfs merge=lfs -text
|
| 253 |
football-players-detection/yolo26x.pt_50_1280_new/val_batch2_pred.jpg filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 251 |
football-players-detection/yolo26x.pt_50_1280_new/val_batch1_pred.jpg filter=lfs diff=lfs merge=lfs -text
|
| 252 |
football-players-detection/yolo26x.pt_50_1280_new/val_batch2_labels.jpg filter=lfs diff=lfs merge=lfs -text
|
| 253 |
football-players-detection/yolo26x.pt_50_1280_new/val_batch2_pred.jpg filter=lfs diff=lfs merge=lfs -text
|
| 254 |
+
football-ball-detection/labels.jpg filter=lfs diff=lfs merge=lfs -text
|
| 255 |
+
football-ball-detection/train_batch0.jpg filter=lfs diff=lfs merge=lfs -text
|
| 256 |
+
football-ball-detection/train_batch1.jpg filter=lfs diff=lfs merge=lfs -text
|
| 257 |
+
football-ball-detection/train_batch2.jpg filter=lfs diff=lfs merge=lfs -text
|
football-ball-detection/args.yaml
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
task: detect
|
| 2 |
+
mode: train
|
| 3 |
+
model: yolo26x.pt
|
| 4 |
+
data: /workspace/turbovision/datasets/roboflow-jvuqo/football-ball-detection-rejhg/3/football-ball-detection-3/data.yaml
|
| 5 |
+
epochs: 50
|
| 6 |
+
time: null
|
| 7 |
+
patience: 100
|
| 8 |
+
batch: 2
|
| 9 |
+
imgsz: 1280
|
| 10 |
+
save: true
|
| 11 |
+
save_period: -1
|
| 12 |
+
cache: false
|
| 13 |
+
device: null
|
| 14 |
+
workers: 8
|
| 15 |
+
project: null
|
| 16 |
+
name: ball_yolo26x.pt_50_1280
|
| 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: 0.0
|
| 33 |
+
compile: false
|
| 34 |
+
overlap_mask: true
|
| 35 |
+
mask_ratio: 4
|
| 36 |
+
dropout: 0.0
|
| 37 |
+
val: true
|
| 38 |
+
split: val
|
| 39 |
+
save_json: false
|
| 40 |
+
conf: null
|
| 41 |
+
iou: 0.7
|
| 42 |
+
max_det: 300
|
| 43 |
+
half: false
|
| 44 |
+
dnn: false
|
| 45 |
+
plots: true
|
| 46 |
+
end2end: null
|
| 47 |
+
source: null
|
| 48 |
+
vid_stride: 1
|
| 49 |
+
stream_buffer: false
|
| 50 |
+
visualize: false
|
| 51 |
+
augment: false
|
| 52 |
+
agnostic_nms: false
|
| 53 |
+
classes: null
|
| 54 |
+
retina_masks: false
|
| 55 |
+
embed: null
|
| 56 |
+
show: false
|
| 57 |
+
save_frames: false
|
| 58 |
+
save_txt: false
|
| 59 |
+
save_conf: false
|
| 60 |
+
save_crop: false
|
| 61 |
+
show_labels: true
|
| 62 |
+
show_conf: true
|
| 63 |
+
show_boxes: true
|
| 64 |
+
line_width: null
|
| 65 |
+
format: torchscript
|
| 66 |
+
keras: false
|
| 67 |
+
optimize: false
|
| 68 |
+
int8: false
|
| 69 |
+
dynamic: false
|
| 70 |
+
simplify: true
|
| 71 |
+
opset: null
|
| 72 |
+
workspace: null
|
| 73 |
+
nms: false
|
| 74 |
+
lr0: 0.01
|
| 75 |
+
lrf: 0.01
|
| 76 |
+
momentum: 0.937
|
| 77 |
+
weight_decay: 0.0005
|
| 78 |
+
warmup_epochs: 3.0
|
| 79 |
+
warmup_momentum: 0.8
|
| 80 |
+
warmup_bias_lr: 0.1
|
| 81 |
+
box: 7.5
|
| 82 |
+
cls: 0.5
|
| 83 |
+
dfl: 1.5
|
| 84 |
+
pose: 12.0
|
| 85 |
+
kobj: 1.0
|
| 86 |
+
rle: 1.0
|
| 87 |
+
angle: 1.0
|
| 88 |
+
nbs: 64
|
| 89 |
+
hsv_h: 0.015
|
| 90 |
+
hsv_s: 0.7
|
| 91 |
+
hsv_v: 0.4
|
| 92 |
+
degrees: 0.0
|
| 93 |
+
translate: 0.1
|
| 94 |
+
scale: 0.5
|
| 95 |
+
shear: 0.0
|
| 96 |
+
perspective: 0.0
|
| 97 |
+
flipud: 0.0
|
| 98 |
+
fliplr: 0.5
|
| 99 |
+
bgr: 0.0
|
| 100 |
+
mosaic: 1.0
|
| 101 |
+
mixup: 0.0
|
| 102 |
+
cutmix: 0.0
|
| 103 |
+
copy_paste: 0.0
|
| 104 |
+
copy_paste_mode: flip
|
| 105 |
+
auto_augment: randaugment
|
| 106 |
+
erasing: 0.4
|
| 107 |
+
cfg: null
|
| 108 |
+
tracker: botsort.yaml
|
| 109 |
+
save_dir: /workspace/turbovision/runs/detect/ball_yolo26x.pt_50_1280
|
football-ball-detection/labels.jpg
ADDED
|
Git LFS Details
|
football-ball-detection/results.csv
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
epoch,time,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,273.819,0.95363,5.74764,0.00063,0.76347,0.51181,0.60585,0.3252,1.39578,nan,0.0014,0.00066633,0.00066633,0.00066633
|
| 3 |
+
2,541.065,1.00221,0.91868,0.00068,0.83153,0.50525,0.63043,0.26379,1.51439,1.11168,0.0015,0.0013066,0.0013066,0.0013066
|
| 4 |
+
3,807.448,0.96582,0.79198,0.00064,0.74467,0.55906,0.65422,0.3197,1.46765,nan,0.00139,0.00192048,0.00192048,0.00192048
|
| 5 |
+
4,1073.64,0.94112,0.86956,0.00061,0.74102,0.58581,0.68591,0.23144,1.61641,nan,0.00161,0.0018812,0.0018812,0.0018812
|
| 6 |
+
5,1339.28,0.88665,0.72173,0.00057,0.93289,0.59843,0.73378,0.34283,1.38963,1.03549,0.00134,0.0018416,0.0018416,0.0018416
|
| 7 |
+
6,1605.94,0.85954,0.67985,0.00055,0.83369,0.71048,0.77241,0.43931,1.31134,0.83697,0.00129,0.001802,0.001802,0.001802
|
| 8 |
+
7,1873.05,0.88169,0.70048,0.00056,0.76528,0.59843,0.66138,0.37765,nan,nan,nan,0.0017624,0.0017624,0.0017624
|
| 9 |
+
8,2139.78,0.84619,0.62698,0.00054,0.87834,0.68222,0.77107,0.47124,1.2616,nan,0.00123,0.0017228,0.0017228,0.0017228
|
| 10 |
+
9,2406.35,0.84317,0.63237,0.00054,0.95317,0.62992,0.78197,0.48108,1.21254,0.88463,0.00116,0.0016832,0.0016832,0.0016832
|
| 11 |
+
10,2673.16,0.82482,0.62081,0.00052,0.93194,0.62992,0.79668,0.45701,1.29407,0.77714,0.0013,0.0016436,0.0016436,0.0016436
|
| 12 |
+
11,2939.48,0.82425,0.54798,0.00052,0.80515,0.74836,0.82769,0.50109,1.24906,nan,0.0012,0.001604,0.001604,0.001604
|
| 13 |
+
12,3206.62,0.80507,0.546,0.0005,0.86863,0.7289,0.83512,0.5097,1.22022,0.71315,0.00118,0.0015644,0.0015644,0.0015644
|
| 14 |
+
13,3472.51,0.79695,nan,0.00049,0,0,0,0,nan,nan,nan,0.0015248,0.0015248,0.0015248
|
| 15 |
+
14,3738.54,0.78308,0.51086,0.00049,0,0,0,0,nan,nan,nan,0.0014852,0.0014852,0.0014852
|
| 16 |
+
15,4005.21,nan,nan,nan,0,0,0,0,nan,nan,nan,0.0014456,0.0014456,0.0014456
|
| 17 |
+
16,4270.77,nan,nan,nan,0,0,0,0,nan,nan,nan,0.001406,0.001406,0.001406
|
| 18 |
+
17,4537.01,nan,nan,nan,0,0,0,0,nan,nan,nan,0.0013664,0.0013664,0.0013664
|
| 19 |
+
18,4802.12,nan,nan,nan,0,0,0,0,nan,nan,nan,0.0013268,0.0013268,0.0013268
|
| 20 |
+
19,5068.27,nan,nan,nan,0,0,0,0,nan,nan,nan,0.0012872,0.0012872,0.0012872
|
| 21 |
+
20,5334.3,nan,nan,nan,0,0,0,0,nan,nan,nan,0.0012476,0.0012476,0.0012476
|
| 22 |
+
21,5600.23,nan,nan,nan,0,0,0,0,nan,nan,nan,0.001208,0.001208,0.001208
|
| 23 |
+
22,5866.35,nan,nan,nan,0,0,0,0,nan,nan,nan,0.0011684,0.0011684,0.0011684
|
| 24 |
+
23,6132.23,nan,nan,nan,0,0,0,0,nan,nan,nan,0.0011288,0.0011288,0.0011288
|
football-ball-detection/train_batch0.jpg
ADDED
|
Git LFS Details
|
football-ball-detection/train_batch1.jpg
ADDED
|
Git LFS Details
|
football-ball-detection/train_batch2.jpg
ADDED
|
Git LFS Details
|
football-ball-detection/weights/best.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bfd3006da9e1a90d986373aabf475512aae20934d19989ed2aa16de5ffeda8d1
|
| 3 |
+
size 354171701
|
football-ball-detection/weights/last.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e1bda300bca108f35a84d88e9d49b1ab37191acfbd2e6f0490ff838939c430ea
|
| 3 |
+
size 354173685
|