Update preprocessor_config.json
Browse files- preprocessor_config.json +15 -7
preprocessor_config.json
CHANGED
@@ -1,14 +1,22 @@
|
|
1 |
{
|
2 |
-
"
|
|
|
3 |
"do_normalize": true,
|
4 |
-
"do_rescale": true,
|
5 |
"do_resize": true,
|
6 |
-
"image_mean": [0.48145466, 0.4578275, 0.40821073],
|
7 |
"image_processor_type": "CLIPImageProcessor",
|
|
|
8 |
"tokenizer_class": "LlamaTokenizer",
|
9 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
"processor_class": "LlavaProcessor",
|
11 |
"resample": 3,
|
12 |
-
"
|
13 |
-
|
14 |
-
}
|
|
|
1 |
{
|
2 |
+
"crop_size": 336,
|
3 |
+
"do_center_crop": true,
|
4 |
"do_normalize": true,
|
|
|
5 |
"do_resize": true,
|
|
|
6 |
"image_processor_type": "CLIPImageProcessor",
|
7 |
+
"feature_extractor_type": "CLIPFeatureExtractor",
|
8 |
"tokenizer_class": "LlamaTokenizer",
|
9 |
+
"image_mean": [
|
10 |
+
0.48145466,
|
11 |
+
0.4578275,
|
12 |
+
0.40821073
|
13 |
+
],
|
14 |
+
"image_std": [
|
15 |
+
0.26862954,
|
16 |
+
0.26130258,
|
17 |
+
0.27577711
|
18 |
+
],
|
19 |
"processor_class": "LlavaProcessor",
|
20 |
"resample": 3,
|
21 |
+
"size": 336
|
22 |
+
}
|
|