Celal11 commited on
Commit
7895e15
1 Parent(s): 7af9a44

Training in progress, epoch 0

Browse files
Files changed (19) hide show
  1. .gitignore +1 -0
  2. config.json +66 -0
  3. preprocessor_config.json +20 -0
  4. pytorch_model.bin +3 -0
  5. runs/Jan27_00-13-19_32be2a6fe6ee/1674778426.335027/events.out.tfevents.1674778426.32be2a6fe6ee.23.1 +3 -0
  6. runs/Jan27_00-13-19_32be2a6fe6ee/events.out.tfevents.1674778426.32be2a6fe6ee.23.0 +3 -0
  7. runs/Jan27_00-17-16_32be2a6fe6ee/1674778676.0760958/events.out.tfevents.1674778676.32be2a6fe6ee.23.3 +3 -0
  8. runs/Jan27_00-17-16_32be2a6fe6ee/events.out.tfevents.1674778676.32be2a6fe6ee.23.2 +3 -0
  9. runs/Jan27_00-19-45_32be2a6fe6ee/1674778802.8643246/events.out.tfevents.1674778802.32be2a6fe6ee.23.5 +3 -0
  10. runs/Jan27_00-19-45_32be2a6fe6ee/events.out.tfevents.1674778802.32be2a6fe6ee.23.4 +3 -0
  11. runs/Jan27_00-21-24_32be2a6fe6ee/1674778918.8831084/events.out.tfevents.1674778918.32be2a6fe6ee.23.7 +3 -0
  12. runs/Jan27_00-21-24_32be2a6fe6ee/events.out.tfevents.1674778918.32be2a6fe6ee.23.6 +3 -0
  13. runs/Jan27_00-23-04_32be2a6fe6ee/1674779008.1451159/events.out.tfevents.1674779008.32be2a6fe6ee.23.9 +3 -0
  14. runs/Jan27_00-23-04_32be2a6fe6ee/events.out.tfevents.1674779008.32be2a6fe6ee.23.8 +3 -0
  15. runs/Jan27_00-26-00_32be2a6fe6ee/1674779176.2396598/events.out.tfevents.1674779176.32be2a6fe6ee.23.11 +3 -0
  16. runs/Jan27_00-26-00_32be2a6fe6ee/events.out.tfevents.1674779176.32be2a6fe6ee.23.10 +3 -0
  17. runs/Jan27_00-28-54_32be2a6fe6ee/1674779351.439983/events.out.tfevents.1674779351.32be2a6fe6ee.23.13 +3 -0
  18. runs/Jan27_00-28-54_32be2a6fe6ee/events.out.tfevents.1674779351.32be2a6fe6ee.23.12 +3 -0
  19. training_args.bin +3 -0
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "microsoft/beit-base-patch16-224-pt22k-ft22k",
3
+ "architectures": [
4
+ "BeitForImageClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.0,
7
+ "auxiliary_channels": 256,
8
+ "auxiliary_concat_input": false,
9
+ "auxiliary_loss_weight": 0.4,
10
+ "auxiliary_num_convs": 1,
11
+ "drop_path_rate": 0.1,
12
+ "hidden_act": "gelu",
13
+ "hidden_dropout_prob": 0.0,
14
+ "hidden_size": 768,
15
+ "id2label": {
16
+ "0": "angry",
17
+ "1": "disgust",
18
+ "2": "fear",
19
+ "3": "happy",
20
+ "4": "neutral",
21
+ "5": "sad",
22
+ "6": "surprise"
23
+ },
24
+ "image_size": 224,
25
+ "initializer_range": 0.02,
26
+ "intermediate_size": 3072,
27
+ "label2id": {
28
+ "angry": 0,
29
+ "disgust": 1,
30
+ "fear": 2,
31
+ "happy": 3,
32
+ "neutral": 4,
33
+ "sad": 5,
34
+ "surprise": 6
35
+ },
36
+ "layer_norm_eps": 1e-12,
37
+ "layer_scale_init_value": 0.1,
38
+ "model_type": "beit",
39
+ "num_attention_heads": 12,
40
+ "num_channels": 3,
41
+ "num_hidden_layers": 12,
42
+ "out_indices": [
43
+ 3,
44
+ 5,
45
+ 7,
46
+ 11
47
+ ],
48
+ "patch_size": 16,
49
+ "pool_scales": [
50
+ 1,
51
+ 2,
52
+ 3,
53
+ 6
54
+ ],
55
+ "problem_type": "single_label_classification",
56
+ "semantic_loss_ignore_index": 255,
57
+ "torch_dtype": "float32",
58
+ "transformers_version": "4.20.1",
59
+ "use_absolute_position_embeddings": false,
60
+ "use_auxiliary_head": true,
61
+ "use_mask_token": false,
62
+ "use_mean_pooling": true,
63
+ "use_relative_position_bias": true,
64
+ "use_shared_relative_position_bias": false,
65
+ "vocab_size": 8192
66
+ }
preprocessor_config.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": 224,
3
+ "do_center_crop": false,
4
+ "do_normalize": true,
5
+ "do_resize": true,
6
+ "feature_extractor_type": "BeitFeatureExtractor",
7
+ "image_mean": [
8
+ 0.5,
9
+ 0.5,
10
+ 0.5
11
+ ],
12
+ "image_std": [
13
+ 0.5,
14
+ 0.5,
15
+ 0.5
16
+ ],
17
+ "reduce_labels": false,
18
+ "resample": 2,
19
+ "size": 224
20
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab3bcaeef659e218ab30a87fa673e192eb0ca5b63c4bb5218d1258e7f0b1632b
3
+ size 346873835
runs/Jan27_00-13-19_32be2a6fe6ee/1674778426.335027/events.out.tfevents.1674778426.32be2a6fe6ee.23.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b0ee25dac5e51378a31531265e3156d0ed9a9e4b4128647bfe9f5e3c5452e0e
3
+ size 5456
runs/Jan27_00-13-19_32be2a6fe6ee/events.out.tfevents.1674778426.32be2a6fe6ee.23.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44b294b2de65444948f5987e9bc615bccc4419c21f54ac103fbb20ef75de5b48
3
+ size 4479
runs/Jan27_00-17-16_32be2a6fe6ee/1674778676.0760958/events.out.tfevents.1674778676.32be2a6fe6ee.23.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5a6eb6da638d287dddd0dacbb4245e3287bd21484dfb3f018cdf475a501e2e1
3
+ size 5456
runs/Jan27_00-17-16_32be2a6fe6ee/events.out.tfevents.1674778676.32be2a6fe6ee.23.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8dd93531c7451d3038df5ffd7e107af2d813e24471e345475b3a8e0631463595
3
+ size 4479
runs/Jan27_00-19-45_32be2a6fe6ee/1674778802.8643246/events.out.tfevents.1674778802.32be2a6fe6ee.23.5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb7a072124d745242d6cae4ebe419da5f2a9e005cfb0365872360b484c8955ca
3
+ size 5456
runs/Jan27_00-19-45_32be2a6fe6ee/events.out.tfevents.1674778802.32be2a6fe6ee.23.4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5a08206ddc83cb7c87dbc7f129d2d36472c432dbe8e90ed77aff8a6b18ea4bf
3
+ size 4479
runs/Jan27_00-21-24_32be2a6fe6ee/1674778918.8831084/events.out.tfevents.1674778918.32be2a6fe6ee.23.7 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11b3769a6962ef585fff4c3f6ec07f132ab2a23edf5a4a3ce7076bb03e763cce
3
+ size 5456
runs/Jan27_00-21-24_32be2a6fe6ee/events.out.tfevents.1674778918.32be2a6fe6ee.23.6 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df4bfd777b4c112d154fdd2c2713031070443ae6e92c2884cd39f06579243294
3
+ size 4479
runs/Jan27_00-23-04_32be2a6fe6ee/1674779008.1451159/events.out.tfevents.1674779008.32be2a6fe6ee.23.9 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc4374dbfed20694544f8ca30348ecef69a350feb29f3a3e436832413cdbf1c1
3
+ size 5456
runs/Jan27_00-23-04_32be2a6fe6ee/events.out.tfevents.1674779008.32be2a6fe6ee.23.8 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38d34949138bc0387596c58243f105089ac7b7e7dc97d96df210b6931d6875e8
3
+ size 4479
runs/Jan27_00-26-00_32be2a6fe6ee/1674779176.2396598/events.out.tfevents.1674779176.32be2a6fe6ee.23.11 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c429ad23bb6b138794aac961a7b3cee098b59ffcfec27bc9258daaa6f06a31ff
3
+ size 5456
runs/Jan27_00-26-00_32be2a6fe6ee/events.out.tfevents.1674779176.32be2a6fe6ee.23.10 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22a305a5ed4cd91a02474806e40eb3eeed7f60075755a958d7f748304f789615
3
+ size 4479
runs/Jan27_00-28-54_32be2a6fe6ee/1674779351.439983/events.out.tfevents.1674779351.32be2a6fe6ee.23.13 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5338e2c135efa5034e99811ec784739f9fe320c6d48fa3a312c80e11fae07ff
3
+ size 5456
runs/Jan27_00-28-54_32be2a6fe6ee/events.out.tfevents.1674779351.32be2a6fe6ee.23.12 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4ee7d92e1b39c491456ef6bd5e984a28c9b0665b61c796506b86a12a4bf68be
3
+ size 8220
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3068a8128619a3fa781cf9e05b45ff46210d0c2252c213cc02afd56cdc0af468
3
+ size 3375