pk3388 commited on
Commit
70b7fc8
1 Parent(s): d517424

Training in progress, epoch 0

Browse files
config.json ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "microsoft/cvt-13",
3
+ "architectures": [
4
+ "CvtForImageClassification"
5
+ ],
6
+ "attention_drop_rate": [
7
+ 0.0,
8
+ 0.0,
9
+ 0.0
10
+ ],
11
+ "cls_token": [
12
+ false,
13
+ false,
14
+ true
15
+ ],
16
+ "depth": [
17
+ 1,
18
+ 2,
19
+ 10
20
+ ],
21
+ "drop_path_rate": [
22
+ 0.0,
23
+ 0.0,
24
+ 0.1
25
+ ],
26
+ "drop_rate": [
27
+ 0.0,
28
+ 0.0,
29
+ 0.0
30
+ ],
31
+ "embed_dim": [
32
+ 64,
33
+ 192,
34
+ 384
35
+ ],
36
+ "id2label": {
37
+ "0": "Audemars Piguet",
38
+ "1": "Breguet",
39
+ "2": "Breitling",
40
+ "3": "Maurice Lacroix",
41
+ "4": "Omega",
42
+ "5": "Patek Philippe",
43
+ "6": "Rado",
44
+ "7": "Rolex",
45
+ "8": "Tissot",
46
+ "9": "Vacheron Constantin"
47
+ },
48
+ "image_size": 224,
49
+ "initializer_range": 0.02,
50
+ "kernel_qkv": [
51
+ 3,
52
+ 3,
53
+ 3
54
+ ],
55
+ "label2id": {
56
+ "Audemars Piguet": 0,
57
+ "Breguet": 1,
58
+ "Breitling": 2,
59
+ "Maurice Lacroix": 3,
60
+ "Omega": 4,
61
+ "Patek Philippe": 5,
62
+ "Rado": 6,
63
+ "Rolex": 7,
64
+ "Tissot": 8,
65
+ "Vacheron Constantin": 9
66
+ },
67
+ "layer_norm_eps": 1e-12,
68
+ "mlp_ratio": [
69
+ 4.0,
70
+ 4.0,
71
+ 4.0
72
+ ],
73
+ "model_type": "cvt",
74
+ "num_channels": 3,
75
+ "num_heads": [
76
+ 1,
77
+ 3,
78
+ 6
79
+ ],
80
+ "num_stages": 3,
81
+ "padding_kv": [
82
+ 1,
83
+ 1,
84
+ 1
85
+ ],
86
+ "padding_q": [
87
+ 1,
88
+ 1,
89
+ 1
90
+ ],
91
+ "patch_padding": [
92
+ 2,
93
+ 1,
94
+ 1
95
+ ],
96
+ "patch_sizes": [
97
+ 7,
98
+ 3,
99
+ 3
100
+ ],
101
+ "patch_stride": [
102
+ 4,
103
+ 2,
104
+ 2
105
+ ],
106
+ "pos_embed": [
107
+ false,
108
+ false,
109
+ false
110
+ ],
111
+ "problem_type": "single_label_classification",
112
+ "qkv_bias": [
113
+ true,
114
+ true,
115
+ true
116
+ ],
117
+ "qkv_projection_method": [
118
+ "dw_bn",
119
+ "dw_bn",
120
+ "dw_bn"
121
+ ],
122
+ "stride_kv": [
123
+ 2,
124
+ 2,
125
+ 2
126
+ ],
127
+ "stride_q": [
128
+ 1,
129
+ 1,
130
+ 1
131
+ ],
132
+ "torch_dtype": "float32",
133
+ "transformers_version": "4.40.0"
134
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd4107e6f26d7e5dd718ee4a4f430297a0d2adeb6f344e3cb36919f437ec4ef4
3
+ size 78641912
preprocessor_config.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_valid_processor_keys": [
3
+ "images",
4
+ "do_resize",
5
+ "size",
6
+ "crop_pct",
7
+ "resample",
8
+ "do_rescale",
9
+ "rescale_factor",
10
+ "do_normalize",
11
+ "image_mean",
12
+ "image_std",
13
+ "return_tensors",
14
+ "data_format",
15
+ "input_data_format"
16
+ ],
17
+ "crop_pct": 0.875,
18
+ "do_normalize": true,
19
+ "do_rescale": true,
20
+ "do_resize": true,
21
+ "image_mean": [
22
+ 0.485,
23
+ 0.456,
24
+ 0.406
25
+ ],
26
+ "image_processor_type": "ConvNextImageProcessor",
27
+ "image_std": [
28
+ 0.229,
29
+ 0.224,
30
+ 0.225
31
+ ],
32
+ "resample": 3,
33
+ "rescale_factor": 0.00392156862745098,
34
+ "size": {
35
+ "shortest_edge": 224
36
+ }
37
+ }
runs/Apr26_06-42-16_b699267cd19d/events.out.tfevents.1714113841.b699267cd19d.517.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d24141a2aa2e43b6e210d687afd5ab3295eb93669a2d8077bde958125c502cef
3
+ size 6271
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:815105ea517b7fe879856711c450ab5b3cb88a6a7a4d8480d0f20bdccbfbf671
3
+ size 4984