julenalvaro commited on
Commit
a6cace9
·
1 Parent(s): c749c90

Training in progress, step 500

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
all_results.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "eval_accuracy": 0.5005,
3
+ "eval_loss": 0.7239086031913757,
4
+ "eval_runtime": 38.667,
5
+ "eval_samples_per_second": 51.724,
6
+ "eval_steps_per_second": 6.465
7
+ }
config.json ADDED
@@ -0,0 +1,194 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "openai/clip-vit-large-patch14",
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": "cat",
13
+ "1": "dog"
14
+ },
15
+ "image_size": 224,
16
+ "initializer_factor": 1.0,
17
+ "initializer_range": 0.02,
18
+ "intermediate_size": 3072,
19
+ "label2id": {
20
+ "cat": "0",
21
+ "dog": "1"
22
+ },
23
+ "layer_norm_eps": 1e-12,
24
+ "logit_scale_init_value": 2.6592,
25
+ "model_type": "vit",
26
+ "num_attention_heads": 12,
27
+ "num_channels": 3,
28
+ "num_hidden_layers": 12,
29
+ "patch_size": 16,
30
+ "problem_type": "single_label_classification",
31
+ "projection_dim": 768,
32
+ "qkv_bias": true,
33
+ "text_config": {
34
+ "_name_or_path": "",
35
+ "add_cross_attention": false,
36
+ "architectures": null,
37
+ "attention_dropout": 0.0,
38
+ "bad_words_ids": null,
39
+ "bos_token_id": 0,
40
+ "chunk_size_feed_forward": 0,
41
+ "cross_attention_hidden_size": null,
42
+ "decoder_start_token_id": null,
43
+ "diversity_penalty": 0.0,
44
+ "do_sample": false,
45
+ "dropout": 0.0,
46
+ "early_stopping": false,
47
+ "encoder_no_repeat_ngram_size": 0,
48
+ "eos_token_id": 2,
49
+ "finetuning_task": null,
50
+ "forced_bos_token_id": null,
51
+ "forced_eos_token_id": null,
52
+ "hidden_act": "quick_gelu",
53
+ "hidden_size": 768,
54
+ "id2label": {
55
+ "0": "LABEL_0",
56
+ "1": "LABEL_1"
57
+ },
58
+ "initializer_factor": 1.0,
59
+ "initializer_range": 0.02,
60
+ "intermediate_size": 3072,
61
+ "is_decoder": false,
62
+ "is_encoder_decoder": false,
63
+ "label2id": {
64
+ "LABEL_0": 0,
65
+ "LABEL_1": 1
66
+ },
67
+ "layer_norm_eps": 1e-05,
68
+ "length_penalty": 1.0,
69
+ "max_length": 20,
70
+ "max_position_embeddings": 77,
71
+ "min_length": 0,
72
+ "model_type": "clip_text_model",
73
+ "no_repeat_ngram_size": 0,
74
+ "num_attention_heads": 12,
75
+ "num_beam_groups": 1,
76
+ "num_beams": 1,
77
+ "num_hidden_layers": 12,
78
+ "num_return_sequences": 1,
79
+ "output_attentions": false,
80
+ "output_hidden_states": false,
81
+ "output_scores": false,
82
+ "pad_token_id": 1,
83
+ "prefix": null,
84
+ "problem_type": null,
85
+ "projection_dim": 768,
86
+ "pruned_heads": {},
87
+ "remove_invalid_values": false,
88
+ "repetition_penalty": 1.0,
89
+ "return_dict": true,
90
+ "return_dict_in_generate": false,
91
+ "sep_token_id": null,
92
+ "task_specific_params": null,
93
+ "temperature": 1.0,
94
+ "tie_encoder_decoder": false,
95
+ "tie_word_embeddings": true,
96
+ "tokenizer_class": null,
97
+ "top_k": 50,
98
+ "top_p": 1.0,
99
+ "torch_dtype": null,
100
+ "torchscript": false,
101
+ "transformers_version": "4.16.0.dev0",
102
+ "use_bfloat16": false,
103
+ "vocab_size": 49408
104
+ },
105
+ "text_config_dict": {
106
+ "hidden_size": 768,
107
+ "intermediate_size": 3072,
108
+ "num_attention_heads": 12,
109
+ "num_hidden_layers": 12,
110
+ "projection_dim": 768
111
+ },
112
+ "torch_dtype": "float32",
113
+ "transformers_version": "4.25.1",
114
+ "vision_config": {
115
+ "_name_or_path": "",
116
+ "add_cross_attention": false,
117
+ "architectures": null,
118
+ "attention_dropout": 0.0,
119
+ "bad_words_ids": null,
120
+ "bos_token_id": null,
121
+ "chunk_size_feed_forward": 0,
122
+ "cross_attention_hidden_size": null,
123
+ "decoder_start_token_id": null,
124
+ "diversity_penalty": 0.0,
125
+ "do_sample": false,
126
+ "dropout": 0.0,
127
+ "early_stopping": false,
128
+ "encoder_no_repeat_ngram_size": 0,
129
+ "eos_token_id": null,
130
+ "finetuning_task": null,
131
+ "forced_bos_token_id": null,
132
+ "forced_eos_token_id": null,
133
+ "hidden_act": "quick_gelu",
134
+ "hidden_size": 1024,
135
+ "id2label": {
136
+ "0": "LABEL_0",
137
+ "1": "LABEL_1"
138
+ },
139
+ "image_size": 224,
140
+ "initializer_factor": 1.0,
141
+ "initializer_range": 0.02,
142
+ "intermediate_size": 4096,
143
+ "is_decoder": false,
144
+ "is_encoder_decoder": false,
145
+ "label2id": {
146
+ "LABEL_0": 0,
147
+ "LABEL_1": 1
148
+ },
149
+ "layer_norm_eps": 1e-05,
150
+ "length_penalty": 1.0,
151
+ "max_length": 20,
152
+ "min_length": 0,
153
+ "model_type": "clip_vision_model",
154
+ "no_repeat_ngram_size": 0,
155
+ "num_attention_heads": 16,
156
+ "num_beam_groups": 1,
157
+ "num_beams": 1,
158
+ "num_hidden_layers": 24,
159
+ "num_return_sequences": 1,
160
+ "output_attentions": false,
161
+ "output_hidden_states": false,
162
+ "output_scores": false,
163
+ "pad_token_id": null,
164
+ "patch_size": 14,
165
+ "prefix": null,
166
+ "problem_type": null,
167
+ "projection_dim": 768,
168
+ "pruned_heads": {},
169
+ "remove_invalid_values": false,
170
+ "repetition_penalty": 1.0,
171
+ "return_dict": true,
172
+ "return_dict_in_generate": false,
173
+ "sep_token_id": null,
174
+ "task_specific_params": null,
175
+ "temperature": 1.0,
176
+ "tie_encoder_decoder": false,
177
+ "tie_word_embeddings": true,
178
+ "tokenizer_class": null,
179
+ "top_k": 50,
180
+ "top_p": 1.0,
181
+ "torch_dtype": null,
182
+ "torchscript": false,
183
+ "transformers_version": "4.16.0.dev0",
184
+ "use_bfloat16": false
185
+ },
186
+ "vision_config_dict": {
187
+ "hidden_size": 1024,
188
+ "intermediate_size": 4096,
189
+ "num_attention_heads": 16,
190
+ "num_hidden_layers": 24,
191
+ "patch_size": 14,
192
+ "projection_dim": 768
193
+ }
194
+ }
eval_results.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "eval_accuracy": 0.5005,
3
+ "eval_loss": 0.7239086031913757,
4
+ "eval_runtime": 38.667,
5
+ "eval_samples_per_second": 51.724,
6
+ "eval_steps_per_second": 6.465
7
+ }
preprocessor_config.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": 224,
3
+ "do_center_crop": true,
4
+ "do_normalize": true,
5
+ "do_rescale": true,
6
+ "do_resize": true,
7
+ "feature_extractor_type": "CLIPFeatureExtractor",
8
+ "image_mean": [
9
+ 0.48145466,
10
+ 0.4578275,
11
+ 0.40821073
12
+ ],
13
+ "image_processor_type": "ViTImageProcessor",
14
+ "image_std": [
15
+ 0.26862954,
16
+ 0.26130258,
17
+ 0.27577711
18
+ ],
19
+ "resample": 3,
20
+ "rescale_factor": 0.00392156862745098,
21
+ "size": {
22
+ "height": 224,
23
+ "width": 224
24
+ }
25
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c29ddedc17a344dabea44e8e46d08688547c87de49df0fade5fa7f4606eccb5
3
+ size 343268717
runs/Jan04_11-49-20_37c8202f5850/1672833056.5262277/events.out.tfevents.1672833056.37c8202f5850.685.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:69fc3cae665db32ce6d67aeb26dd7fae5fcd0c2e27d081d69006c766d30111a3
3
+ size 5527
runs/Jan04_11-49-20_37c8202f5850/events.out.tfevents.1672833021.37c8202f5850.685.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b59795869fffd47218fd9361bb16e47e88e5acba55d741c748c188f02e986e1f
3
+ size 8877
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c78c345ef620ebcb3523d9903401fde02796d946b24cc3d687fa766c4b7c0ca5
3
+ size 3387