brandyDolly
commited on
Commit
•
76c12a8
1
Parent(s):
aa58d41
Training in progress, epoch 0
Browse files
config.json
CHANGED
@@ -1,27 +1,51 @@
|
|
1 |
{
|
2 |
-
"
|
3 |
-
"_name_or_path": "Intel/dpt-large",
|
4 |
-
"add_projection": false,
|
5 |
"architectures": [
|
6 |
-
"
|
7 |
],
|
8 |
-
"
|
|
|
|
|
9 |
"auxiliary_loss_weight": 0.4,
|
|
|
10 |
"backbone": null,
|
11 |
-
"backbone_config":
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
"backbone_kwargs": null,
|
14 |
-
"
|
15 |
-
5,
|
16 |
-
11,
|
17 |
-
17,
|
18 |
-
23
|
19 |
-
],
|
20 |
-
"fusion_hidden_size": 256,
|
21 |
-
"head_in_index": -1,
|
22 |
-
"hidden_act": "gelu",
|
23 |
-
"hidden_dropout_prob": 0.0,
|
24 |
-
"hidden_size": 1024,
|
25 |
"id2label": {
|
26 |
"0": "unlabeled",
|
27 |
"1": "flat-road",
|
@@ -59,10 +83,7 @@
|
|
59 |
"33": "void-static",
|
60 |
"34": "void-unclear"
|
61 |
},
|
62 |
-
"image_size": 384,
|
63 |
"initializer_range": 0.02,
|
64 |
-
"intermediate_size": 4096,
|
65 |
-
"is_hybrid": false,
|
66 |
"label2id": {
|
67 |
"construction-bridge": "22",
|
68 |
"construction-building": "18",
|
@@ -100,35 +121,17 @@
|
|
100 |
"void-static": "33",
|
101 |
"void-unclear": "34"
|
102 |
},
|
103 |
-
"
|
104 |
-
"model_type": "
|
105 |
-
"
|
106 |
-
256,
|
107 |
-
512,
|
108 |
-
1024,
|
109 |
-
1024
|
110 |
-
],
|
111 |
-
"neck_ignore_stages": [],
|
112 |
-
"num_attention_heads": 16,
|
113 |
-
"num_channels": 3,
|
114 |
-
"num_hidden_layers": 24,
|
115 |
-
"patch_size": 16,
|
116 |
-
"qkv_bias": true,
|
117 |
-
"readout_type": "project",
|
118 |
-
"reassemble_factors": [
|
119 |
-
4,
|
120 |
-
2,
|
121 |
1,
|
122 |
-
|
|
|
|
|
123 |
],
|
124 |
-
"semantic_classifier_dropout": 0.1,
|
125 |
-
"semantic_loss_ignore_index": 255,
|
126 |
"torch_dtype": "float32",
|
127 |
-
"transformers_version": "4.
|
128 |
-
"use_autobackbone": false,
|
129 |
"use_auxiliary_head": true,
|
130 |
-
"use_batch_norm_in_fusion_residual": false,
|
131 |
-
"use_bias_in_fusion_residual": null,
|
132 |
"use_pretrained_backbone": false,
|
133 |
"use_timm_backbone": false
|
134 |
}
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "openmmlab/upernet-convnext-tiny",
|
|
|
|
|
3 |
"architectures": [
|
4 |
+
"UperNetForSemanticSegmentation"
|
5 |
],
|
6 |
+
"auxiliary_channels": 256,
|
7 |
+
"auxiliary_concat_input": false,
|
8 |
+
"auxiliary_in_channels": 384,
|
9 |
"auxiliary_loss_weight": 0.4,
|
10 |
+
"auxiliary_num_convs": 1,
|
11 |
"backbone": null,
|
12 |
+
"backbone_config": {
|
13 |
+
"depths": [
|
14 |
+
3,
|
15 |
+
3,
|
16 |
+
9,
|
17 |
+
3
|
18 |
+
],
|
19 |
+
"drop_path_rate": 0.0,
|
20 |
+
"hidden_act": "gelu",
|
21 |
+
"hidden_sizes": [
|
22 |
+
96,
|
23 |
+
192,
|
24 |
+
384,
|
25 |
+
768
|
26 |
+
],
|
27 |
+
"image_size": 224,
|
28 |
+
"initializer_range": 0.02,
|
29 |
+
"layer_norm_eps": 1e-12,
|
30 |
+
"layer_scale_init_value": 1e-06,
|
31 |
+
"model_type": "convnext",
|
32 |
+
"num_stages": 4,
|
33 |
+
"out_features": [
|
34 |
+
"stage1",
|
35 |
+
"stage2",
|
36 |
+
"stage3",
|
37 |
+
"stage4"
|
38 |
+
],
|
39 |
+
"out_indices": [
|
40 |
+
1,
|
41 |
+
2,
|
42 |
+
3,
|
43 |
+
4
|
44 |
+
],
|
45 |
+
"patch_size": 4
|
46 |
+
},
|
47 |
"backbone_kwargs": null,
|
48 |
+
"hidden_size": 512,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
"id2label": {
|
50 |
"0": "unlabeled",
|
51 |
"1": "flat-road",
|
|
|
83 |
"33": "void-static",
|
84 |
"34": "void-unclear"
|
85 |
},
|
|
|
86 |
"initializer_range": 0.02,
|
|
|
|
|
87 |
"label2id": {
|
88 |
"construction-bridge": "22",
|
89 |
"construction-building": "18",
|
|
|
121 |
"void-static": "33",
|
122 |
"void-unclear": "34"
|
123 |
},
|
124 |
+
"loss_ignore_index": 255,
|
125 |
+
"model_type": "upernet",
|
126 |
+
"pool_scales": [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
1,
|
128 |
+
2,
|
129 |
+
3,
|
130 |
+
6
|
131 |
],
|
|
|
|
|
132 |
"torch_dtype": "float32",
|
133 |
+
"transformers_version": "4.47.0.dev0",
|
|
|
134 |
"use_auxiliary_head": true,
|
|
|
|
|
135 |
"use_pretrained_backbone": false,
|
136 |
"use_timm_backbone": false
|
137 |
}
|
model.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:21fdd4e5b645e2d924517f61d4228257ee9f76486c6797aea2e05f8c9d0175a5
|
3 |
+
size 240698832
|
preprocessor_config.json
CHANGED
@@ -1,26 +1,23 @@
|
|
1 |
{
|
2 |
"do_normalize": true,
|
3 |
-
"
|
4 |
"do_rescale": true,
|
5 |
"do_resize": true,
|
6 |
-
"ensure_multiple_of": 1,
|
7 |
"image_mean": [
|
8 |
-
0.
|
9 |
-
0.
|
10 |
-
0.
|
11 |
],
|
12 |
-
"image_processor_type": "
|
13 |
"image_std": [
|
14 |
-
0.
|
15 |
-
0.
|
16 |
-
0.
|
17 |
],
|
18 |
-
"keep_aspect_ratio": false,
|
19 |
"resample": 2,
|
20 |
"rescale_factor": 0.00392156862745098,
|
21 |
"size": {
|
22 |
-
"height":
|
23 |
-
"width":
|
24 |
-
}
|
25 |
-
"size_divisor": null
|
26 |
}
|
|
|
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 |
}
|
runs/Nov30_13-51-36_769263f60571/events.out.tfevents.1732974708.769263f60571.5196.0
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:64accad8626700d1b2ae95b845da5c0583bd90d47d625793e6522e89ebce6b5d
|
3 |
+
size 7894
|
runs/Nov30_13-56-51_769263f60571/events.out.tfevents.1732975031.769263f60571.6508.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e7084421063fb824931de8eff779be53eb829e536592e2cb88e13d0a6e9cc5be
|
3 |
+
size 4184
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 5432
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:01b37e576e3075a1d145fb687f9280cca4a4ef338b4648e0ee3458f77aea253d
|
3 |
size 5432
|