rayh commited on
Commit
0a161f7
·
verified ·
1 Parent(s): 81e8b4b

Add config.json

Browse files
Files changed (1) hide show
  1. config.json +49 -0
config.json ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "best",
3
+ "architectures": [
4
+ "YOLOSegmentationPipeline"
5
+ ],
6
+ "auto_map": {
7
+ "AutoModel": "modeling_yolo.YOLOSegmentationPipeline",
8
+ "AutoModelForImageSegmentation": "modeling_yolo.YOLOSegmentationPipeline"
9
+ },
10
+ "framework": "pytorch",
11
+ "id2label": {
12
+ "0": "streak"
13
+ },
14
+ "label2id": {
15
+ "streak": 0
16
+ },
17
+ "labels": [
18
+ "streak"
19
+ ],
20
+ "library_name": "transformers",
21
+ "metrics": {
22
+ "map50": 0.87504,
23
+ "map50_95": 0.61945
24
+ },
25
+ "model_type": "yolo",
26
+ "pipeline_tag": "image-segmentation",
27
+ "feature_extractor_type": "YOLOImageProcessor",
28
+ "processor_class": "YOLOImageProcessor",
29
+ "image_processor_type": "YOLOImageProcessor",
30
+ "inference": {
31
+ "parameters": {
32
+ "threshold": 0.5,
33
+ "iou_threshold": 0.5,
34
+ "mask_threshold": 0.5
35
+ }
36
+ },
37
+ "task_specific_params": {
38
+ "image-segmentation": {
39
+ "model_class": "YOLOSegmentationPipeline"
40
+ }
41
+ },
42
+ "tags": [
43
+ "object-detection",
44
+ "image-segmentation",
45
+ "yolo",
46
+ "endpoints_compatible",
47
+ "has_space"
48
+ ]
49
+ }