Training in progress, step 2000
Browse files- .gitignore +1 -0
- config.json +77 -0
- preprocessor_config.json +17 -0
- pytorch_model.bin +3 -0
- runs/May30_15-37-08_662229d77e94/1685461039.86774/events.out.tfevents.1685461039.662229d77e94.22.1 +3 -0
- runs/May30_15-37-08_662229d77e94/events.out.tfevents.1685461039.662229d77e94.22.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": "1",
|
26 |
+
"1": "B",
|
27 |
+
"10": "p",
|
28 |
+
"11": "q",
|
29 |
+
"12": "r",
|
30 |
+
"2": "K",
|
31 |
+
"3": "N",
|
32 |
+
"4": "P",
|
33 |
+
"5": "Q",
|
34 |
+
"6": "R",
|
35 |
+
"7": "b",
|
36 |
+
"8": "k",
|
37 |
+
"9": "n"
|
38 |
+
},
|
39 |
+
"image_size": 256,
|
40 |
+
"initializer_range": 0.02,
|
41 |
+
"label2id": {
|
42 |
+
"1": "0",
|
43 |
+
"B": "1",
|
44 |
+
"K": "2",
|
45 |
+
"N": "3",
|
46 |
+
"P": "4",
|
47 |
+
"Q": "5",
|
48 |
+
"R": "6",
|
49 |
+
"b": "7",
|
50 |
+
"k": "8",
|
51 |
+
"n": "9",
|
52 |
+
"p": "10",
|
53 |
+
"q": "11",
|
54 |
+
"r": "12"
|
55 |
+
},
|
56 |
+
"layer_norm_eps": 1e-05,
|
57 |
+
"mlp_ratio": 2.0,
|
58 |
+
"model_type": "mobilevit",
|
59 |
+
"neck_hidden_sizes": [
|
60 |
+
16,
|
61 |
+
32,
|
62 |
+
64,
|
63 |
+
96,
|
64 |
+
128,
|
65 |
+
160,
|
66 |
+
640
|
67 |
+
],
|
68 |
+
"num_attention_heads": 4,
|
69 |
+
"num_channels": 3,
|
70 |
+
"output_stride": 32,
|
71 |
+
"patch_size": 2,
|
72 |
+
"problem_type": "single_label_classification",
|
73 |
+
"qkv_bias": true,
|
74 |
+
"semantic_loss_ignore_index": 255,
|
75 |
+
"torch_dtype": "float32",
|
76 |
+
"transformers_version": "4.27.4"
|
77 |
+
}
|
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 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1dbcbb616175247503b75654cd681191d69810cbc7392ffd489053526ba5833d
|
3 |
+
size 19957881
|
runs/May30_15-37-08_662229d77e94/1685461039.86774/events.out.tfevents.1685461039.662229d77e94.22.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a60555d9e04d926d191b1c9fc3301fe85f5a7fc5cc25e2d4b1ca92921684190c
|
3 |
+
size 5783
|
runs/May30_15-37-08_662229d77e94/events.out.tfevents.1685461039.662229d77e94.22.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f25f53a480b76b394c85196b67451f6c1fd7a1f729418bae059d102bbaaf3b26
|
3 |
+
size 5517
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3937aaaf709b9a3511ea6a458b67990974851ef7075e14128489747ed8056db7
|
3 |
+
size 3579
|