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-b2",
|
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 |
+
6,
|
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": "Everything Else",
|
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 |
+
"Everything Else": 0,
|
83 |
+
"applique": 37,
|
84 |
+
"bag, wallet": 25,
|
85 |
+
"bead": 38,
|
86 |
+
"belt": 20,
|
87 |
+
"bow": 39,
|
88 |
+
"buckle": 35,
|
89 |
+
"cape": 13,
|
90 |
+
"cardigan": 4,
|
91 |
+
"coat": 10,
|
92 |
+
"collar": 29,
|
93 |
+
"dress": 11,
|
94 |
+
"epaulette": 31,
|
95 |
+
"flower": 40,
|
96 |
+
"fringe": 41,
|
97 |
+
"glasses": 14,
|
98 |
+
"glove": 18,
|
99 |
+
"hat": 15,
|
100 |
+
"headband, head covering, hair accessory": 16,
|
101 |
+
"hood": 28,
|
102 |
+
"jacket": 5,
|
103 |
+
"jumpsuit": 12,
|
104 |
+
"lapel": 30,
|
105 |
+
"leg warmer": 21,
|
106 |
+
"neckline": 34,
|
107 |
+
"pants": 7,
|
108 |
+
"pocket": 33,
|
109 |
+
"ribbon": 42,
|
110 |
+
"rivet": 43,
|
111 |
+
"ruffle": 44,
|
112 |
+
"scarf": 26,
|
113 |
+
"sequin": 45,
|
114 |
+
"shirt, blouse": 1,
|
115 |
+
"shoe": 24,
|
116 |
+
"shorts": 8,
|
117 |
+
"skirt": 9,
|
118 |
+
"sleeve": 32,
|
119 |
+
"sock": 23,
|
120 |
+
"sweater": 3,
|
121 |
+
"tassel": 46,
|
122 |
+
"tie": 17,
|
123 |
+
"tights, stockings": 22,
|
124 |
+
"top, t-shirt, sweatshirt": 2,
|
125 |
+
"umbrella": 27,
|
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:58dab7774027ae053bf4be4828a05e4dd566406d032ecd9cc2ce95b4c5c6d99b
|
3 |
+
size 109668666
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c1ce3ee14c2376cceaac24ed13b28ee1adb8d428fe214bdffa7aeb781f919e5f
|
3 |
+
size 4408
|