nathanReitinger
commited on
Commit
•
57eb726
1
Parent(s):
6b1aac4
Training in progress, epoch 1
Browse files- config.json +18 -25
- model.safetensors +2 -2
- preprocessor_config.json +10 -18
- runs/May04_02-07-45_tron53.umiacs.umd.edu/events.out.tfevents.1714802866.tron53.umiacs.umd.edu.3706292.0 +3 -0
- runs/May04_02-11-43_tron53.umiacs.umd.edu/events.out.tfevents.1714803104.tron53.umiacs.umd.edu.3707341.0 +3 -0
- runs/May04_02-14-37_tron53.umiacs.umd.edu/events.out.tfevents.1714803278.tron53.umiacs.umd.edu.3708970.0 +3 -0
- training_args.bin +1 -1
config.json
CHANGED
@@ -1,8 +1,13 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "
|
3 |
"architectures": [
|
4 |
-
"
|
5 |
],
|
|
|
|
|
|
|
|
|
|
|
6 |
"id2label": {
|
7 |
"0": "T - shirt / top",
|
8 |
"1": "Trouser",
|
@@ -15,7 +20,9 @@
|
|
15 |
"8": "Bag",
|
16 |
"9": "Ankle boot"
|
17 |
},
|
18 |
-
"
|
|
|
|
|
19 |
"label2id": {
|
20 |
"Ankle boot": "9",
|
21 |
"Bag": "8",
|
@@ -28,28 +35,14 @@
|
|
28 |
"T - shirt / top": "0",
|
29 |
"Trouser": "1"
|
30 |
},
|
31 |
-
"
|
32 |
-
"model_type": "
|
|
|
|
|
|
|
|
|
33 |
"problem_type": "single_label_classification",
|
34 |
-
"
|
35 |
-
"text_config": {
|
36 |
-
"dropout": 0.0,
|
37 |
-
"hidden_size": 768,
|
38 |
-
"intermediate_size": 3072,
|
39 |
-
"model_type": "clip_text_model",
|
40 |
-
"num_attention_heads": 12,
|
41 |
-
"projection_dim": 768
|
42 |
-
},
|
43 |
"torch_dtype": "float32",
|
44 |
-
"transformers_version": "4.40.1"
|
45 |
-
"vision_config": {
|
46 |
-
"dropout": 0.0,
|
47 |
-
"hidden_size": 1024,
|
48 |
-
"intermediate_size": 4096,
|
49 |
-
"model_type": "clip_vision_model",
|
50 |
-
"num_attention_heads": 16,
|
51 |
-
"num_hidden_layers": 24,
|
52 |
-
"patch_size": 14,
|
53 |
-
"projection_dim": 768
|
54 |
-
}
|
55 |
}
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "google/vit-base-patch32-224-in21k",
|
3 |
"architectures": [
|
4 |
+
"ViTForImageClassification"
|
5 |
],
|
6 |
+
"attention_probs_dropout_prob": 0.0,
|
7 |
+
"encoder_stride": 16,
|
8 |
+
"hidden_act": "gelu",
|
9 |
+
"hidden_dropout_prob": 0.0,
|
10 |
+
"hidden_size": 768,
|
11 |
"id2label": {
|
12 |
"0": "T - shirt / top",
|
13 |
"1": "Trouser",
|
|
|
20 |
"8": "Bag",
|
21 |
"9": "Ankle boot"
|
22 |
},
|
23 |
+
"image_size": 224,
|
24 |
+
"initializer_range": 0.02,
|
25 |
+
"intermediate_size": 3072,
|
26 |
"label2id": {
|
27 |
"Ankle boot": "9",
|
28 |
"Bag": "8",
|
|
|
35 |
"T - shirt / top": "0",
|
36 |
"Trouser": "1"
|
37 |
},
|
38 |
+
"layer_norm_eps": 1e-12,
|
39 |
+
"model_type": "vit",
|
40 |
+
"num_attention_heads": 12,
|
41 |
+
"num_channels": 3,
|
42 |
+
"num_hidden_layers": 12,
|
43 |
+
"patch_size": 32,
|
44 |
"problem_type": "single_label_classification",
|
45 |
+
"qkv_bias": true,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
"torch_dtype": "float32",
|
47 |
+
"transformers_version": "4.40.1"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
}
|
model.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:93ff5a3abdc9dc015ada0757a65b1124b6b939020cc92ee1b049376559e3f365
|
3 |
+
size 349874904
|
preprocessor_config.json
CHANGED
@@ -4,41 +4,33 @@
|
|
4 |
"do_resize",
|
5 |
"size",
|
6 |
"resample",
|
7 |
-
"do_center_crop",
|
8 |
-
"crop_size",
|
9 |
"do_rescale",
|
10 |
"rescale_factor",
|
11 |
"do_normalize",
|
12 |
"image_mean",
|
13 |
"image_std",
|
14 |
-
"do_convert_rgb",
|
15 |
"return_tensors",
|
16 |
"data_format",
|
17 |
"input_data_format"
|
18 |
],
|
19 |
-
"crop_size": {
|
20 |
-
"height": 224,
|
21 |
-
"width": 224
|
22 |
-
},
|
23 |
-
"do_center_crop": true,
|
24 |
-
"do_convert_rgb": true,
|
25 |
"do_normalize": true,
|
26 |
"do_rescale": true,
|
27 |
"do_resize": true,
|
28 |
"image_mean": [
|
29 |
-
0.
|
30 |
-
0.
|
31 |
-
0.
|
32 |
],
|
33 |
-
"image_processor_type": "
|
34 |
"image_std": [
|
35 |
-
0.
|
36 |
-
0.
|
37 |
-
0.
|
38 |
],
|
39 |
-
"resample":
|
40 |
"rescale_factor": 0.00392156862745098,
|
41 |
"size": {
|
42 |
-
"
|
|
|
43 |
}
|
44 |
}
|
|
|
4 |
"do_resize",
|
5 |
"size",
|
6 |
"resample",
|
|
|
|
|
7 |
"do_rescale",
|
8 |
"rescale_factor",
|
9 |
"do_normalize",
|
10 |
"image_mean",
|
11 |
"image_std",
|
|
|
12 |
"return_tensors",
|
13 |
"data_format",
|
14 |
"input_data_format"
|
15 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
"do_normalize": true,
|
17 |
"do_rescale": true,
|
18 |
"do_resize": true,
|
19 |
"image_mean": [
|
20 |
+
0.5,
|
21 |
+
0.5,
|
22 |
+
0.5
|
23 |
],
|
24 |
+
"image_processor_type": "ViTImageProcessor",
|
25 |
"image_std": [
|
26 |
+
0.5,
|
27 |
+
0.5,
|
28 |
+
0.5
|
29 |
],
|
30 |
+
"resample": 2,
|
31 |
"rescale_factor": 0.00392156862745098,
|
32 |
"size": {
|
33 |
+
"height": 224,
|
34 |
+
"width": 224
|
35 |
}
|
36 |
}
|
runs/May04_02-07-45_tron53.umiacs.umd.edu/events.out.tfevents.1714802866.tron53.umiacs.umd.edu.3706292.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9aca9c64df105daf06060083fc904bb3665a40b0e17cd359921f61e9d1c87134
|
3 |
+
size 6079
|
runs/May04_02-11-43_tron53.umiacs.umd.edu/events.out.tfevents.1714803104.tron53.umiacs.umd.edu.3707341.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:961a00019fbe471a46b64b22bc2a4cf13f9d8083d6f280911b1185c16d7103c8
|
3 |
+
size 8795
|
runs/May04_02-14-37_tron53.umiacs.umd.edu/events.out.tfevents.1714803278.tron53.umiacs.umd.edu.3708970.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ede0c8956da7fb7008bf20da3921a4d75d50c6797f7abb8f8757609e12801482
|
3 |
+
size 13760
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 5048
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:04b7afaf73fcc63e9a0b0ecb1626af44e99df729fe8b8fbc6868a361997d6680
|
3 |
size 5048
|