RonTuretzky commited on
Commit
f207746
·
1 Parent(s): 5bc9052

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert-base-uncased",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForSequenceClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
11
+ "id2label": {
12
+ "0": "Libertarian Left",
13
+ "1": "Libertarian Right",
14
+ "2": "Authoritarian Left",
15
+ "3": "Authoritarian Right",
16
+ "4": "Centrist",
17
+ "5": "Authoritarian Center",
18
+ "6": "Left",
19
+ "7": "Right",
20
+ "8": "Libertarian Center"
21
+ },
22
+ "initializer_range": 0.02,
23
+ "label2id": {
24
+ "Authoritarian Center": 5,
25
+ "Authoritarian Left": 2,
26
+ "Authoritarian Right": 3,
27
+ "Centrist": 4,
28
+ "Left": 6,
29
+ "Libertarian Center": 8,
30
+ "Libertarian Left": 0,
31
+ "Libertarian Right": 1,
32
+ "Right": 7
33
+ },
34
+ "max_position_embeddings": 512,
35
+ "model_type": "distilbert",
36
+ "n_heads": 12,
37
+ "n_layers": 6,
38
+ "pad_token_id": 0,
39
+ "problem_type": "single_label_classification",
40
+ "qa_dropout": 0.1,
41
+ "seq_classif_dropout": 0.2,
42
+ "sinusoidal_pos_embds": false,
43
+ "tie_weights_": true,
44
+ "torch_dtype": "float32",
45
+ "transformers_version": "4.30.2",
46
+ "vocab_size": 30522
47
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4e99ba9c02449a1d6261a207136f2bd8086fa87c3778512db0ff36ce46be73d
3
+ size 267877037
runs/Jul08_16-35-25_DESKTOP-V3AJAMN/events.out.tfevents.1688823331.DESKTOP-V3AJAMN.17132.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cbba9bba4a8788d1fc2ed6884febf36e3a4c35d2d06a71b38fce33646aef8baa
3
+ size 4838
runs/Jul08_16-38-27_DESKTOP-V3AJAMN/events.out.tfevents.1688823514.DESKTOP-V3AJAMN.18248.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0eeb9e63d80211fafefa47747c18feaa4f2034dd1a04e19532d4c9f437cbd012
3
+ size 5608
runs/Jul08_16-41-59_DESKTOP-V3AJAMN/events.out.tfevents.1688823723.DESKTOP-V3AJAMN.9000.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:364aaea6960dfe3f0833b008f91bbb3c240b7292480999307a3538e5a328d44d
3
+ size 4530
runs/Jul08_16-43-13_DESKTOP-V3AJAMN/events.out.tfevents.1688823796.DESKTOP-V3AJAMN.22964.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:102c5dc3439af2b095fe70d970582ac8fcc176e0c82e5fa25a7c80b274607849
3
+ size 21470
runs/Jul08_17-20-39_DESKTOP-V3AJAMN/events.out.tfevents.1688826043.DESKTOP-V3AJAMN.25028.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9f1475359e9ede62b018631e6a592e9c6e138f3de5986067f237b0390ef9a18
3
+ size 4376
runs/Jul08_17-27-47_DESKTOP-V3AJAMN/events.out.tfevents.1688826470.DESKTOP-V3AJAMN.19512.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a688b741b27b50f4e63e307c4650e2faf059dd588a7202f0b5eb01c82c6c611d
3
+ size 295082
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "clean_up_tokenization_spaces": true,
3
+ "cls_token": "[CLS]",
4
+ "do_lower_case": true,
5
+ "mask_token": "[MASK]",
6
+ "model_max_length": 512,
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "strip_accents": null,
10
+ "tokenize_chinese_chars": true,
11
+ "tokenizer_class": "DistilBertTokenizer",
12
+ "unk_token": "[UNK]"
13
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1934c3d97b58085796d57d3e8f6a945566435108802886479bcdc960e1618aa
3
+ size 3899
vocab.txt ADDED
The diff for this file is too large to render. See raw diff