Commit
·
b47912e
1
Parent(s):
0517df4
Training in progress, epoch 1
Browse files- config.json +106 -0
- preprocessor_config.json +23 -0
- pytorch_model.bin +3 -0
- training_args.bin +3 -0
config.json
ADDED
|
@@ -0,0 +1,106 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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": "background",
|
| 32 |
+
"1": "ship",
|
| 33 |
+
"2": "small-vehicle",
|
| 34 |
+
"3": "tennis-court",
|
| 35 |
+
"4": "helicopter",
|
| 36 |
+
"5": "basketball-court",
|
| 37 |
+
"6": "ground-track-field",
|
| 38 |
+
"7": "swimming-pool",
|
| 39 |
+
"8": "harbor",
|
| 40 |
+
"9": "soccer-ball-field",
|
| 41 |
+
"10": "plane",
|
| 42 |
+
"11": "storage-tank",
|
| 43 |
+
"12": "baseball-diamond",
|
| 44 |
+
"13": "large-vehicle",
|
| 45 |
+
"14": "bridge",
|
| 46 |
+
"15": "roundabout"
|
| 47 |
+
},
|
| 48 |
+
"image_size": 224,
|
| 49 |
+
"initializer_range": 0.02,
|
| 50 |
+
"label2id": {
|
| 51 |
+
"background": "0",
|
| 52 |
+
"baseball-diamond": "12",
|
| 53 |
+
"basketball-court": "5",
|
| 54 |
+
"bridge": "14",
|
| 55 |
+
"ground-track-field": "6",
|
| 56 |
+
"harbor": "8",
|
| 57 |
+
"helicopter": "4",
|
| 58 |
+
"large-vehicle": "13",
|
| 59 |
+
"plane": "10",
|
| 60 |
+
"roundabout": "15",
|
| 61 |
+
"ship": "1",
|
| 62 |
+
"small-vehicle": "2",
|
| 63 |
+
"soccer-ball-field": "9",
|
| 64 |
+
"storage-tank": "11",
|
| 65 |
+
"swimming-pool": "7",
|
| 66 |
+
"tennis-court": "3"
|
| 67 |
+
},
|
| 68 |
+
"layer_norm_eps": 1e-06,
|
| 69 |
+
"mlp_ratios": [
|
| 70 |
+
4,
|
| 71 |
+
4,
|
| 72 |
+
4,
|
| 73 |
+
4
|
| 74 |
+
],
|
| 75 |
+
"model_type": "segformer",
|
| 76 |
+
"num_attention_heads": [
|
| 77 |
+
1,
|
| 78 |
+
2,
|
| 79 |
+
5,
|
| 80 |
+
8
|
| 81 |
+
],
|
| 82 |
+
"num_channels": 3,
|
| 83 |
+
"num_encoder_blocks": 4,
|
| 84 |
+
"patch_sizes": [
|
| 85 |
+
7,
|
| 86 |
+
3,
|
| 87 |
+
3,
|
| 88 |
+
3
|
| 89 |
+
],
|
| 90 |
+
"reshape_last_stage": true,
|
| 91 |
+
"semantic_loss_ignore_index": 255,
|
| 92 |
+
"sr_ratios": [
|
| 93 |
+
8,
|
| 94 |
+
4,
|
| 95 |
+
2,
|
| 96 |
+
1
|
| 97 |
+
],
|
| 98 |
+
"strides": [
|
| 99 |
+
4,
|
| 100 |
+
2,
|
| 101 |
+
2,
|
| 102 |
+
2
|
| 103 |
+
],
|
| 104 |
+
"torch_dtype": "float32",
|
| 105 |
+
"transformers_version": "4.35.0.dev0"
|
| 106 |
+
}
|
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 |
+
}
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f7c8ee417ad8049b5a49a16bc1c6df1223e55f9ee6cc3ea49c3c621919bb8b65
|
| 3 |
+
size 14946189
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:591b8e987784f50424579a372536796b9a613a42d819f60e3e277fe8a0f0919b
|
| 3 |
+
size 4155
|