Commit ·
5f3a290
1
Parent(s): bb21d6d
Add YOLOv8 model, config, and data.yaml
Browse files- best.pt +2 -2
- config.json +1 -0
- data.yaml +20 -0
best.pt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1c0e675942a1b9757e51ae0990997a30fae9b290ab64e9ed83891727fc9a628b
|
| 3 |
+
size 5560915
|
config.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"model_type": "yolov8"}
|
data.yaml
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# data.yaml for YOLOv8 training on your weld defects dataset
|
| 2 |
+
|
| 3 |
+
# root dataset folder (adjust if different)
|
| 4 |
+
path: ./weld-1
|
| 5 |
+
|
| 6 |
+
train: train/images
|
| 7 |
+
val: valid/images
|
| 8 |
+
test: test/images # comment out or remove if you don’t have a test split
|
| 9 |
+
|
| 10 |
+
# number of classes
|
| 11 |
+
nc: 6
|
| 12 |
+
|
| 13 |
+
# class names (index → name)
|
| 14 |
+
names:
|
| 15 |
+
0: Bad Welding
|
| 16 |
+
1: Crack
|
| 17 |
+
2: Excess Reinforcement
|
| 18 |
+
3: Good Welding
|
| 19 |
+
4: Porosity
|
| 20 |
+
5: Spatters
|