aiweld commited on
Commit
c9512cd
·
verified ·
1 Parent(s): 7ccfafd

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +20 -19
config.json CHANGED
@@ -1,22 +1,23 @@
1
  {
2
- "name": "aiweld-annotate-yolov8-seg",
3
- "type": "detector",
4
- "framework": "ultralytics",
5
- "task": "segmentation",
6
- "weights": {
7
- "url": "best.pt"
8
- },
9
  "labels": [
10
- { "name": "Porosity" },
11
- { "name": "Slag Inclusion" },
12
- { "name": "Incomplete Penetration" },
13
- { "name": "Incomplete Fusion" },
14
- { "name": "Wormhole" },
15
- { "name": "Crack" },
16
- { "name": "IQI" },
17
- { "name": "Norm" },
18
- { "name": "Linear Porosity" },
19
- { "name": "Artifact" },
20
- { "name": "Weld" }
21
- ]
 
 
 
 
22
  }
 
1
  {
2
+ "name": "YOLOv8 Weld Segmentation",
3
+ "framework": "pytorch",
4
+ "type": "segmentation",
5
+ "pipeline_tag": "image-segmentation",
 
 
 
6
  "labels": [
7
+ { "name": "Porosity", "attributes": [] },
8
+ { "name": "Slag Inclusion", "attributes": [] },
9
+ { "name": "Incomplete Penetration", "attributes": [] },
10
+ { "name": "Incomplete Fusion", "attributes": [] },
11
+ { "name": "Wormhole", "attributes": [] },
12
+ { "name": "Crack", "attributes": [] },
13
+ { "name": "IQI", "attributes": [] },
14
+ { "name": "Norm", "attributes": [] },
15
+ { "name": "Linear Porosity", "attributes": [] },
16
+ { "name": "Artifact", "attributes": [] },
17
+ { "name": "Weld", "attributes": [] }
18
+ ],
19
+ "params": {
20
+ "threshold": 0.25
21
+ },
22
+ "api_url": "https://huggingface.co/aiweld/annotate"
23
  }