neuralhaven
commited on
Commit
•
721dc61
1
Parent(s):
deb832a
Training in progress, epoch 1
Browse files- config.json +65 -0
- model.safetensors +3 -0
- preprocessor_config.json +17 -0
- training_args.bin +3 -0
config.json
ADDED
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "apple/mobilevit-xx-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": 2.0,
|
17 |
+
"hidden_act": "silu",
|
18 |
+
"hidden_dropout_prob": 0.05,
|
19 |
+
"hidden_sizes": [
|
20 |
+
64,
|
21 |
+
80,
|
22 |
+
96
|
23 |
+
],
|
24 |
+
"id2label": {
|
25 |
+
"0": "Very Low",
|
26 |
+
"1": "Low",
|
27 |
+
"2": "Moderate",
|
28 |
+
"3": "High",
|
29 |
+
"4": "Very High",
|
30 |
+
"5": "Non-burnable",
|
31 |
+
"6": "Water"
|
32 |
+
},
|
33 |
+
"image_size": 256,
|
34 |
+
"initializer_range": 0.02,
|
35 |
+
"label2id": {
|
36 |
+
"High": 3,
|
37 |
+
"Low": 1,
|
38 |
+
"Moderate": 2,
|
39 |
+
"Non-burnable": 5,
|
40 |
+
"Very High": 4,
|
41 |
+
"Very Low": 0,
|
42 |
+
"Water": 6
|
43 |
+
},
|
44 |
+
"layer_norm_eps": 1e-05,
|
45 |
+
"mlp_ratio": 2.0,
|
46 |
+
"model_type": "mobilevit",
|
47 |
+
"neck_hidden_sizes": [
|
48 |
+
16,
|
49 |
+
16,
|
50 |
+
24,
|
51 |
+
48,
|
52 |
+
64,
|
53 |
+
80,
|
54 |
+
320
|
55 |
+
],
|
56 |
+
"num_attention_heads": 4,
|
57 |
+
"num_channels": 3,
|
58 |
+
"output_stride": 32,
|
59 |
+
"patch_size": 2,
|
60 |
+
"problem_type": "single_label_classification",
|
61 |
+
"qkv_bias": true,
|
62 |
+
"semantic_loss_ignore_index": 255,
|
63 |
+
"torch_dtype": "float32",
|
64 |
+
"transformers_version": "4.45.1"
|
65 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1b6bc68269b51faf1a6a097131ee4b26fd9f22972144d4c06debac246a55e3a8
|
3 |
+
size 3875772
|
preprocessor_config.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9506c50a1e435bd1ea74bc8eac225030b11c64745086d4f378c5cde49860d496
|
3 |
+
size 5304
|