rikkarth commited on
Commit
8b80d1a
·
verified ·
1 Parent(s): 63fbe69

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +58 -1
README.md CHANGED
@@ -1,3 +1,60 @@
1
  ---
2
- license: mit
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc0-1.0
3
+ task_categories:
4
+ - object-detection
5
+ tags:
6
+ - welding
7
+ - defect-detection
8
+ - manufacturing
9
+ - coco
10
+ - yolo
11
+ pretty_name: Welding Defect Object Detection (YOLO + COCO)
12
  ---
13
+
14
+ # Welding Defect Object Detection
15
+
16
+ 2,028 annotated images of welds for defect detection, in **both YOLO and COCO
17
+ formats**. Three classes:
18
+
19
+ | id (YOLO / COCO) | name |
20
+ |---|---|
21
+ | 0 / 1 | Bad Weld |
22
+ | 1 / 2 | Good Weld |
23
+ | 2 / 3 | Defect |
24
+
25
+ ## Splits
26
+
27
+ | split | images | annotations |
28
+ |---|---|---|
29
+ | train | 1,619 | 4,583 |
30
+ | valid | 283 | 802 |
31
+ | test | 126 | 301 |
32
+
33
+ ## Layout
34
+
35
+ ```
36
+ ├── data.yaml # YOLO class names + split paths
37
+ ├── train|valid|test/
38
+ │ ├── images/ # .jpg
39
+ │ └── labels/ # YOLO .txt (class cx cy w h, normalized)
40
+ └── coco/
41
+ ├── train.json # COCO detection format
42
+ ├── valid.json
43
+ └── test.json
44
+ ```
45
+
46
+ ## COCO conversion notes
47
+
48
+ The `coco/` jsons were generated from the YOLO labels with the
49
+ [flux](https://github.com/rikkarth) YOLO→COCO converter:
50
+
51
+ - bbox = `[x_min, y_min, width, height]`, float pixels
52
+ - boxes clamped to image bounds
53
+ - category ids are one-based (YOLO class 0 → COCO id 1)
54
+ - annotation count parity verified: 5,686 YOLO label lines → 5,686 COCO annotations
55
+
56
+ ## Source & license
57
+
58
+ Original dataset published on Kaggle by sukmaadhiwijaya as
59
+ [Welding Defect - Object Detection](https://www.kaggle.com/datasets/sukmaadhiwijaya/welding-defect-object-detection)
60
+ under **CC0: Public Domain**. This mirror adds the COCO-format annotations.