Training in progress, epoch 0
Browse files- .gitignore +1 -0
- config.json +82 -0
- preprocessor_config.json +22 -0
- pytorch_model.bin +3 -0
- runs/Apr15_04-09-30_02d557e3ebcf/1681531781.642877/events.out.tfevents.1681531781.02d557e3ebcf.258.1 +3 -0
- runs/Apr15_04-09-30_02d557e3ebcf/events.out.tfevents.1681531781.02d557e3ebcf.258.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": "Makeup",
|
13 |
+
"1": "Innerwear",
|
14 |
+
"10": "Watches",
|
15 |
+
"11": "Bags",
|
16 |
+
"12": "Wallets",
|
17 |
+
"13": "Shoes",
|
18 |
+
"14": "Jewellery",
|
19 |
+
"15": "Scarves",
|
20 |
+
"16": "Fragrance",
|
21 |
+
"17": "Topwear",
|
22 |
+
"18": "Dress",
|
23 |
+
"19": "Cufflinks",
|
24 |
+
"2": "Saree",
|
25 |
+
"20": "Accessories",
|
26 |
+
"21": "Ties",
|
27 |
+
"22": "Eyewear",
|
28 |
+
"23": "Nails",
|
29 |
+
"24": "Sandal",
|
30 |
+
"25": "Belts",
|
31 |
+
"26": "Bottomwear",
|
32 |
+
"3": "Headwear",
|
33 |
+
"4": "Flip Flops",
|
34 |
+
"5": "Lips",
|
35 |
+
"6": "Apparel Set",
|
36 |
+
"7": "Socks",
|
37 |
+
"8": "Free Gifts",
|
38 |
+
"9": "Loungewear and Nightwear"
|
39 |
+
},
|
40 |
+
"image_size": 224,
|
41 |
+
"initializer_range": 0.02,
|
42 |
+
"intermediate_size": 3072,
|
43 |
+
"label2id": {
|
44 |
+
"Accessories": "20",
|
45 |
+
"Apparel Set": "6",
|
46 |
+
"Bags": "11",
|
47 |
+
"Belts": "25",
|
48 |
+
"Bottomwear": "26",
|
49 |
+
"Cufflinks": "19",
|
50 |
+
"Dress": "18",
|
51 |
+
"Eyewear": "22",
|
52 |
+
"Flip Flops": "4",
|
53 |
+
"Fragrance": "16",
|
54 |
+
"Free Gifts": "8",
|
55 |
+
"Headwear": "3",
|
56 |
+
"Innerwear": "1",
|
57 |
+
"Jewellery": "14",
|
58 |
+
"Lips": "5",
|
59 |
+
"Loungewear and Nightwear": "9",
|
60 |
+
"Makeup": "0",
|
61 |
+
"Nails": "23",
|
62 |
+
"Sandal": "24",
|
63 |
+
"Saree": "2",
|
64 |
+
"Scarves": "15",
|
65 |
+
"Shoes": "13",
|
66 |
+
"Socks": "7",
|
67 |
+
"Ties": "21",
|
68 |
+
"Topwear": "17",
|
69 |
+
"Wallets": "12",
|
70 |
+
"Watches": "10"
|
71 |
+
},
|
72 |
+
"layer_norm_eps": 1e-12,
|
73 |
+
"model_type": "vit",
|
74 |
+
"num_attention_heads": 12,
|
75 |
+
"num_channels": 3,
|
76 |
+
"num_hidden_layers": 12,
|
77 |
+
"patch_size": 16,
|
78 |
+
"problem_type": "single_label_classification",
|
79 |
+
"qkv_bias": true,
|
80 |
+
"torch_dtype": "float32",
|
81 |
+
"transformers_version": "4.28.1"
|
82 |
+
}
|
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:b0bbf788f296e07cd17dad4e533ca560c702c75af65d4a4c4b339600ca8a76ec
|
3 |
+
size 343345581
|
runs/Apr15_04-09-30_02d557e3ebcf/1681531781.642877/events.out.tfevents.1681531781.02d557e3ebcf.258.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:841ef2bf8fbe1f47616c6875e176911ee2291cfdcdd88328a7041d0ff150da1b
|
3 |
+
size 5913
|
runs/Apr15_04-09-30_02d557e3ebcf/events.out.tfevents.1681531781.02d557e3ebcf.258.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b3c710bb277de118d347f6e0591936bb894533256e3c1cb392fc9fede4a723e4
|
3 |
+
size 13869
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f78edd834959a75d3664487967c7e9af9690ef09e58452e5fc682e7e11e4eb5a
|
3 |
+
size 3643
|