StephenSKelley
commited on
Commit
•
af296e4
1
Parent(s):
732fd80
Training in progress, epoch 1
Browse files- .gitignore +1 -0
- config.json +46 -0
- preprocessor_config.json +22 -0
- pytorch_model.bin +3 -0
- runs/Feb22_08-03-26_TFGLESOS5000843/1677074617.8131928/events.out.tfevents.1677074617.TFGLESOS5000843 +3 -0
- runs/Feb22_08-03-26_TFGLESOS5000843/events.out.tfevents.1677074617.TFGLESOS5000843 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"hidden_act": "gelu",
|
9 |
+
"hidden_dropout_prob": 0.0,
|
10 |
+
"hidden_size": 768,
|
11 |
+
"id2label": {
|
12 |
+
"0": "Bottom",
|
13 |
+
"1": "Top",
|
14 |
+
"2": "Bra",
|
15 |
+
"3": "Outfits",
|
16 |
+
"4": "Accessory",
|
17 |
+
"5": "Shoes",
|
18 |
+
"6": "Savage",
|
19 |
+
"7": "Underwear",
|
20 |
+
"8": "Jacket"
|
21 |
+
},
|
22 |
+
"image_size": 224,
|
23 |
+
"initializer_range": 0.02,
|
24 |
+
"intermediate_size": 3072,
|
25 |
+
"label2id": {
|
26 |
+
"Accessory": "4",
|
27 |
+
"Bottom": "0",
|
28 |
+
"Bra": "2",
|
29 |
+
"Jacket": "8",
|
30 |
+
"Outfits": "3",
|
31 |
+
"Savage": "6",
|
32 |
+
"Shoes": "5",
|
33 |
+
"Top": "1",
|
34 |
+
"Underwear": "7"
|
35 |
+
},
|
36 |
+
"layer_norm_eps": 1e-12,
|
37 |
+
"model_type": "vit",
|
38 |
+
"num_attention_heads": 12,
|
39 |
+
"num_channels": 3,
|
40 |
+
"num_hidden_layers": 12,
|
41 |
+
"patch_size": 16,
|
42 |
+
"problem_type": "single_label_classification",
|
43 |
+
"qkv_bias": true,
|
44 |
+
"torch_dtype": "float32",
|
45 |
+
"transformers_version": "4.25.1"
|
46 |
+
}
|
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 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2ecf8e827fcbe5d0028c0662e046442cad0239f444c3bfdfdd20a31f7f9667e6
|
3 |
+
size 343287469
|
runs/Feb22_08-03-26_TFGLESOS5000843/1677074617.8131928/events.out.tfevents.1677074617.TFGLESOS5000843
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e09642bd3255ada8ac2a1605cf114c7ca45356422ed25ff0e36e6c8a3cdb807d
|
3 |
+
size 5262
|
runs/Feb22_08-03-26_TFGLESOS5000843/events.out.tfevents.1677074617.TFGLESOS5000843
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5948c1c4a48a5c7708f5d20d75ff542d38342e68bf1e5e0204d584079013dfa5
|
3 |
+
size 5220
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:122307c8c81c829b7572960529ff32de6b0c6c5bdfef69c964e3ff5f7a00b250
|
3 |
+
size 3451
|