Domeandreimno commited on
Commit
fb23a7b
·
1 Parent(s): 643a0e7

Add YOLOv8 model and custom weights

Browse files
Files changed (1) hide show
  1. config.json +9 -14
config.json CHANGED
@@ -1,15 +1,10 @@
1
- {
2
- "pipeline_tag": "image-segmentation",
3
- "tags": ["yolov8", "segmentation"],
4
- "model": "yolov8-seg",
5
- "class_set": [
6
- {
7
- "name": "Architrave",
8
- "id": 0
9
- },
10
- {
11
- "name": "Doojam",
12
- "id": 1
13
- }
14
- ]
15
  }
 
1
+
2
+ config_content = {
3
+ "pipeline_tag": "image-segmentation",
4
+ "tags": ["yolov8", "segmentation"],
5
+ "model": "yolov8-seg",
6
+ "class_set": [
7
+ {"name": "Architrave", "id": 0},
8
+ {"name": "Doojam", "id": 1}
9
+ ]
 
 
 
 
 
10
  }