jaimegarcia commited on
Commit
1e04523
·
1 Parent(s): b97fcc5

Upload 2 files

Browse files
Files changed (2) hide show
  1. config.json +107 -0
  2. preprocessor_config.json +26 -0
config.json ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "SingleShotDetection"
4
+ ],
5
+ "id2label": {
6
+ "0": "person",
7
+ "1": "bicycle",
8
+ "2": "car",
9
+ "3": "motorcycle",
10
+ "4": "airplane",
11
+ "5": "bus",
12
+ "6": "train",
13
+ "7": "truck",
14
+ "8": "boat",
15
+ "9": "traffic light",
16
+ "10": "fire hydrant",
17
+ "11": "street sign",
18
+ "12": "stop sign",
19
+ "13": "parking meter",
20
+ "14": "bench",
21
+ "15": "bird",
22
+ "16": "cat",
23
+ "17": "dog",
24
+ "18": "horse",
25
+ "19": "sheep",
26
+ "20": "cow",
27
+ "21": "elephant",
28
+ "22": "bear",
29
+ "23": "zebra",
30
+ "24": "giraffe",
31
+ "25": "hat",
32
+ "26": "backpack",
33
+ "27": "umbrella",
34
+ "28": "shoe",
35
+ "29": "eye glasses",
36
+ "30": "handbag",
37
+ "31": "tie",
38
+ "32": "suitcase",
39
+ "33": "frisbee",
40
+ "34": "skis",
41
+ "35": "snowboard",
42
+ "36": "sports ball",
43
+ "37": "kite",
44
+ "38": "baseball bat",
45
+ "39": "baseball glove",
46
+ "40": "skateboard",
47
+ "41": "surfboard",
48
+ "42": "tennis racket",
49
+ "43": "bottle",
50
+ "44": "plate",
51
+ "45": "wine glass",
52
+ "46": "cup",
53
+ "47": "fork",
54
+ "48": "knife",
55
+ "49": "spoon",
56
+ "50": "bowl",
57
+ "51": "banana",
58
+ "52": "apple",
59
+ "53": "sandwich",
60
+ "54": "orange",
61
+ "55": "broccoli",
62
+ "56": "carrot",
63
+ "57": "hot dog",
64
+ "58": "pizza",
65
+ "59": "donut",
66
+ "60": "cake",
67
+ "61": "chair",
68
+ "62": "couch",
69
+ "63": "potted plant",
70
+ "64": "bed",
71
+ "65": "mirror",
72
+ "66": "dining table",
73
+ "67": "window",
74
+ "68": "desk",
75
+ "69": "toilet",
76
+ "70": "door",
77
+ "71": "tv",
78
+ "72": "laptop",
79
+ "73": "mouse",
80
+ "74": "remote",
81
+ "75": "keyboard",
82
+ "76": "cell phone",
83
+ "77": "microwave",
84
+ "78": "oven",
85
+ "79": "toaster",
86
+ "80": "sink",
87
+ "81": "refrigerator",
88
+ "82": "blender",
89
+ "83": "book",
90
+ "84": "clock",
91
+ "85": "vase",
92
+ "86": "scissors",
93
+ "87": "teddy bear",
94
+ "88": "hair drier",
95
+ "89": "toothbrush",
96
+ "90": "hair brush"
97
+ },
98
+ "layer_norm_eps": 0.001,
99
+ "min_depth": 8,
100
+ "model_type": "mobilenet_v2",
101
+ "num_channels": 3,
102
+ "output_stride": 32,
103
+ "semantic_loss_ignore_index": 255,
104
+ "tf_padding": true,
105
+ "torch_dtype": "float32",
106
+ "transformers_version": "4.33.3"
107
+ }
preprocessor_config.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": {
3
+ "height": 320,
4
+ "width": 320
5
+ },
6
+ "do_center_crop": true,
7
+ "do_normalize": true,
8
+ "do_rescale": true,
9
+ "do_resize": true,
10
+ "image_mean": [
11
+ 0.0,
12
+ 0.0,
13
+ 0.0
14
+ ],
15
+ "image_processor_type": "MobileNetV2ImageProcessor",
16
+ "image_std": [
17
+ 1.0,
18
+ 1.0,
19
+ 1.0
20
+ ],
21
+ "resample": 2,
22
+ "rescale_factor": 0.00392156862745098,
23
+ "size": {
24
+ "shortest_edge": 256
25
+ }
26
+ }