StephenSKelley
commited on
Commit
•
88bab07
1
Parent(s):
d6be71a
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/Feb20_18-59-05_TFGLESOS5000843/1676941159.618001/events.out.tfevents.1676941159.TFGLESOS5000843 +3 -0
- runs/Feb20_18-59-05_TFGLESOS5000843/1676941227.534528/events.out.tfevents.1676941227.TFGLESOS5000843 +3 -0
- runs/Feb20_18-59-05_TFGLESOS5000843/1676941442.568758/events.out.tfevents.1676941442.TFGLESOS5000843 +3 -0
- runs/Feb20_18-59-05_TFGLESOS5000843/events.out.tfevents.1676941159.TFGLESOS5000843 +3 -0
- runs/Feb20_19-12-51_TFGLESOS5000843/1676941976.876723/events.out.tfevents.1676941976.TFGLESOS5000843 +3 -0
- runs/Feb20_19-12-51_TFGLESOS5000843/events.out.tfevents.1676941976.TFGLESOS5000843 +3 -0
- runs/Feb20_19-15-49_TFGLESOS5000843/1676942156.1686258/events.out.tfevents.1676942156.TFGLESOS5000843 +3 -0
- runs/Feb20_19-15-49_TFGLESOS5000843/events.out.tfevents.1676942156.TFGLESOS5000843 +3 -0
- runs/Feb20_19-20-26_TFGLESOS5000843/1676942433.941233/events.out.tfevents.1676942433.TFGLESOS5000843 +3 -0
- runs/Feb20_19-20-26_TFGLESOS5000843/events.out.tfevents.1676942433.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:a8d431d72465962ed21043aac48f01915d36e3fb322225352476bb675ca2e7ba
|
3 |
+
size 343287469
|
runs/Feb20_18-59-05_TFGLESOS5000843/1676941159.618001/events.out.tfevents.1676941159.TFGLESOS5000843
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b36fc66e5621639d770414c1403e8636df0e544824d211de1a82e39709cfd684
|
3 |
+
size 5277
|
runs/Feb20_18-59-05_TFGLESOS5000843/1676941227.534528/events.out.tfevents.1676941227.TFGLESOS5000843
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e67e5789c9880d1956b7c7f329e3546f969a6e9f5bbb983b232f70b3a282cfdd
|
3 |
+
size 5277
|
runs/Feb20_18-59-05_TFGLESOS5000843/1676941442.568758/events.out.tfevents.1676941442.TFGLESOS5000843
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:13f583d7d9b61002fdf2b1077b018cc7170dbe30610f39cc715ffb6ef8b5cf69
|
3 |
+
size 5277
|
runs/Feb20_18-59-05_TFGLESOS5000843/events.out.tfevents.1676941159.TFGLESOS5000843
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e3025f79ff315927c7e39ef172f1bf71734f7bbabb166baa217f9f54f633ff72
|
3 |
+
size 11929
|
runs/Feb20_19-12-51_TFGLESOS5000843/1676941976.876723/events.out.tfevents.1676941976.TFGLESOS5000843
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7f6fe4ace8a193d676c0430b44df870947f8dda5c06a9eba50c6ed58e9dd0b5a
|
3 |
+
size 5277
|
runs/Feb20_19-12-51_TFGLESOS5000843/events.out.tfevents.1676941976.TFGLESOS5000843
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2987188f1e26424bb0b47451175c7e63fd242c3a15914dc071005a7d561d50fd
|
3 |
+
size 4003
|
runs/Feb20_19-15-49_TFGLESOS5000843/1676942156.1686258/events.out.tfevents.1676942156.TFGLESOS5000843
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:432ebaa0bd494b5114b6609e7b367ef847f288e13e96333dd28044e6f863de8f
|
3 |
+
size 5277
|
runs/Feb20_19-15-49_TFGLESOS5000843/events.out.tfevents.1676942156.TFGLESOS5000843
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9b608fa08b4f3efed5a119d0902a31976933d25fbf460df1a1ab0747a6afb5a9
|
3 |
+
size 4003
|
runs/Feb20_19-20-26_TFGLESOS5000843/1676942433.941233/events.out.tfevents.1676942433.TFGLESOS5000843
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bf5c2ad11845d4987cb5e7ee22cabdf650e87e8aa1be146a9ec2dadebc8946ed
|
3 |
+
size 5277
|
runs/Feb20_19-20-26_TFGLESOS5000843/events.out.tfevents.1676942433.TFGLESOS5000843
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7e6b6b3438a899fe819a120713756f207f8c11ccec9b0d374e9a4a0ada83c8b7
|
3 |
+
size 5235
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b321182e1ffdf2c588c9cf322932aed293e5d3bfb93340fb19d6637ba2298bcb
|
3 |
+
size 3451
|