End of training
Browse files- .gitignore +1 -0
- config.json +168 -0
- preprocessor_config.json +23 -0
- pytorch_model.bin +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
checkpoint-*/
|
config.json
ADDED
|
@@ -0,0 +1,168 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "nvidia/mit-b3",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"SegformerForSemanticSegmentation"
|
| 5 |
+
],
|
| 6 |
+
"attention_probs_dropout_prob": 0.0,
|
| 7 |
+
"classifier_dropout_prob": 0.1,
|
| 8 |
+
"decoder_hidden_size": 768,
|
| 9 |
+
"depths": [
|
| 10 |
+
3,
|
| 11 |
+
4,
|
| 12 |
+
18,
|
| 13 |
+
3
|
| 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 |
+
64,
|
| 26 |
+
128,
|
| 27 |
+
320,
|
| 28 |
+
512
|
| 29 |
+
],
|
| 30 |
+
"id2label": {
|
| 31 |
+
"0": "unlabelled",
|
| 32 |
+
"1": "shirt, blouse",
|
| 33 |
+
"2": "top, t-shirt, sweatshirt",
|
| 34 |
+
"3": "sweater",
|
| 35 |
+
"4": "cardigan",
|
| 36 |
+
"5": "jacket",
|
| 37 |
+
"6": "vest",
|
| 38 |
+
"7": "pants",
|
| 39 |
+
"8": "shorts",
|
| 40 |
+
"9": "skirt",
|
| 41 |
+
"10": "coat",
|
| 42 |
+
"11": "dress",
|
| 43 |
+
"12": "jumpsuit",
|
| 44 |
+
"13": "cape",
|
| 45 |
+
"14": "glasses",
|
| 46 |
+
"15": "hat",
|
| 47 |
+
"16": "headband, head covering, hair accessory",
|
| 48 |
+
"17": "tie",
|
| 49 |
+
"18": "glove",
|
| 50 |
+
"19": "watch",
|
| 51 |
+
"20": "belt",
|
| 52 |
+
"21": "leg warmer",
|
| 53 |
+
"22": "tights, stockings",
|
| 54 |
+
"23": "sock",
|
| 55 |
+
"24": "shoe",
|
| 56 |
+
"25": "bag, wallet",
|
| 57 |
+
"26": "scarf",
|
| 58 |
+
"27": "umbrella",
|
| 59 |
+
"28": "hood",
|
| 60 |
+
"29": "collar",
|
| 61 |
+
"30": "lapel",
|
| 62 |
+
"31": "epaulette",
|
| 63 |
+
"32": "sleeve",
|
| 64 |
+
"33": "pocket",
|
| 65 |
+
"34": "neckline",
|
| 66 |
+
"35": "buckle",
|
| 67 |
+
"36": "zipper",
|
| 68 |
+
"37": "applique",
|
| 69 |
+
"38": "bead",
|
| 70 |
+
"39": "bow",
|
| 71 |
+
"40": "flower",
|
| 72 |
+
"41": "fringe",
|
| 73 |
+
"42": "ribbon",
|
| 74 |
+
"43": "rivet",
|
| 75 |
+
"44": "ruffle",
|
| 76 |
+
"45": "sequin",
|
| 77 |
+
"46": "tassel"
|
| 78 |
+
},
|
| 79 |
+
"image_size": 224,
|
| 80 |
+
"initializer_range": 0.02,
|
| 81 |
+
"label2id": {
|
| 82 |
+
"applique": 37,
|
| 83 |
+
"bag, wallet": 25,
|
| 84 |
+
"bead": 38,
|
| 85 |
+
"belt": 20,
|
| 86 |
+
"bow": 39,
|
| 87 |
+
"buckle": 35,
|
| 88 |
+
"cape": 13,
|
| 89 |
+
"cardigan": 4,
|
| 90 |
+
"coat": 10,
|
| 91 |
+
"collar": 29,
|
| 92 |
+
"dress": 11,
|
| 93 |
+
"epaulette": 31,
|
| 94 |
+
"flower": 40,
|
| 95 |
+
"fringe": 41,
|
| 96 |
+
"glasses": 14,
|
| 97 |
+
"glove": 18,
|
| 98 |
+
"hat": 15,
|
| 99 |
+
"headband, head covering, hair accessory": 16,
|
| 100 |
+
"hood": 28,
|
| 101 |
+
"jacket": 5,
|
| 102 |
+
"jumpsuit": 12,
|
| 103 |
+
"lapel": 30,
|
| 104 |
+
"leg warmer": 21,
|
| 105 |
+
"neckline": 34,
|
| 106 |
+
"pants": 7,
|
| 107 |
+
"pocket": 33,
|
| 108 |
+
"ribbon": 42,
|
| 109 |
+
"rivet": 43,
|
| 110 |
+
"ruffle": 44,
|
| 111 |
+
"scarf": 26,
|
| 112 |
+
"sequin": 45,
|
| 113 |
+
"shirt, blouse": 1,
|
| 114 |
+
"shoe": 24,
|
| 115 |
+
"shorts": 8,
|
| 116 |
+
"skirt": 9,
|
| 117 |
+
"sleeve": 32,
|
| 118 |
+
"sock": 23,
|
| 119 |
+
"sweater": 3,
|
| 120 |
+
"tassel": 46,
|
| 121 |
+
"tie": 17,
|
| 122 |
+
"tights, stockings": 22,
|
| 123 |
+
"top, t-shirt, sweatshirt": 2,
|
| 124 |
+
"umbrella": 27,
|
| 125 |
+
"unlabelled": 0,
|
| 126 |
+
"vest": 6,
|
| 127 |
+
"watch": 19,
|
| 128 |
+
"zipper": 36
|
| 129 |
+
},
|
| 130 |
+
"layer_norm_eps": 1e-06,
|
| 131 |
+
"mlp_ratios": [
|
| 132 |
+
4,
|
| 133 |
+
4,
|
| 134 |
+
4,
|
| 135 |
+
4
|
| 136 |
+
],
|
| 137 |
+
"model_type": "segformer",
|
| 138 |
+
"num_attention_heads": [
|
| 139 |
+
1,
|
| 140 |
+
2,
|
| 141 |
+
5,
|
| 142 |
+
8
|
| 143 |
+
],
|
| 144 |
+
"num_channels": 3,
|
| 145 |
+
"num_encoder_blocks": 4,
|
| 146 |
+
"patch_sizes": [
|
| 147 |
+
7,
|
| 148 |
+
3,
|
| 149 |
+
3,
|
| 150 |
+
3
|
| 151 |
+
],
|
| 152 |
+
"reshape_last_stage": true,
|
| 153 |
+
"semantic_loss_ignore_index": 255,
|
| 154 |
+
"sr_ratios": [
|
| 155 |
+
8,
|
| 156 |
+
4,
|
| 157 |
+
2,
|
| 158 |
+
1
|
| 159 |
+
],
|
| 160 |
+
"strides": [
|
| 161 |
+
4,
|
| 162 |
+
2,
|
| 163 |
+
2,
|
| 164 |
+
2
|
| 165 |
+
],
|
| 166 |
+
"torch_dtype": "float32",
|
| 167 |
+
"transformers_version": "4.30.0"
|
| 168 |
+
}
|
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:ec5749e86e5efad5d9dbbf7c2e4b996d675548dc22f26b06c0f1b6fc2e8bc1e2
|
| 3 |
+
size 189264154
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f871f7bdbc3af72746e7b76beb628f6365db08040b58b3071238dca986de97ca
|
| 3 |
+
size 4408
|