XC commited on
Commit
ec4aa8f
1 Parent(s): 7d8d1a6

Training in progress, epoch 0

Browse files
Files changed (21) hide show
  1. .gitignore +1 -0
  2. config.json +64 -0
  3. preprocessor_config.json +17 -0
  4. pytorch_model.bin +3 -0
  5. runs/Aug12_22-36-09_xc-pc/1660314989.1872704/events.out.tfevents.1660314989.xc-pc.174039.1 +3 -0
  6. runs/Aug12_22-36-09_xc-pc/events.out.tfevents.1660314988.xc-pc.174039.0 +3 -0
  7. runs/Aug12_23-10-46_xc-pc/1660317069.8276906/events.out.tfevents.1660317069.xc-pc.4105.1 +3 -0
  8. runs/Aug12_23-10-46_xc-pc/events.out.tfevents.1660317069.xc-pc.4105.0 +3 -0
  9. runs/Aug12_23-18-08_xc-pc/1660317497.0435746/events.out.tfevents.1660317497.xc-pc.5945.1 +3 -0
  10. runs/Aug12_23-18-08_xc-pc/events.out.tfevents.1660317497.xc-pc.5945.0 +3 -0
  11. runs/Aug12_23-27-59_xc-pc/1660318093.3960562/events.out.tfevents.1660318093.xc-pc.7733.1 +3 -0
  12. runs/Aug12_23-27-59_xc-pc/events.out.tfevents.1660318093.xc-pc.7733.0 +3 -0
  13. runs/Aug12_23-31-36_xc-pc/1660318305.8926778/events.out.tfevents.1660318305.xc-pc.8088.1 +3 -0
  14. runs/Aug12_23-31-36_xc-pc/events.out.tfevents.1660318305.xc-pc.8088.0 +3 -0
  15. runs/Aug13_20-24-47_xc-pc/1660393500.318533/events.out.tfevents.1660393500.xc-pc.5307.1 +3 -0
  16. runs/Aug13_20-24-47_xc-pc/events.out.tfevents.1660393500.xc-pc.5307.0 +3 -0
  17. runs/Aug13_20-28-02_xc-pc/1660393691.901428/events.out.tfevents.1660393691.xc-pc.5969.1 +3 -0
  18. runs/Aug13_20-28-02_xc-pc/events.out.tfevents.1660393691.xc-pc.5969.0 +3 -0
  19. runs/Aug13_20-29-08_xc-pc/1660393758.4316206/events.out.tfevents.1660393758.xc-pc.6149.1 +3 -0
  20. runs/Aug13_20-29-08_xc-pc/events.out.tfevents.1660393758.xc-pc.6149.0 +3 -0
  21. training_args.bin +3 -0
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "microsoft/swin-tiny-patch4-window7-224",
3
+ "architectures": [
4
+ "SwinForImageClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.0,
7
+ "depths": [
8
+ 2,
9
+ 2,
10
+ 6,
11
+ 2
12
+ ],
13
+ "drop_path_rate": 0.1,
14
+ "embed_dim": 96,
15
+ "encoder_stride": 32,
16
+ "hidden_act": "gelu",
17
+ "hidden_dropout_prob": 0.0,
18
+ "hidden_size": 768,
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": 224,
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": "swin",
48
+ "num_channels": 3,
49
+ "num_heads": [
50
+ 3,
51
+ 6,
52
+ 12,
53
+ 24
54
+ ],
55
+ "num_layers": 4,
56
+ "patch_size": 4,
57
+ "path_norm": true,
58
+ "problem_type": "single_label_classification",
59
+ "qkv_bias": true,
60
+ "torch_dtype": "float32",
61
+ "transformers_version": "4.21.0",
62
+ "use_absolute_embeddings": false,
63
+ "window_size": 7
64
+ }
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": 224
17
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5abdffb07ec36240ade4783b4db092701e8ba527f06fcba76e8eb18a24856966
3
+ size 110423392
runs/Aug12_22-36-09_xc-pc/1660314989.1872704/events.out.tfevents.1660314989.xc-pc.174039.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71be733baffc101dd6f124431be758b646d95dfcd2efe535e3568e9eaa10a5bd
3
+ size 5493
runs/Aug12_22-36-09_xc-pc/events.out.tfevents.1660314988.xc-pc.174039.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:91f435cb67d8d3f3cd5133633e807c125fbaca00d1336c64d5d399aa07704112
3
+ size 4309
runs/Aug12_23-10-46_xc-pc/1660317069.8276906/events.out.tfevents.1660317069.xc-pc.4105.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:72ca1b404e9283ca5ef78f8ead5841babab0cd5a79425c794b22c017783ba7a5
3
+ size 5493
runs/Aug12_23-10-46_xc-pc/events.out.tfevents.1660317069.xc-pc.4105.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf6a8b3d2dcb4d32877ed188228debee83a898c36ca58969869a7067f579fae1
3
+ size 4617
runs/Aug12_23-18-08_xc-pc/1660317497.0435746/events.out.tfevents.1660317497.xc-pc.5945.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a42064b948ecac127412e1565f245cb9e8fe604fe70313f938b8ef3435f1a10b
3
+ size 5493
runs/Aug12_23-18-08_xc-pc/events.out.tfevents.1660317497.xc-pc.5945.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4cc7a30d070944ed85e197ea6a2c15bdca20c8d908fd57fab57e41daef2455dc
3
+ size 4136
runs/Aug12_23-27-59_xc-pc/1660318093.3960562/events.out.tfevents.1660318093.xc-pc.7733.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:beb6271f94b1a6809094caa0b3c256c34d332762eab88ba9b9095a4db1df1e8f
3
+ size 5493
runs/Aug12_23-27-59_xc-pc/events.out.tfevents.1660318093.xc-pc.7733.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7f31db778ea5ddf3a9beb3177f88cdba69ddf2f29178a1cb77a95c0b5d65c9f
3
+ size 4136
runs/Aug12_23-31-36_xc-pc/1660318305.8926778/events.out.tfevents.1660318305.xc-pc.8088.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:23ff1fb4e83424729a68dee7cc8ed954c73991b76cbc07e694676f4476a08655
3
+ size 5493
runs/Aug12_23-31-36_xc-pc/events.out.tfevents.1660318305.xc-pc.8088.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b7639585e88192f7d1711ee6da17a82a3daf34bd814f32a38e8513d7c747f43
3
+ size 4136
runs/Aug13_20-24-47_xc-pc/1660393500.318533/events.out.tfevents.1660393500.xc-pc.5307.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c1ee71ad3a5dfa4c6485e0734de07f8a7623f9057729180fcf8e14d3a978ebb5
3
+ size 5493
runs/Aug13_20-24-47_xc-pc/events.out.tfevents.1660393500.xc-pc.5307.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a06ae56a3945b5dc970ee9d69de505a93f452f841da7f0d21aa8d9231dc1310f
3
+ size 4309
runs/Aug13_20-28-02_xc-pc/1660393691.901428/events.out.tfevents.1660393691.xc-pc.5969.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:49dade378229807fb615b61b6561282aa85b22734c2dd175f8a05826b0c46b79
3
+ size 5493
runs/Aug13_20-28-02_xc-pc/events.out.tfevents.1660393691.xc-pc.5969.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57ca56a5c54a74fe545d13daf656192ca14c4ba427d6f21d7dd7ee6cea2305e9
3
+ size 4309
runs/Aug13_20-29-08_xc-pc/1660393758.4316206/events.out.tfevents.1660393758.xc-pc.6149.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:055bbe49148dda7e4e2b386bcc17748fc3daa4f05662e6753fc9bbd174285533
3
+ size 5493
runs/Aug13_20-29-08_xc-pc/events.out.tfevents.1660393758.xc-pc.6149.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e5a0138774e76231fb8a6c1a69bf351a3a9f5429b675a2767f5f070d684164a
3
+ size 10405
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b5f1ba3889cb14dc7295f793efeda412a98a1d498027e2fdb75b0d346326429
3
+ size 3375