Training in progress, step 20
Browse files- .gitignore +1 -0
- config.json +112 -0
- pytorch_model.bin +3 -0
- runs/Sep01_20-28-20_josh-linux-desktop/events.out.tfevents.1693592905.josh-linux-desktop.151249.0 +3 -0
- runs/Sep01_20-31-43_josh-linux-desktop/events.out.tfevents.1693593106.josh-linux-desktop.151249.1 +3 -0
- runs/Sep01_21-10-04_josh-linux-desktop/events.out.tfevents.1693595407.josh-linux-desktop.151249.2 +3 -0
- runs/Sep01_21-11-27_josh-linux-desktop/events.out.tfevents.1693595489.josh-linux-desktop.151249.3 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,112 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": "Created, never classified",
|
32 |
+
"1": "Unclassified",
|
33 |
+
"2": "Ground",
|
34 |
+
"3": "Low Vegetation",
|
35 |
+
"4": "Medium Vegetation",
|
36 |
+
"5": "High Vegetation",
|
37 |
+
"6": "Building",
|
38 |
+
"7": "Low Point (noise)",
|
39 |
+
"8": "Model Key (Reserved)",
|
40 |
+
"9": "Water",
|
41 |
+
"10": "Rail",
|
42 |
+
"11": "Road Surface",
|
43 |
+
"12": "Reserve",
|
44 |
+
"13": "Wire - Guard (Shield)",
|
45 |
+
"14": "Wire - Conductor (Phase)",
|
46 |
+
"15": "Transmission Tower",
|
47 |
+
"16": "Wire-structure Connector (Insulator)",
|
48 |
+
"17": "Bridge Deck",
|
49 |
+
"18": "High Noise"
|
50 |
+
},
|
51 |
+
"image_size": 224,
|
52 |
+
"initializer_range": 0.02,
|
53 |
+
"label2id": {
|
54 |
+
"Bridge Deck": 17,
|
55 |
+
"Building": 6,
|
56 |
+
"Created, never classified": 0,
|
57 |
+
"Ground": 2,
|
58 |
+
"High Noise": 18,
|
59 |
+
"High Vegetation": 5,
|
60 |
+
"Low Point (noise)": 7,
|
61 |
+
"Low Vegetation": 3,
|
62 |
+
"Medium Vegetation": 4,
|
63 |
+
"Model Key (Reserved)": 8,
|
64 |
+
"Rail": 10,
|
65 |
+
"Reserve": 12,
|
66 |
+
"Road Surface": 11,
|
67 |
+
"Transmission Tower": 15,
|
68 |
+
"Unclassified": 1,
|
69 |
+
"Water": 9,
|
70 |
+
"Wire - Conductor (Phase)": 14,
|
71 |
+
"Wire - Guard (Shield)": 13,
|
72 |
+
"Wire-structure Connector (Insulator)": 16
|
73 |
+
},
|
74 |
+
"layer_norm_eps": 1e-06,
|
75 |
+
"mlp_ratios": [
|
76 |
+
4,
|
77 |
+
4,
|
78 |
+
4,
|
79 |
+
4
|
80 |
+
],
|
81 |
+
"model_type": "segformer",
|
82 |
+
"num_attention_heads": [
|
83 |
+
1,
|
84 |
+
2,
|
85 |
+
5,
|
86 |
+
8
|
87 |
+
],
|
88 |
+
"num_channels": 3,
|
89 |
+
"num_encoder_blocks": 4,
|
90 |
+
"patch_sizes": [
|
91 |
+
7,
|
92 |
+
3,
|
93 |
+
3,
|
94 |
+
3
|
95 |
+
],
|
96 |
+
"reshape_last_stage": true,
|
97 |
+
"semantic_loss_ignore_index": 255,
|
98 |
+
"sr_ratios": [
|
99 |
+
8,
|
100 |
+
4,
|
101 |
+
2,
|
102 |
+
1
|
103 |
+
],
|
104 |
+
"strides": [
|
105 |
+
4,
|
106 |
+
2,
|
107 |
+
2,
|
108 |
+
2
|
109 |
+
],
|
110 |
+
"torch_dtype": "float32",
|
111 |
+
"transformers_version": "4.30.2"
|
112 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c0e7f3245f5d7a60f249c3a4de6957ac8f4e83028d616daa697667c2d5242dd8
|
3 |
+
size 14949261
|
runs/Sep01_20-28-20_josh-linux-desktop/events.out.tfevents.1693592905.josh-linux-desktop.151249.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f85c2b2ae8c6d0e69bd82b19ce0e4f5fd04af5ed878ab7451f2ab8758dec4f83
|
3 |
+
size 5383
|
runs/Sep01_20-31-43_josh-linux-desktop/events.out.tfevents.1693593106.josh-linux-desktop.151249.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9bbba7310a627b5b746219625dfe1b3da678277c1f70a7216f0bba7045322566
|
3 |
+
size 5383
|
runs/Sep01_21-10-04_josh-linux-desktop/events.out.tfevents.1693595407.josh-linux-desktop.151249.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:791df7e339c8833029b5ce66d0db1d24b4b8064cc7a2f69f3cb5b6f49e86ea2b
|
3 |
+
size 5383
|
runs/Sep01_21-11-27_josh-linux-desktop/events.out.tfevents.1693595489.josh-linux-desktop.151249.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8cf74ecac4554d896d3ece958507dbe6f0fa9e40cfec79c08f4c5f3b3fc55640
|
3 |
+
size 8895
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2f34e4ae18c5789642cda7646a6c39aa3dab9260ab15e51dec6b06400d097f73
|
3 |
+
size 3899
|