k4black commited on
Commit
e551a45
1 Parent(s): e058cfe

Training in progress, step 100

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "albert-base-v2",
3
+ "architectures": [
4
+ "AlbertForSequenceClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0,
7
+ "bos_token_id": 2,
8
+ "classifier_dropout_prob": 0.1,
9
+ "down_scale_factor": 1,
10
+ "embedding_size": 128,
11
+ "eos_token_id": 3,
12
+ "gap_size": 0,
13
+ "hidden_act": "gelu_new",
14
+ "hidden_dropout_prob": 0,
15
+ "hidden_size": 768,
16
+ "id2label": {
17
+ "0": "1.1 threats of harm",
18
+ "1": "1.2 incitement and encouragement of harm",
19
+ "2": "2.1 descriptive attacks",
20
+ "3": "2.2 aggressive and emotive attacks",
21
+ "4": "2.3 dehumanising attacks & overt sexual objectification",
22
+ "5": "3.1 casual use of gendered slurs, profanities, and insults",
23
+ "6": "3.2 immutable gender differences and gender stereotypes",
24
+ "7": "3.3 backhanded gendered compliments",
25
+ "8": "3.4 condescending explanations or unwelcome advice",
26
+ "9": "4.1 supporting mistreatment of individual women",
27
+ "10": "4.2 supporting systemic discrimination against women as a group"
28
+ },
29
+ "initializer_range": 0.02,
30
+ "inner_group_num": 1,
31
+ "intermediate_size": 3072,
32
+ "label2id": {
33
+ "1.1 threats of harm": 0,
34
+ "1.2 incitement and encouragement of harm": 1,
35
+ "2.1 descriptive attacks": 2,
36
+ "2.2 aggressive and emotive attacks": 3,
37
+ "2.3 dehumanising attacks & overt sexual objectification": 4,
38
+ "3.1 casual use of gendered slurs, profanities, and insults": 5,
39
+ "3.2 immutable gender differences and gender stereotypes": 6,
40
+ "3.3 backhanded gendered compliments": 7,
41
+ "3.4 condescending explanations or unwelcome advice": 8,
42
+ "4.1 supporting mistreatment of individual women": 9,
43
+ "4.2 supporting systemic discrimination against women as a group": 10
44
+ },
45
+ "layer_norm_eps": 1e-12,
46
+ "max_position_embeddings": 512,
47
+ "model_type": "albert",
48
+ "net_structure_type": 0,
49
+ "num_attention_heads": 12,
50
+ "num_hidden_groups": 1,
51
+ "num_hidden_layers": 12,
52
+ "num_memory_blocks": 0,
53
+ "pad_token_id": 0,
54
+ "position_embedding_type": "absolute",
55
+ "problem_type": "single_label_classification",
56
+ "torch_dtype": "float32",
57
+ "transformers_version": "4.24.0",
58
+ "type_vocab_size": 2,
59
+ "vocab_size": 30000
60
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:390c83870b32fd3d7bee042248e74c3ca179074d909b5fbac2d7e55cbfcb8ebd
3
+ size 46781073
special_tokens_map.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "[CLS]",
3
+ "cls_token": "[CLS]",
4
+ "eos_token": "[SEP]",
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": "[SEP]",
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,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "[CLS]",
3
+ "cls_token": "[CLS]",
4
+ "do_lower_case": true,
5
+ "eos_token": "[SEP]",
6
+ "keep_accents": false,
7
+ "mask_token": {
8
+ "__type": "AddedToken",
9
+ "content": "[MASK]",
10
+ "lstrip": true,
11
+ "normalized": false,
12
+ "rstrip": false,
13
+ "single_word": false
14
+ },
15
+ "model_max_length": 512,
16
+ "name_or_path": "albert-base-v2",
17
+ "pad_token": "<pad>",
18
+ "remove_space": true,
19
+ "sep_token": "[SEP]",
20
+ "special_tokens_map_file": null,
21
+ "tokenizer_class": "AlbertTokenizer",
22
+ "unk_token": "<unk>"
23
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b0ce20f558980251a8d7474d28d2aafb02eb69c5fba49cc9fd39a97b9d0f892
3
+ size 3567