MM2157 commited on
Commit
1413a7f
1 Parent(s): 8ac93ca

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "roberta-base",
3
+ "architectures": [
4
+ "RobertaForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "bos_token_id": 0,
8
+ "classifier_dropout": null,
9
+ "eos_token_id": 2,
10
+ "hidden_act": "gelu",
11
+ "hidden_dropout_prob": 0.1,
12
+ "hidden_size": 768,
13
+ "id2label": {
14
+ "0": "0",
15
+ "1": "loaded_language",
16
+ "10": "whataboutism,straw_men,red_herring",
17
+ "11": "thought_terminating_cliches",
18
+ "12": "causal_oversimplification",
19
+ "13": "bandwagon,reductio_ad_hitlerum",
20
+ "14": "slogans",
21
+ "2": "appeal_to_authority",
22
+ "3": "name_calling,labeling",
23
+ "4": "doubt",
24
+ "5": "flag_waving",
25
+ "6": "repetition",
26
+ "7": "black_and_white_fallacy",
27
+ "8": "exaggeration,minimisation",
28
+ "9": "appeal_to_fear_prejudice"
29
+ },
30
+ "initializer_range": 0.02,
31
+ "intermediate_size": 3072,
32
+ "label2id": {
33
+ "0": "0",
34
+ "appeal_to_authority": "2",
35
+ "appeal_to_fear_prejudice": "9",
36
+ "bandwagon,reductio_ad_hitlerum": "13",
37
+ "black_and_white_fallacy": "7",
38
+ "causal_oversimplification": "12",
39
+ "doubt": "4",
40
+ "exaggeration,minimisation": "8",
41
+ "flag_waving": "5",
42
+ "loaded_language": "1",
43
+ "name_calling,labeling": "3",
44
+ "repetition": "6",
45
+ "slogans": "14",
46
+ "thought_terminating_cliches": "11",
47
+ "whataboutism,straw_men,red_herring": "10"
48
+ },
49
+ "layer_norm_eps": 1e-05,
50
+ "max_position_embeddings": 514,
51
+ "model_type": "roberta",
52
+ "num_attention_heads": 12,
53
+ "num_hidden_layers": 12,
54
+ "pad_token_id": 1,
55
+ "position_embedding_type": "absolute",
56
+ "torch_dtype": "float32",
57
+ "transformers_version": "4.30.2",
58
+ "type_vocab_size": 1,
59
+ "use_cache": true,
60
+ "vocab_size": 50265
61
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95aea783bf2a2e9892bfd263e6a32199ffbc2576c1810451fecbc14b1d800bb5
3
+ size 496334577
special_tokens_map.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<s>",
3
+ "cls_token": "<s>",
4
+ "eos_token": "</s>",
5
+ "mask_token": {
6
+ "content": "<mask>",
7
+ "lstrip": true,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false
11
+ },
12
+ "pad_token": "<pad>",
13
+ "sep_token": "</s>",
14
+ "unk_token": "<unk>"
15
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": true,
3
+ "bos_token": "<s>",
4
+ "clean_up_tokenization_spaces": true,
5
+ "cls_token": "<s>",
6
+ "eos_token": "</s>",
7
+ "errors": "replace",
8
+ "mask_token": "<mask>",
9
+ "model_max_length": 512,
10
+ "pad_token": "<pad>",
11
+ "sep_token": "</s>",
12
+ "tokenizer_class": "RobertaTokenizer",
13
+ "trim_offsets": true,
14
+ "unk_token": "<unk>"
15
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11095615a45e7277ef7d53b394a49f0357561ccaa336a917f6c5f788f1b1263a
3
+ size 3951
vocab.json ADDED
The diff for this file is too large to render. See raw diff