Upload processor
Browse files- README.md +6 -6
- preprocessor_config.json +22 -0
README.md
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
---
|
2 |
-
library_name: transformers
|
3 |
base_model: nateraw/vit-age-classifier
|
4 |
-
tags:
|
5 |
-
- generated_from_trainer
|
6 |
datasets:
|
7 |
- imagefolder
|
|
|
8 |
metrics:
|
9 |
- accuracy
|
|
|
|
|
10 |
model-index:
|
11 |
- name: results
|
12 |
results:
|
13 |
- task:
|
14 |
-
name: Image Classification
|
15 |
type: image-classification
|
|
|
16 |
dataset:
|
17 |
name: imagefolder
|
18 |
type: imagefolder
|
@@ -20,9 +20,9 @@ model-index:
|
|
20 |
split: train
|
21 |
args: default
|
22 |
metrics:
|
23 |
-
-
|
24 |
-
type: accuracy
|
25 |
value: 0.44375
|
|
|
26 |
---
|
27 |
|
28 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
|
1 |
---
|
|
|
2 |
base_model: nateraw/vit-age-classifier
|
|
|
|
|
3 |
datasets:
|
4 |
- imagefolder
|
5 |
+
library_name: transformers
|
6 |
metrics:
|
7 |
- accuracy
|
8 |
+
tags:
|
9 |
+
- generated_from_trainer
|
10 |
model-index:
|
11 |
- name: results
|
12 |
results:
|
13 |
- task:
|
|
|
14 |
type: image-classification
|
15 |
+
name: Image Classification
|
16 |
dataset:
|
17 |
name: imagefolder
|
18 |
type: imagefolder
|
|
|
20 |
split: train
|
21 |
args: default
|
22 |
metrics:
|
23 |
+
- type: accuracy
|
|
|
24 |
value: 0.44375
|
25 |
+
name: Accuracy
|
26 |
---
|
27 |
|
28 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
preprocessor_config.json
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_normalize": true,
|
3 |
+
"do_rescale": true,
|
4 |
+
"do_resize": true,
|
5 |
+
"image_mean": [
|
6 |
+
0.5,
|
7 |
+
0.5,
|
8 |
+
0.5
|
9 |
+
],
|
10 |
+
"image_processor_type": "ViTImageProcessor",
|
11 |
+
"image_std": [
|
12 |
+
0.5,
|
13 |
+
0.5,
|
14 |
+
0.5
|
15 |
+
],
|
16 |
+
"resample": 2,
|
17 |
+
"rescale_factor": 0.00392156862745098,
|
18 |
+
"size": {
|
19 |
+
"height": 224,
|
20 |
+
"width": 224
|
21 |
+
}
|
22 |
+
}
|