Training in progress, epoch 1
Browse files- .gitignore +1 -0
- config.json +98 -0
- pytorch_model.bin +3 -0
- runs/Feb20_00-22-55_Brians-Mac-mini.local/1676874181.669489/events.out.tfevents.1676874181.Brians-Mac-mini.local.11866.1 +3 -0
- runs/Feb20_00-22-55_Brians-Mac-mini.local/events.out.tfevents.1676874181.Brians-Mac-mini.local.11866.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
checkpoint-*/
|
config.json
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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": "facade",
|
| 33 |
+
"2": "window",
|
| 34 |
+
"3": "door",
|
| 35 |
+
"4": "cornice",
|
| 36 |
+
"5": "sill",
|
| 37 |
+
"6": "balcony",
|
| 38 |
+
"7": "blind",
|
| 39 |
+
"8": "molding",
|
| 40 |
+
"9": "deco",
|
| 41 |
+
"10": "pillar",
|
| 42 |
+
"11": "shop"
|
| 43 |
+
},
|
| 44 |
+
"image_size": 224,
|
| 45 |
+
"initializer_range": 0.02,
|
| 46 |
+
"label2id": {
|
| 47 |
+
"background": 0,
|
| 48 |
+
"balcony": 6,
|
| 49 |
+
"blind": 7,
|
| 50 |
+
"cornice": 4,
|
| 51 |
+
"deco": 9,
|
| 52 |
+
"door": 3,
|
| 53 |
+
"facade": 1,
|
| 54 |
+
"molding": 8,
|
| 55 |
+
"pillar": 10,
|
| 56 |
+
"shop": 11,
|
| 57 |
+
"sill": 5,
|
| 58 |
+
"window": 2
|
| 59 |
+
},
|
| 60 |
+
"layer_norm_eps": 1e-06,
|
| 61 |
+
"mlp_ratios": [
|
| 62 |
+
4,
|
| 63 |
+
4,
|
| 64 |
+
4,
|
| 65 |
+
4
|
| 66 |
+
],
|
| 67 |
+
"model_type": "segformer",
|
| 68 |
+
"num_attention_heads": [
|
| 69 |
+
1,
|
| 70 |
+
2,
|
| 71 |
+
5,
|
| 72 |
+
8
|
| 73 |
+
],
|
| 74 |
+
"num_channels": 3,
|
| 75 |
+
"num_encoder_blocks": 4,
|
| 76 |
+
"patch_sizes": [
|
| 77 |
+
7,
|
| 78 |
+
3,
|
| 79 |
+
3,
|
| 80 |
+
3
|
| 81 |
+
],
|
| 82 |
+
"reshape_last_stage": true,
|
| 83 |
+
"semantic_loss_ignore_index": 255,
|
| 84 |
+
"sr_ratios": [
|
| 85 |
+
8,
|
| 86 |
+
4,
|
| 87 |
+
2,
|
| 88 |
+
1
|
| 89 |
+
],
|
| 90 |
+
"strides": [
|
| 91 |
+
4,
|
| 92 |
+
2,
|
| 93 |
+
2,
|
| 94 |
+
2
|
| 95 |
+
],
|
| 96 |
+
"torch_dtype": "float32",
|
| 97 |
+
"transformers_version": "4.26.1"
|
| 98 |
+
}
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:42e24b6e6a5b21e78fc61e122505fe969835d49e694aec9800e784539defaee7
|
| 3 |
+
size 14937313
|
runs/Feb20_00-22-55_Brians-Mac-mini.local/1676874181.669489/events.out.tfevents.1676874181.Brians-Mac-mini.local.11866.1
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:110fbdddbf74a1e97a65a7b3698e555be175f09128c112112ca8b89d9d26fd08
|
| 3 |
+
size 5730
|
runs/Feb20_00-22-55_Brians-Mac-mini.local/events.out.tfevents.1676874181.Brians-Mac-mini.local.11866.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1fa17ff13481b594a1582f21f7bab929bfcb7a53991178e4762f2e75ffb51b3d
|
| 3 |
+
size 5438
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9b46fa22916114fa28a356665e88506ac562684476039c0fc63bcc4a2c1fbf09
|
| 3 |
+
size 3503
|