RonTuretzky commited on
Commit
793525f
·
1 Parent(s): d51226b

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "deepmind/language-perceiver",
3
+ "architectures": [
4
+ "PerceiverForSequenceClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "audio_samples_per_frame": 1920,
8
+ "cross_attention_shape_for_attention": "kv",
9
+ "cross_attention_widening_factor": 1,
10
+ "d_latents": 1280,
11
+ "d_model": 768,
12
+ "hidden_act": "gelu",
13
+ "id2label": {
14
+ "0": "Libertarian Left",
15
+ "1": "Libertarian Right",
16
+ "2": "Authoritarian Left",
17
+ "3": "Authoritarian Right",
18
+ "4": "Centrist",
19
+ "5": "Authoritarian Center",
20
+ "6": "Left",
21
+ "7": "Right",
22
+ "8": "Libertarian Center"
23
+ },
24
+ "image_size": 56,
25
+ "initializer_range": 0.02,
26
+ "label2id": {
27
+ "Authoritarian Center": 5,
28
+ "Authoritarian Left": 2,
29
+ "Authoritarian Right": 3,
30
+ "Centrist": 4,
31
+ "Left": 6,
32
+ "Libertarian Center": 8,
33
+ "Libertarian Left": 0,
34
+ "Libertarian Right": 1,
35
+ "Right": 7
36
+ },
37
+ "layer_norm_eps": 1e-12,
38
+ "max_position_embeddings": 2048,
39
+ "model_type": "perceiver",
40
+ "num_blocks": 1,
41
+ "num_cross_attention_heads": 8,
42
+ "num_frames": 16,
43
+ "num_latents": 256,
44
+ "num_self_attends_per_block": 26,
45
+ "num_self_attention_heads": 8,
46
+ "output_shape": [
47
+ 1,
48
+ 16,
49
+ 224,
50
+ 224
51
+ ],
52
+ "problem_type": "single_label_classification",
53
+ "qk_channels": 256,
54
+ "samples_per_patch": 16,
55
+ "self_attention_widening_factor": 1,
56
+ "torch_dtype": "float32",
57
+ "train_size": [
58
+ 368,
59
+ 496
60
+ ],
61
+ "transformers_version": "4.30.2",
62
+ "use_query_residual": true,
63
+ "v_channels": 1280,
64
+ "vocab_size": 262
65
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebd26c15767be7ded17f0e42bd6812d11cd01959c2bc0e7e7bf1aecd58dcecea
3
+ size 824592309
runs/Jul09_20-05-44_LAPTOP-U920RCVQ/events.out.tfevents.1688922355.LAPTOP-U920RCVQ.15288.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17706802726dc0156042f7d54f7904b874c878c3aea6da623f255a13a30e05cc
3
+ size 4820
runs/Jul09_20-07-30_LAPTOP-U920RCVQ/events.out.tfevents.1688922454.LAPTOP-U920RCVQ.20724.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a18e9825a171dfb87fd079f1d706282cc69bd34f6a1b0364f2053306df2174e4
3
+ size 6967203
special_tokens_map.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "[BOS]",
4
+ "lstrip": false,
5
+ "normalized": true,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "cls_token": {
10
+ "content": "[CLS]",
11
+ "lstrip": false,
12
+ "normalized": true,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "eos_token": {
17
+ "content": "[EOS]",
18
+ "lstrip": false,
19
+ "normalized": true,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "mask_token": {
24
+ "content": "[MASK]",
25
+ "lstrip": false,
26
+ "normalized": true,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ },
30
+ "pad_token": {
31
+ "content": "[PAD]",
32
+ "lstrip": false,
33
+ "normalized": true,
34
+ "rstrip": false,
35
+ "single_word": false
36
+ },
37
+ "sep_token": {
38
+ "content": "[SEP]",
39
+ "lstrip": false,
40
+ "normalized": true,
41
+ "rstrip": false,
42
+ "single_word": false
43
+ }
44
+ }
tokenizer_config.json ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "__type": "AddedToken",
4
+ "content": "[BOS]",
5
+ "lstrip": false,
6
+ "normalized": true,
7
+ "rstrip": false,
8
+ "single_word": false
9
+ },
10
+ "clean_up_tokenization_spaces": true,
11
+ "cls_token": {
12
+ "__type": "AddedToken",
13
+ "content": "[CLS]",
14
+ "lstrip": false,
15
+ "normalized": true,
16
+ "rstrip": false,
17
+ "single_word": false
18
+ },
19
+ "eos_token": {
20
+ "__type": "AddedToken",
21
+ "content": "[EOS]",
22
+ "lstrip": false,
23
+ "normalized": true,
24
+ "rstrip": false,
25
+ "single_word": false
26
+ },
27
+ "mask_token": {
28
+ "__type": "AddedToken",
29
+ "content": "[MASK]",
30
+ "lstrip": false,
31
+ "normalized": true,
32
+ "rstrip": false,
33
+ "single_word": false
34
+ },
35
+ "model_max_length": 2048,
36
+ "pad_token": {
37
+ "__type": "AddedToken",
38
+ "content": "[PAD]",
39
+ "lstrip": false,
40
+ "normalized": true,
41
+ "rstrip": false,
42
+ "single_word": false
43
+ },
44
+ "sep_token": {
45
+ "__type": "AddedToken",
46
+ "content": "[SEP]",
47
+ "lstrip": false,
48
+ "normalized": true,
49
+ "rstrip": false,
50
+ "single_word": false
51
+ },
52
+ "tokenizer_class": "PerceiverTokenizer"
53
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ed66cd16a50ef5da49675f0b958ae57c269d5e57cd1d0bc4e846b42d68fb5d3
3
+ size 3899