Commit
·
1bd7ac0
1
Parent(s):
d6833a2
Training in progress, epoch 0
Browse files- .gitignore +1 -0
- config.json +70 -0
- preprocessor_config.json +17 -0
- pytorch_model.bin +3 -0
- runs/Nov01_11-40-28_73747151c096/1667302838.4836233/events.out.tfevents.1667302838.73747151c096.80.1 +3 -0
- runs/Nov01_11-40-28_73747151c096/events.out.tfevents.1667302838.73747151c096.80.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "microsoft/swinv2-base-patch4-window16-256",
|
3 |
+
"architectures": [
|
4 |
+
"Swinv2ForImageClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.0,
|
7 |
+
"depths": [
|
8 |
+
2,
|
9 |
+
2,
|
10 |
+
18,
|
11 |
+
2
|
12 |
+
],
|
13 |
+
"drop_path_rate": 0.1,
|
14 |
+
"embed_dim": 128,
|
15 |
+
"encoder_stride": 32,
|
16 |
+
"hidden_act": "gelu",
|
17 |
+
"hidden_dropout_prob": 0.0,
|
18 |
+
"hidden_size": 1024,
|
19 |
+
"id2label": {
|
20 |
+
"0": "AnnualCrop",
|
21 |
+
"1": "Forest",
|
22 |
+
"2": "HerbaceousVegetation",
|
23 |
+
"3": "Highway",
|
24 |
+
"4": "Industrial",
|
25 |
+
"5": "Pasture",
|
26 |
+
"6": "PermanentCrop",
|
27 |
+
"7": "Residential",
|
28 |
+
"8": "River",
|
29 |
+
"9": "SeaLake"
|
30 |
+
},
|
31 |
+
"image_size": 256,
|
32 |
+
"initializer_range": 0.02,
|
33 |
+
"label2id": {
|
34 |
+
"AnnualCrop": "0",
|
35 |
+
"Forest": "1",
|
36 |
+
"HerbaceousVegetation": "2",
|
37 |
+
"Highway": "3",
|
38 |
+
"Industrial": "4",
|
39 |
+
"Pasture": "5",
|
40 |
+
"PermanentCrop": "6",
|
41 |
+
"Residential": "7",
|
42 |
+
"River": "8",
|
43 |
+
"SeaLake": "9"
|
44 |
+
},
|
45 |
+
"layer_norm_eps": 1e-05,
|
46 |
+
"mlp_ratio": 4.0,
|
47 |
+
"model_type": "swinv2",
|
48 |
+
"num_channels": 3,
|
49 |
+
"num_heads": [
|
50 |
+
4,
|
51 |
+
8,
|
52 |
+
16,
|
53 |
+
32
|
54 |
+
],
|
55 |
+
"num_layers": 4,
|
56 |
+
"patch_size": 4,
|
57 |
+
"path_norm": true,
|
58 |
+
"pretrained_window_sizes": [
|
59 |
+
0,
|
60 |
+
0,
|
61 |
+
0,
|
62 |
+
0
|
63 |
+
],
|
64 |
+
"problem_type": "single_label_classification",
|
65 |
+
"qkv_bias": true,
|
66 |
+
"torch_dtype": "float32",
|
67 |
+
"transformers_version": "4.23.1",
|
68 |
+
"use_absolute_embeddings": false,
|
69 |
+
"window_size": 16
|
70 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_normalize": true,
|
3 |
+
"do_resize": true,
|
4 |
+
"feature_extractor_type": "ViTFeatureExtractor",
|
5 |
+
"image_mean": [
|
6 |
+
0.485,
|
7 |
+
0.456,
|
8 |
+
0.406
|
9 |
+
],
|
10 |
+
"image_std": [
|
11 |
+
0.229,
|
12 |
+
0.224,
|
13 |
+
0.225
|
14 |
+
],
|
15 |
+
"resample": 3,
|
16 |
+
"size": 256
|
17 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2c0d467f4590a2c651912b2e4bf0d9445a6ab8333d99b5eec2ded38cdd6cdb00
|
3 |
+
size 347774863
|
runs/Nov01_11-40-28_73747151c096/1667302838.4836233/events.out.tfevents.1667302838.73747151c096.80.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:454bed4dc0eb8a2fa728075be47c5c1f214defd47c2dd4b65906138f5385dde7
|
3 |
+
size 5493
|
runs/Nov01_11-40-28_73747151c096/events.out.tfevents.1667302838.73747151c096.80.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b731e2bcdcdea28ff477d0e0e66e5caf3a6c508370085490416c679a7584885a
|
3 |
+
size 7192
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:817e8459f53e199166547268135d69c95a28b2c8d1e97c4c444dc1beba88c70d
|
3 |
+
size 3375
|