farleyknight
commited on
Commit
•
f6f5d5f
1
Parent(s):
e409f99
Training in progress, step 100
Browse files- .gitignore +1 -0
- config.json +49 -0
- preprocessor_config.json +17 -0
- pytorch_model.bin +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "google/vit-base-patch16-224-in21k",
|
3 |
+
"architectures": [
|
4 |
+
"ViTForImageClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.0,
|
7 |
+
"encoder_stride": 16,
|
8 |
+
"finetuning_task": "image-classification",
|
9 |
+
"hidden_act": "gelu",
|
10 |
+
"hidden_dropout_prob": 0.0,
|
11 |
+
"hidden_size": 768,
|
12 |
+
"id2label": {
|
13 |
+
"0": "0",
|
14 |
+
"1": "1",
|
15 |
+
"2": "2",
|
16 |
+
"3": "3",
|
17 |
+
"4": "4",
|
18 |
+
"5": "5",
|
19 |
+
"6": "6",
|
20 |
+
"7": "7",
|
21 |
+
"8": "8",
|
22 |
+
"9": "9"
|
23 |
+
},
|
24 |
+
"image_size": 224,
|
25 |
+
"initializer_range": 0.02,
|
26 |
+
"intermediate_size": 3072,
|
27 |
+
"label2id": {
|
28 |
+
"0": "0",
|
29 |
+
"1": "1",
|
30 |
+
"2": "2",
|
31 |
+
"3": "3",
|
32 |
+
"4": "4",
|
33 |
+
"5": "5",
|
34 |
+
"6": "6",
|
35 |
+
"7": "7",
|
36 |
+
"8": "8",
|
37 |
+
"9": "9"
|
38 |
+
},
|
39 |
+
"layer_norm_eps": 1e-12,
|
40 |
+
"model_type": "vit",
|
41 |
+
"num_attention_heads": 12,
|
42 |
+
"num_channels": 3,
|
43 |
+
"num_hidden_layers": 12,
|
44 |
+
"patch_size": 16,
|
45 |
+
"problem_type": "single_label_classification",
|
46 |
+
"qkv_bias": true,
|
47 |
+
"torch_dtype": "float32",
|
48 |
+
"transformers_version": "4.22.0.dev0"
|
49 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_normalize": true,
|
3 |
+
"do_resize": true,
|
4 |
+
"feature_extractor_type": "ViTFeatureExtractor",
|
5 |
+
"image_mean": [
|
6 |
+
0.5,
|
7 |
+
0.5,
|
8 |
+
0.5
|
9 |
+
],
|
10 |
+
"image_std": [
|
11 |
+
0.5,
|
12 |
+
0.5,
|
13 |
+
0.5
|
14 |
+
],
|
15 |
+
"resample": 2,
|
16 |
+
"size": 224
|
17 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:50d65013fbfd0b4de98dcf3d47b41d60bf4ac124f76311a40988db419aea4450
|
3 |
+
size 343291569
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cda29dfde3331358451cbb0f9d174b6070003cad2156a5575aa8056d30102f4e
|
3 |
+
size 3503
|