blueBat commited on
Commit
77e973a
·
1 Parent(s): 02e733c

Training in progress, epoch 0

Browse files
Files changed (23) hide show
  1. .gitignore +1 -0
  2. config.json +58 -0
  3. preprocessor_config.json +23 -0
  4. pytorch_model.bin +3 -0
  5. runs/Dec23_23-44-13_c43eaef47c02/1671839151.472898/events.out.tfevents.1671839151.c43eaef47c02.3340.1 +3 -0
  6. runs/Dec23_23-44-13_c43eaef47c02/events.out.tfevents.1671839151.c43eaef47c02.3340.0 +3 -0
  7. runs/Dec23_23-48-53_c43eaef47c02/1671839348.7445147/events.out.tfevents.1671839348.c43eaef47c02.3340.3 +3 -0
  8. runs/Dec23_23-48-53_c43eaef47c02/1671839382.4432986/events.out.tfevents.1671839382.c43eaef47c02.3340.4 +3 -0
  9. runs/Dec23_23-48-53_c43eaef47c02/events.out.tfevents.1671839348.c43eaef47c02.3340.2 +3 -0
  10. runs/Dec23_23-50-42_c43eaef47c02/1671839445.6336389/events.out.tfevents.1671839445.c43eaef47c02.3340.6 +3 -0
  11. runs/Dec23_23-50-42_c43eaef47c02/events.out.tfevents.1671839445.c43eaef47c02.3340.5 +3 -0
  12. runs/Dec23_23-56-22_c43eaef47c02/1671839785.9221046/events.out.tfevents.1671839785.c43eaef47c02.3340.8 +3 -0
  13. runs/Dec23_23-56-22_c43eaef47c02/events.out.tfevents.1671839785.c43eaef47c02.3340.7 +3 -0
  14. runs/Dec23_23-56-49_c43eaef47c02/1671839812.9832487/events.out.tfevents.1671839812.c43eaef47c02.3340.10 +3 -0
  15. runs/Dec23_23-56-49_c43eaef47c02/events.out.tfevents.1671839812.c43eaef47c02.3340.9 +3 -0
  16. runs/Dec23_23-57-24_c43eaef47c02/1671839847.45737/events.out.tfevents.1671839847.c43eaef47c02.3340.12 +3 -0
  17. runs/Dec23_23-57-24_c43eaef47c02/1671840003.8146088/events.out.tfevents.1671840003.c43eaef47c02.3340.13 +3 -0
  18. runs/Dec23_23-57-24_c43eaef47c02/events.out.tfevents.1671839847.c43eaef47c02.3340.11 +3 -0
  19. runs/Dec24_00-01-02_c43eaef47c02/1671840065.8754802/events.out.tfevents.1671840065.c43eaef47c02.3340.15 +3 -0
  20. runs/Dec24_00-01-02_c43eaef47c02/events.out.tfevents.1671840065.c43eaef47c02.3340.14 +3 -0
  21. runs/Dec24_00-35-27_c43eaef47c02/1671842132.4137511/events.out.tfevents.1671842132.c43eaef47c02.3340.17 +3 -0
  22. runs/Dec24_00-35-27_c43eaef47c02/events.out.tfevents.1671842132.c43eaef47c02.3340.16 +3 -0
  23. training_args.bin +3 -0
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "angry",
21
+ "1": "disgust",
22
+ "2": "fear",
23
+ "3": "happy",
24
+ "4": "neutral",
25
+ "5": "sad",
26
+ "6": "surprise"
27
+ },
28
+ "image_size": 224,
29
+ "initializer_range": 0.02,
30
+ "label2id": {
31
+ "angry": 0,
32
+ "disgust": 1,
33
+ "fear": 2,
34
+ "happy": 3,
35
+ "neutral": 4,
36
+ "sad": 5,
37
+ "surprise": 6
38
+ },
39
+ "layer_norm_eps": 1e-05,
40
+ "mlp_ratio": 4.0,
41
+ "model_type": "swin",
42
+ "num_channels": 3,
43
+ "num_heads": [
44
+ 3,
45
+ 6,
46
+ 12,
47
+ 24
48
+ ],
49
+ "num_layers": 4,
50
+ "patch_size": 4,
51
+ "path_norm": true,
52
+ "problem_type": "single_label_classification",
53
+ "qkv_bias": true,
54
+ "torch_dtype": "float32",
55
+ "transformers_version": "4.25.1",
56
+ "use_absolute_embeddings": false,
57
+ "window_size": 7
58
+ }
preprocessor_config.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_normalize": true,
3
+ "do_rescale": true,
4
+ "do_resize": true,
5
+ "feature_extractor_type": "ViTFeatureExtractor",
6
+ "image_mean": [
7
+ 0.485,
8
+ 0.456,
9
+ 0.406
10
+ ],
11
+ "image_processor_type": "ViTImageProcessor",
12
+ "image_std": [
13
+ 0.229,
14
+ 0.224,
15
+ 0.225
16
+ ],
17
+ "resample": 3,
18
+ "rescale_factor": 0.00392156862745098,
19
+ "size": {
20
+ "height": 224,
21
+ "width": 224
22
+ }
23
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b67de8a4e43f8a70b953457f18a84d002783abab4dbf35a4f46b68bc50f6d37
3
+ size 110406961
runs/Dec23_23-44-13_c43eaef47c02/1671839151.472898/events.out.tfevents.1671839151.c43eaef47c02.3340.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:09f1f265f3a13f647c443c529bfdffaebe27000a5a830f0fad97b80df0502ff6
3
+ size 5597
runs/Dec23_23-44-13_c43eaef47c02/events.out.tfevents.1671839151.c43eaef47c02.3340.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9219b5c84154fc7963034fe76be29a6d7b65520bc681cdb423e802abbf06211c
3
+ size 4201
runs/Dec23_23-48-53_c43eaef47c02/1671839348.7445147/events.out.tfevents.1671839348.c43eaef47c02.3340.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:083f8a6d4c729d1f2024853a8a15eabab10bb3ed8270844ff8ceb13be273a677
3
+ size 5597
runs/Dec23_23-48-53_c43eaef47c02/1671839382.4432986/events.out.tfevents.1671839382.c43eaef47c02.3340.4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f08083bc27d6489d5ff897e8e15182f35929e42a9ff0dbb9219e889c20993706
3
+ size 5597
runs/Dec23_23-48-53_c43eaef47c02/events.out.tfevents.1671839348.c43eaef47c02.3340.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bdfb1961bf23ff073e32c4a031c652152bef72a0fba5f97013a4e68414eb0b69
3
+ size 8362
runs/Dec23_23-50-42_c43eaef47c02/1671839445.6336389/events.out.tfevents.1671839445.c43eaef47c02.3340.6 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:10466e4163cf458b1e0b55662e9c31de37d51003ab607cc36b6d29e1f858277a
3
+ size 5597
runs/Dec23_23-50-42_c43eaef47c02/events.out.tfevents.1671839445.c43eaef47c02.3340.5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:600bc7a2d66195a6d7cb614df9844e8c965cd32b3efb389de178619e4ae87e38
3
+ size 4201
runs/Dec23_23-56-22_c43eaef47c02/1671839785.9221046/events.out.tfevents.1671839785.c43eaef47c02.3340.8 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41529997b32ea39cd45d95b13bee68b73aecdb975e199d501a7b00e00816ea2b
3
+ size 5597
runs/Dec23_23-56-22_c43eaef47c02/events.out.tfevents.1671839785.c43eaef47c02.3340.7 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c0859fe3c5c1a8444ff250a7c1ea13a7db6146fdcfd9ac45d447321717f0a01b
3
+ size 4201
runs/Dec23_23-56-49_c43eaef47c02/1671839812.9832487/events.out.tfevents.1671839812.c43eaef47c02.3340.10 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9229d3ca499cda861a2f618b2dcf29fb0286b18c0c02c508015a80a9e6959a7
3
+ size 5597
runs/Dec23_23-56-49_c43eaef47c02/events.out.tfevents.1671839812.c43eaef47c02.3340.9 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb995235e9de347e225b00c1b7e1bb7d27fbdc25bbf1b937ebed0290a9101846
3
+ size 4201
runs/Dec23_23-57-24_c43eaef47c02/1671839847.45737/events.out.tfevents.1671839847.c43eaef47c02.3340.12 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:423e84e4fc224e40a375d5f0309a48975bc3fc17b2f6bd633dc5be7049133bff
3
+ size 5597
runs/Dec23_23-57-24_c43eaef47c02/1671840003.8146088/events.out.tfevents.1671840003.c43eaef47c02.3340.13 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0dc210e2a11b273424a414769a5005ddb3f9d6b6281e4527dc3a2dffaa708971
3
+ size 5597
runs/Dec23_23-57-24_c43eaef47c02/events.out.tfevents.1671839847.c43eaef47c02.3340.11 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29f71fc5812f48ed431f65d4d7c68aea4fc9ed3a6a71abc269668fa27cb64c32
3
+ size 8362
runs/Dec24_00-01-02_c43eaef47c02/1671840065.8754802/events.out.tfevents.1671840065.c43eaef47c02.3340.15 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc77cff764e6c571ba095ce346a0f71d39dffa863fd87e429ad4a5147b5be403
3
+ size 5597
runs/Dec24_00-01-02_c43eaef47c02/events.out.tfevents.1671840065.c43eaef47c02.3340.14 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1566d02b6e574f022233c188ca66ab3fd1da98ac7a79a868dc573e7b88944c3c
3
+ size 4509
runs/Dec24_00-35-27_c43eaef47c02/1671842132.4137511/events.out.tfevents.1671842132.c43eaef47c02.3340.17 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea20c22a85ea0ba92927a003f2fad5626eae2680a86ca48744205f2a05213651
3
+ size 5597
runs/Dec24_00-35-27_c43eaef47c02/events.out.tfevents.1671842132.c43eaef47c02.3340.16 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:93ef5f6b99bf8eeb622f3090e639d70e63486cee3f6d0194b563c5023719380a
3
+ size 4826
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:195808392ae9b7619739b08a8e81aab87a60dcbd3769920aec3fa5bbc78266e9
3
+ size 3451