seena18 commited on
Commit
294655a
·
1 Parent(s): 9889070

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,130 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "google/vit-base-patch16-224-in21k",
3
+ "architectures": [
4
+ "ViTForImageClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.0,
7
+ "encoder_stride": 16,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.0,
10
+ "hidden_size": 768,
11
+ "id2label": {
12
+ "0": "dam",
13
+ "1": "parking lot",
14
+ "10": "sparse shrub land",
15
+ "11": "works",
16
+ "12": "oil field",
17
+ "13": "meadow",
18
+ "14": "ground track field",
19
+ "15": "detached house",
20
+ "16": "golf course",
21
+ "17": "forest",
22
+ "18": "desert",
23
+ "19": "lake",
24
+ "2": "greenhouse",
25
+ "20": "beach",
26
+ "21": "paddy field",
27
+ "22": "ice land",
28
+ "23": "bare land",
29
+ "24": "storage tank",
30
+ "25": "basketball court",
31
+ "26": "island",
32
+ "27": "substation",
33
+ "28": "mobile home park",
34
+ "29": "cemetery",
35
+ "3": "pier",
36
+ "30": "quarry",
37
+ "31": "solar power plant",
38
+ "32": "helipad",
39
+ "33": "roundabout",
40
+ "34": "runway",
41
+ "35": "wastewater plant",
42
+ "36": "river",
43
+ "37": "apartment",
44
+ "38": "dry field",
45
+ "39": "intersection",
46
+ "4": "bridge",
47
+ "40": "swimming pool",
48
+ "41": "commercial area",
49
+ "42": "church",
50
+ "43": "road",
51
+ "44": "orchard",
52
+ "45": "terraced field",
53
+ "46": "stadium",
54
+ "47": "train station",
55
+ "48": "railway",
56
+ "49": "viaduct",
57
+ "5": "mine",
58
+ "50": "wind turbine",
59
+ "6": "rock land",
60
+ "7": "baseball field",
61
+ "8": "apron",
62
+ "9": "tennis court"
63
+ },
64
+ "image_size": 224,
65
+ "initializer_range": 0.02,
66
+ "intermediate_size": 3072,
67
+ "label2id": {
68
+ "apartment": "37",
69
+ "apron": "8",
70
+ "bare land": "23",
71
+ "baseball field": "7",
72
+ "basketball court": "25",
73
+ "beach": "20",
74
+ "bridge": "4",
75
+ "cemetery": "29",
76
+ "church": "42",
77
+ "commercial area": "41",
78
+ "dam": "0",
79
+ "desert": "18",
80
+ "detached house": "15",
81
+ "dry field": "38",
82
+ "forest": "17",
83
+ "golf course": "16",
84
+ "greenhouse": "2",
85
+ "ground track field": "14",
86
+ "helipad": "32",
87
+ "ice land": "22",
88
+ "intersection": "39",
89
+ "island": "26",
90
+ "lake": "19",
91
+ "meadow": "13",
92
+ "mine": "5",
93
+ "mobile home park": "28",
94
+ "oil field": "12",
95
+ "orchard": "44",
96
+ "paddy field": "21",
97
+ "parking lot": "1",
98
+ "pier": "3",
99
+ "quarry": "30",
100
+ "railway": "48",
101
+ "river": "36",
102
+ "road": "43",
103
+ "rock land": "6",
104
+ "roundabout": "33",
105
+ "runway": "34",
106
+ "solar power plant": "31",
107
+ "sparse shrub land": "10",
108
+ "stadium": "46",
109
+ "storage tank": "24",
110
+ "substation": "27",
111
+ "swimming pool": "40",
112
+ "tennis court": "9",
113
+ "terraced field": "45",
114
+ "train station": "47",
115
+ "viaduct": "49",
116
+ "wastewater plant": "35",
117
+ "wind turbine": "50",
118
+ "works": "11"
119
+ },
120
+ "layer_norm_eps": 1e-12,
121
+ "model_type": "vit",
122
+ "num_attention_heads": 12,
123
+ "num_channels": 3,
124
+ "num_hidden_layers": 12,
125
+ "patch_size": 16,
126
+ "problem_type": "single_label_classification",
127
+ "qkv_bias": true,
128
+ "torch_dtype": "float32",
129
+ "transformers_version": "4.28.1"
130
+ }
preprocessor_config.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_normalize": true,
3
+ "do_rescale": true,
4
+ "do_resize": true,
5
+ "image_mean": [
6
+ 0.5,
7
+ 0.5,
8
+ 0.5
9
+ ],
10
+ "image_processor_type": "ViTImageProcessor",
11
+ "image_std": [
12
+ 0.5,
13
+ 0.5,
14
+ 0.5
15
+ ],
16
+ "resample": 2,
17
+ "rescale_factor": 0.00392156862745098,
18
+ "size": {
19
+ "height": 224,
20
+ "width": 224
21
+ }
22
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f1628b36d114725512caa86b54ac3f0764c1a8cfa3ace173ef0be3b89f62d1c5
3
+ size 343419437
runs/May05_20-00-47_b7e04bb1247d/1683316852.4583397/events.out.tfevents.1683316852.b7e04bb1247d.1075.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dfe294dc5619eb1343eb3e5eeb03f036f9994eab3022adc5e0177c0d50ed735a
3
+ size 5934
runs/May05_20-00-47_b7e04bb1247d/events.out.tfevents.1683316852.b7e04bb1247d.1075.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b79ff75adf2564945d14631d0da5ff23d653affd67ca299dea39e1a168c85564
3
+ size 8499
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf679ff7c61935dd25b238af661ab745c7c05593d6176b3c49266056eb58af23
3
+ size 3643