Tr13 commited on
Commit
91259f9
1 Parent(s): 2bb07de

Training in progress, epoch 0

Browse files
config.json CHANGED
@@ -1,13 +1,26 @@
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": "apple_pie",
13
  "1": "baby_back_ribs",
@@ -111,9 +124,8 @@
111
  "98": "tiramisu",
112
  "99": "tuna_tartare"
113
  },
114
- "image_size": 224,
115
  "initializer_range": 0.02,
116
- "intermediate_size": 3072,
117
  "label2id": {
118
  "apple_pie": "0",
119
  "baby_back_ribs": "1",
@@ -217,14 +229,25 @@
217
  "tuna_tartare": "99",
218
  "waffles": "100"
219
  },
220
- "layer_norm_eps": 1e-12,
221
- "model_type": "vit",
222
- "num_attention_heads": 12,
 
 
 
 
 
 
 
 
 
 
223
  "num_channels": 3,
224
- "num_hidden_layers": 12,
225
- "patch_size": 16,
226
  "problem_type": "single_label_classification",
227
  "qkv_bias": true,
 
228
  "torch_dtype": "float32",
229
- "transformers_version": "4.44.2"
230
  }
 
1
  {
2
+ "_name_or_path": "apple/mobilevit-small",
3
  "architectures": [
4
+ "MobileViTForImageClassification"
5
+ ],
6
+ "aspp_dropout_prob": 0.1,
7
+ "aspp_out_channels": 256,
8
+ "atrous_rates": [
9
+ 6,
10
+ 12,
11
+ 18
12
  ],
13
  "attention_probs_dropout_prob": 0.0,
14
+ "classifier_dropout_prob": 0.1,
15
+ "conv_kernel_size": 3,
16
+ "expand_ratio": 4.0,
17
+ "hidden_act": "silu",
18
+ "hidden_dropout_prob": 0.1,
19
+ "hidden_sizes": [
20
+ 144,
21
+ 192,
22
+ 240
23
+ ],
24
  "id2label": {
25
  "0": "apple_pie",
26
  "1": "baby_back_ribs",
 
124
  "98": "tiramisu",
125
  "99": "tuna_tartare"
126
  },
127
+ "image_size": 256,
128
  "initializer_range": 0.02,
 
129
  "label2id": {
130
  "apple_pie": "0",
131
  "baby_back_ribs": "1",
 
229
  "tuna_tartare": "99",
230
  "waffles": "100"
231
  },
232
+ "layer_norm_eps": 1e-05,
233
+ "mlp_ratio": 2.0,
234
+ "model_type": "mobilevit",
235
+ "neck_hidden_sizes": [
236
+ 16,
237
+ 32,
238
+ 64,
239
+ 96,
240
+ 128,
241
+ 160,
242
+ 640
243
+ ],
244
+ "num_attention_heads": 4,
245
  "num_channels": 3,
246
+ "output_stride": 32,
247
+ "patch_size": 2,
248
  "problem_type": "single_label_classification",
249
  "qkv_bias": true,
250
+ "semantic_loss_ignore_index": 255,
251
  "torch_dtype": "float32",
252
+ "transformers_version": "4.45.1"
253
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:24239f9dfba75ec0d9728b80f904d848d4cd8808a915cb0ee5390e2debf21418
3
- size 343528508
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:74b8804a2fa528e5d0a7ea1beb063130a5827cea203bf65b973fe4921d65e84e
3
+ size 20105428
preprocessor_config.json CHANGED
@@ -1,22 +1,17 @@
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
  }
 
1
  {
2
+ "crop_size": {
3
+ "height": 256,
4
+ "width": 256
5
+ },
6
+ "do_center_crop": true,
7
+ "do_flip_channel_order": true,
8
+ "do_flip_channels": true,
9
  "do_rescale": true,
10
  "do_resize": true,
11
+ "image_processor_type": "MobileViTImageProcessor",
 
 
 
 
 
 
 
 
 
 
12
  "resample": 2,
13
  "rescale_factor": 0.00392156862745098,
14
  "size": {
15
+ "shortest_edge": 288
 
16
  }
17
  }
runs/Oct08_14-43-23_a6c7f189a935/events.out.tfevents.1728398606.a6c7f189a935.30.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e9e60144dbfb48067025d5ea8f2db53e9ff8ca5cbe996cac28cf361ee44ceb0
3
+ size 11142
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9c80955f678989fb3db81a51e8af2c201ca5c9f730b9d2032db97b45326c0463
3
- size 5176
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:157af608c340abd797b8b02e18799e6e74ce1487a22455a7882bf00fe3b07c62
3
+ size 5240