JoshuaKelleyDs
commited on
Training in progress, step 500
Browse files- config.json +61 -0
- model.safetensors +3 -0
- preprocessor_config.json +31 -0
- training_args.bin +3 -0
config.json
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": "LABEL_0",
|
26 |
+
"1": "LABEL_1",
|
27 |
+
"2": "LABEL_2",
|
28 |
+
"3": "LABEL_3",
|
29 |
+
"4": "LABEL_4"
|
30 |
+
},
|
31 |
+
"image_size": 224,
|
32 |
+
"initializer_range": 0.02,
|
33 |
+
"label2id": {
|
34 |
+
"LABEL_0": 0,
|
35 |
+
"LABEL_1": 1,
|
36 |
+
"LABEL_2": 2,
|
37 |
+
"LABEL_3": 3,
|
38 |
+
"LABEL_4": 4
|
39 |
+
},
|
40 |
+
"layer_norm_eps": 1e-05,
|
41 |
+
"mlp_ratio": 2.0,
|
42 |
+
"model_type": "mobilevit",
|
43 |
+
"neck_hidden_sizes": [
|
44 |
+
16,
|
45 |
+
32,
|
46 |
+
64,
|
47 |
+
96,
|
48 |
+
128,
|
49 |
+
160,
|
50 |
+
640
|
51 |
+
],
|
52 |
+
"num_attention_heads": 4,
|
53 |
+
"num_channels": 3,
|
54 |
+
"output_stride": 32,
|
55 |
+
"patch_size": 2,
|
56 |
+
"problem_type": "single_label_classification",
|
57 |
+
"qkv_bias": true,
|
58 |
+
"semantic_loss_ignore_index": 255,
|
59 |
+
"torch_dtype": "float32",
|
60 |
+
"transformers_version": "4.41.2"
|
61 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:412e01b82e2b2450ef78f326900e815bdab9edd5b71cf5b361d4776bbd185f23
|
3 |
+
size 19859260
|
preprocessor_config.json
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_valid_processor_keys": [
|
3 |
+
"images",
|
4 |
+
"segmentation_maps",
|
5 |
+
"do_resize",
|
6 |
+
"size",
|
7 |
+
"resample",
|
8 |
+
"do_rescale",
|
9 |
+
"rescale_factor",
|
10 |
+
"do_center_crop",
|
11 |
+
"crop_size",
|
12 |
+
"do_flip_channel_order",
|
13 |
+
"return_tensors",
|
14 |
+
"data_format",
|
15 |
+
"input_data_format"
|
16 |
+
],
|
17 |
+
"crop_size": {
|
18 |
+
"height": 224,
|
19 |
+
"width": 224
|
20 |
+
},
|
21 |
+
"do_center_crop": true,
|
22 |
+
"do_flip_channel_order": true,
|
23 |
+
"do_rescale": true,
|
24 |
+
"do_resize": true,
|
25 |
+
"image_processor_type": "MobileViTImageProcessor",
|
26 |
+
"resample": 2,
|
27 |
+
"rescale_factor": 0.00392156862745098,
|
28 |
+
"size": {
|
29 |
+
"shortest_edge": 224
|
30 |
+
}
|
31 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:46d496824e07cc56bf3c6bb3583c95a678ca24098221f76f5cf06f1f6792498e
|
3 |
+
size 5112
|