hammadsatti16 commited on
Commit
255d611
·
verified ·
1 Parent(s): 0bdfdfd

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +24 -7
config.json CHANGED
@@ -1,9 +1,7 @@
1
  {
2
- "pipeline_tag": "object-detection",
3
- "model_type": "yolo",
4
- "task": "object_detection",
5
- "model_name": "custom_yolo_model",
6
- "classes": [
7
  "Title Block",
8
  "Sheet Title",
9
  "Sheet Number",
@@ -22,5 +20,24 @@
22
  "Drawing Sheet",
23
  "Cover Sheet",
24
  "Contact Info"
25
- ]
26
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  {
2
+ "confidence_threshold": 0.25,
3
+ "iou_threshold": 0.45,
4
+ "labels": [
 
 
5
  "Title Block",
6
  "Sheet Title",
7
  "Sheet Number",
 
20
  "Drawing Sheet",
21
  "Cover Sheet",
22
  "Contact Info"
23
+ ],
24
+ "max_detections": 300,
25
+ "model_type": "yolov7",
26
+ "postprocessing": {
27
+ "apply_nms": true
28
+ },
29
+ "preprocessing": {
30
+ "mean": [
31
+ 0.0,
32
+ 0.0,
33
+ 0.0
34
+ ],
35
+ "normalize": true,
36
+ "std": [
37
+ 1.0,
38
+ 1.0,
39
+ 1.0
40
+ ]
41
+ },
42
+ "transformers_version": "4.47.1"
43
+ }