Training in progress, epoch 1
Browse files- config.json +84 -0
- model.safetensors +3 -0
- preprocessor_config.json +23 -0
- training_args.bin +3 -0
config.json
ADDED
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "nvidia/mit-b0",
|
3 |
+
"architectures": [
|
4 |
+
"SegformerForSemanticSegmentation"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.0,
|
7 |
+
"classifier_dropout_prob": 0.1,
|
8 |
+
"decoder_hidden_size": 256,
|
9 |
+
"depths": [
|
10 |
+
2,
|
11 |
+
2,
|
12 |
+
2,
|
13 |
+
2
|
14 |
+
],
|
15 |
+
"downsampling_rates": [
|
16 |
+
1,
|
17 |
+
4,
|
18 |
+
8,
|
19 |
+
16
|
20 |
+
],
|
21 |
+
"drop_path_rate": 0.1,
|
22 |
+
"hidden_act": "gelu",
|
23 |
+
"hidden_dropout_prob": 0.0,
|
24 |
+
"hidden_sizes": [
|
25 |
+
32,
|
26 |
+
64,
|
27 |
+
160,
|
28 |
+
256
|
29 |
+
],
|
30 |
+
"id2label": {
|
31 |
+
"0": "void",
|
32 |
+
"1": "Fruit",
|
33 |
+
"2": "Leaf",
|
34 |
+
"3": "Flower",
|
35 |
+
"4": "Stem"
|
36 |
+
},
|
37 |
+
"image_size": 224,
|
38 |
+
"initializer_range": 0.02,
|
39 |
+
"label2id": {
|
40 |
+
"Flower": "3",
|
41 |
+
"Fruit": "1",
|
42 |
+
"Leaf": "2",
|
43 |
+
"Stem": "4",
|
44 |
+
"void": "0"
|
45 |
+
},
|
46 |
+
"layer_norm_eps": 1e-06,
|
47 |
+
"mlp_ratios": [
|
48 |
+
4,
|
49 |
+
4,
|
50 |
+
4,
|
51 |
+
4
|
52 |
+
],
|
53 |
+
"model_type": "segformer",
|
54 |
+
"num_attention_heads": [
|
55 |
+
1,
|
56 |
+
2,
|
57 |
+
5,
|
58 |
+
8
|
59 |
+
],
|
60 |
+
"num_channels": 3,
|
61 |
+
"num_encoder_blocks": 4,
|
62 |
+
"patch_sizes": [
|
63 |
+
7,
|
64 |
+
3,
|
65 |
+
3,
|
66 |
+
3
|
67 |
+
],
|
68 |
+
"reshape_last_stage": true,
|
69 |
+
"semantic_loss_ignore_index": 255,
|
70 |
+
"sr_ratios": [
|
71 |
+
8,
|
72 |
+
4,
|
73 |
+
2,
|
74 |
+
1
|
75 |
+
],
|
76 |
+
"strides": [
|
77 |
+
4,
|
78 |
+
2,
|
79 |
+
2,
|
80 |
+
2
|
81 |
+
],
|
82 |
+
"torch_dtype": "float32",
|
83 |
+
"transformers_version": "4.38.0.dev0"
|
84 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:375966200d27984996a3cc64732ef8e4bc16bb5a39a575ff162209cd23e271b8
|
3 |
+
size 14887860
|
preprocessor_config.json
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_normalize": true,
|
3 |
+
"do_reduce_labels": false,
|
4 |
+
"do_rescale": true,
|
5 |
+
"do_resize": true,
|
6 |
+
"image_mean": [
|
7 |
+
0.485,
|
8 |
+
0.456,
|
9 |
+
0.406
|
10 |
+
],
|
11 |
+
"image_processor_type": "SegformerImageProcessor",
|
12 |
+
"image_std": [
|
13 |
+
0.229,
|
14 |
+
0.224,
|
15 |
+
0.225
|
16 |
+
],
|
17 |
+
"resample": 2,
|
18 |
+
"rescale_factor": 0.00392156862745098,
|
19 |
+
"size": {
|
20 |
+
"height": 512,
|
21 |
+
"width": 512
|
22 |
+
}
|
23 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cccb32cc53991d7c5464aa1649d988c2a77e56773b970b56466981d794685c68
|
3 |
+
size 4792
|