Training in progress, step 2
Browse files- .gitignore +1 -0
- config.json +82 -0
- pytorch_model.bin +3 -0
- runs/Mar07_20-47-18_yokz-labtop/1678196850.2390814/events.out.tfevents.1678196850.yokz-labtop.32568.1 +3 -0
- runs/Mar07_20-47-18_yokz-labtop/events.out.tfevents.1678196850.yokz-labtop.32568.0 +3 -0
- runs/Mar10_21-50-33_yokz-labtop/1678459846.3209188/events.out.tfevents.1678459846.yokz-labtop.27172.1 +3 -0
- runs/Mar10_21-50-33_yokz-labtop/events.out.tfevents.1678459846.yokz-labtop.27172.0 +3 -0
- runs/Mar10_22-03-10_yokz-labtop/1678460599.2328014/events.out.tfevents.1678460599.yokz-labtop.27468.1 +3 -0
- runs/Mar10_22-03-10_yokz-labtop/events.out.tfevents.1678460599.yokz-labtop.27468.0 +3 -0
- runs/Mar10_22-04-46_yokz-labtop/1678460694.3880203/events.out.tfevents.1678460694.yokz-labtop.24600.1 +3 -0
- runs/Mar10_22-04-46_yokz-labtop/events.out.tfevents.1678460694.yokz-labtop.24600.0 +3 -0
- runs/Mar11_21-36-15_yokz-labtop/1678545384.9476733/events.out.tfevents.1678545384.yokz-labtop.27620.1 +3 -0
- runs/Mar11_21-36-15_yokz-labtop/events.out.tfevents.1678545384.yokz-labtop.27620.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": "human",
|
32 |
+
"1": "tree",
|
33 |
+
"2": "object",
|
34 |
+
"4": "river"
|
35 |
+
},
|
36 |
+
"image_size": 224,
|
37 |
+
"initializer_range": 0.02,
|
38 |
+
"label2id": {
|
39 |
+
"human": 0,
|
40 |
+
"object": 2,
|
41 |
+
"river": 4,
|
42 |
+
"tree": 1
|
43 |
+
},
|
44 |
+
"layer_norm_eps": 1e-06,
|
45 |
+
"mlp_ratios": [
|
46 |
+
4,
|
47 |
+
4,
|
48 |
+
4,
|
49 |
+
4
|
50 |
+
],
|
51 |
+
"model_type": "segformer",
|
52 |
+
"num_attention_heads": [
|
53 |
+
1,
|
54 |
+
2,
|
55 |
+
5,
|
56 |
+
8
|
57 |
+
],
|
58 |
+
"num_channels": 3,
|
59 |
+
"num_encoder_blocks": 4,
|
60 |
+
"patch_sizes": [
|
61 |
+
7,
|
62 |
+
3,
|
63 |
+
3,
|
64 |
+
3
|
65 |
+
],
|
66 |
+
"reshape_last_stage": true,
|
67 |
+
"semantic_loss_ignore_index": 255,
|
68 |
+
"sr_ratios": [
|
69 |
+
8,
|
70 |
+
4,
|
71 |
+
2,
|
72 |
+
1
|
73 |
+
],
|
74 |
+
"strides": [
|
75 |
+
4,
|
76 |
+
2,
|
77 |
+
2,
|
78 |
+
2
|
79 |
+
],
|
80 |
+
"torch_dtype": "float32",
|
81 |
+
"transformers_version": "4.26.1"
|
82 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d8d106b15dd1cf3095f9950e7a04ba6d0624cda8c073a82e737a42abd6ba02cc
|
3 |
+
size 14933837
|
runs/Mar07_20-47-18_yokz-labtop/1678196850.2390814/events.out.tfevents.1678196850.yokz-labtop.32568.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d352b72817852a7be4c4e8f90872da469c999669feb58c06435ac3e1eea02613
|
3 |
+
size 5663
|
runs/Mar07_20-47-18_yokz-labtop/events.out.tfevents.1678196850.yokz-labtop.32568.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7c4d36a7fd7931dd9dbac9caabb2a92182f0789ae5e8088604532c97f67fa6a0
|
3 |
+
size 4280
|
runs/Mar10_21-50-33_yokz-labtop/1678459846.3209188/events.out.tfevents.1678459846.yokz-labtop.27172.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dda486a417c82ebb5153a564399217e2e885493796dc5944e1bcf447aba65341
|
3 |
+
size 5663
|
runs/Mar10_21-50-33_yokz-labtop/events.out.tfevents.1678459846.yokz-labtop.27172.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3fd0cc94f648d89d0d23f62f362faceb92b7fdab442d8216db71c22ad0541062
|
3 |
+
size 4278
|
runs/Mar10_22-03-10_yokz-labtop/1678460599.2328014/events.out.tfevents.1678460599.yokz-labtop.27468.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b7525bbc90d518523173a0c970b79cdf95e127bfaf48cfa37b7e934fdfe1c378
|
3 |
+
size 5663
|
runs/Mar10_22-03-10_yokz-labtop/events.out.tfevents.1678460599.yokz-labtop.27468.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b9647adac487c0c7947ca01c338a5b8e34a3a81b469a0c60a7137d6f2f008e6c
|
3 |
+
size 4277
|
runs/Mar10_22-04-46_yokz-labtop/1678460694.3880203/events.out.tfevents.1678460694.yokz-labtop.24600.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6ece448703a13d5be4e3c5d37c2da8d1c8e78ada6d02d4a7d26e62d4987bd376
|
3 |
+
size 5663
|
runs/Mar10_22-04-46_yokz-labtop/events.out.tfevents.1678460694.yokz-labtop.24600.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7b7a867f1ed5e3c9066edb512d47cab1b68742b14a31c362e144d408777eca4b
|
3 |
+
size 4277
|
runs/Mar11_21-36-15_yokz-labtop/1678545384.9476733/events.out.tfevents.1678545384.yokz-labtop.27620.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:842b96a080d6875e5e92e4693e07409956ed1a6b7a1a80bf6e7f6795e39489d5
|
3 |
+
size 5663
|
runs/Mar11_21-36-15_yokz-labtop/events.out.tfevents.1678545384.yokz-labtop.27620.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7b8b2e2e25db2987739998791913af888a7de9240d27c1add4a8433a7d6e9634
|
3 |
+
size 5051
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d9fdb61e3c8847a046be959a152c13061635ed1f98b08dc4575e25063b63e6c2
|
3 |
+
size 3451
|