aalonso-developer commited on
Commit
d236cbe
1 Parent(s): d03caba

Training in progress, step 1000

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "Skirt",
13
+ "1": "Jodhpurs",
14
+ "10": "Leggings",
15
+ "11": "Coverup",
16
+ "12": "Capris",
17
+ "13": "Dress",
18
+ "14": "Sweatshorts",
19
+ "15": "Tee",
20
+ "16": "Jersey",
21
+ "17": "Cutoffs",
22
+ "18": "Sweatpants",
23
+ "19": "Sarong",
24
+ "2": "Henley",
25
+ "20": "Joggers",
26
+ "21": "Tank",
27
+ "22": "Poncho",
28
+ "23": "Onesie",
29
+ "24": "Anorak",
30
+ "25": "Kimono",
31
+ "26": "Romper",
32
+ "27": "Halter",
33
+ "28": "Top",
34
+ "29": "Culottes",
35
+ "3": "Jeggings",
36
+ "30": "Robe",
37
+ "31": "Shorts",
38
+ "32": "Jeans",
39
+ "33": "Cardigan",
40
+ "34": "Jumpsuit",
41
+ "35": "Sweater",
42
+ "36": "Bomber",
43
+ "37": "Parka",
44
+ "38": "Chinos",
45
+ "39": "Turtleneck",
46
+ "4": "Flannel",
47
+ "40": "Trunks",
48
+ "41": "Blouse",
49
+ "42": "Gauchos",
50
+ "43": "Blazer",
51
+ "44": "Caftan",
52
+ "45": "Hoodie",
53
+ "5": "Coat",
54
+ "6": "Peacoat",
55
+ "7": "Jacket",
56
+ "8": "Button-Down",
57
+ "9": "Kaftan"
58
+ },
59
+ "image_size": 224,
60
+ "initializer_range": 0.02,
61
+ "intermediate_size": 3072,
62
+ "label2id": {
63
+ "Anorak": "24",
64
+ "Blazer": "43",
65
+ "Blouse": "41",
66
+ "Bomber": "36",
67
+ "Button-Down": "8",
68
+ "Caftan": "44",
69
+ "Capris": "12",
70
+ "Cardigan": "33",
71
+ "Chinos": "38",
72
+ "Coat": "5",
73
+ "Coverup": "11",
74
+ "Culottes": "29",
75
+ "Cutoffs": "17",
76
+ "Dress": "13",
77
+ "Flannel": "4",
78
+ "Gauchos": "42",
79
+ "Halter": "27",
80
+ "Henley": "2",
81
+ "Hoodie": "45",
82
+ "Jacket": "7",
83
+ "Jeans": "32",
84
+ "Jeggings": "3",
85
+ "Jersey": "16",
86
+ "Jodhpurs": "1",
87
+ "Joggers": "20",
88
+ "Jumpsuit": "34",
89
+ "Kaftan": "9",
90
+ "Kimono": "25",
91
+ "Leggings": "10",
92
+ "Onesie": "23",
93
+ "Parka": "37",
94
+ "Peacoat": "6",
95
+ "Poncho": "22",
96
+ "Robe": "30",
97
+ "Romper": "26",
98
+ "Sarong": "19",
99
+ "Shorts": "31",
100
+ "Skirt": "0",
101
+ "Sweater": "35",
102
+ "Sweatpants": "18",
103
+ "Sweatshorts": "14",
104
+ "Tank": "21",
105
+ "Tee": "15",
106
+ "Top": "28",
107
+ "Trunks": "40",
108
+ "Turtleneck": "39"
109
+ },
110
+ "layer_norm_eps": 1e-12,
111
+ "model_type": "vit",
112
+ "num_attention_heads": 12,
113
+ "num_channels": 3,
114
+ "num_hidden_layers": 12,
115
+ "patch_size": 16,
116
+ "problem_type": "single_label_classification",
117
+ "qkv_bias": true,
118
+ "torch_dtype": "float32",
119
+ "transformers_version": "4.29.2"
120
+ }
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:a32ccb6572456560f7fc3e7aff8d70b02fb73415ce3c70e61215d02f2aebd824
3
+ size 343404013
runs/Jun10_12-47-43_adrian-development/1686394066.6173697/events.out.tfevents.1686394066.adrian-development.12226.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:550207ce71349d5947f9734bba2d57bf9005492d857831d2943d7322a161974f
3
+ size 6022
runs/Jun10_12-47-43_adrian-development/events.out.tfevents.1686394066.adrian-development.12226.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04b4e38974717c588de3804692a1d6f12f0dda011123f444b53cc9a79533dbcb
3
+ size 6056
runs/Jun10_13-03-52_adrian-development/1686395036.6297061/events.out.tfevents.1686395036.adrian-development.36196.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a903ce33122db86ba44dd98f25508af8b3e6d21c207a8924de9948f48c3dfe5
3
+ size 6022
runs/Jun10_13-03-52_adrian-development/events.out.tfevents.1686395036.adrian-development.36196.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:700c344f0c8e9b93509350b4f7033fd9065361bb24227e8ec079d9dccf0eeed8
3
+ size 6379
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f8e3d000b514757242fb0fe19406746a106b411d4de0144ce31690786361ca1
3
+ size 4027