aiweld commited on
Commit
9f72551
·
verified ·
1 Parent(s): ae74c16

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +32 -0
config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": ["YOLOv8Seg"],
3
+ "framework": "pytorch",
4
+ "model_type": "ultralytics-yolov8-seg",
5
+ "pipeline_tag": "image-segmentation",
6
+ "id2label": {
7
+ "0": "Porosity",
8
+ "1": "Slag Inclusion",
9
+ "2": "Incomplete Penetration",
10
+ "3": "Incomplete Fusion",
11
+ "4": "Wormhole",
12
+ "5": "Crack",
13
+ "6": "IQI",
14
+ "7": "Norm",
15
+ "8": "Linear Porosity",
16
+ "9": "Artifact",
17
+ "10": "Weld"
18
+ },
19
+ "label2id": {
20
+ "Porosity": 0,
21
+ "Slag Inclusion": 1,
22
+ "Incomplete Penetration": 2,
23
+ "Incomplete Fusion": 3,
24
+ "Wormhole": 4,
25
+ "Crack": 5,
26
+ "IQI": 6,
27
+ "Norm": 7,
28
+ "Linear Porosity": 8,
29
+ "Artifact": 9,
30
+ "Weld": 10
31
+ }
32
+ }