Emmytheo commited on
Commit
ed85ae2
·
verified ·
1 Parent(s): 34f87c1

Training in progress, epoch 1

Browse files
config.json CHANGED
@@ -1,12 +1,9 @@
1
  {
2
- "_name_or_path": "FacebookAI/roberta-base",
3
  "architectures": [
4
- "RobertaForSequenceClassification"
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,
@@ -28,17 +25,28 @@
28
  "threat": 3,
29
  "toxic": 0
30
  },
31
- "layer_norm_eps": 1e-05,
32
- "max_position_embeddings": 514,
33
- "model_type": "roberta",
 
 
34
  "num_attention_heads": 12,
35
  "num_hidden_layers": 12,
36
- "pad_token_id": 1,
37
- "position_embedding_type": "absolute",
 
 
 
 
 
 
 
 
38
  "problem_type": "multi_label_classification",
 
 
39
  "torch_dtype": "float32",
40
  "transformers_version": "4.40.1",
41
- "type_vocab_size": 1,
42
- "use_cache": true,
43
- "vocab_size": 50265
44
  }
 
1
  {
2
+ "_name_or_path": "microsoft/deberta-v3-base",
3
  "architectures": [
4
+ "DebertaV2ForSequenceClassification"
5
  ],
6
  "attention_probs_dropout_prob": 0.1,
 
 
 
7
  "hidden_act": "gelu",
8
  "hidden_dropout_prob": 0.1,
9
  "hidden_size": 768,
 
25
  "threat": 3,
26
  "toxic": 0
27
  },
28
+ "layer_norm_eps": 1e-07,
29
+ "max_position_embeddings": 512,
30
+ "max_relative_positions": -1,
31
+ "model_type": "deberta-v2",
32
+ "norm_rel_ebd": "layer_norm",
33
  "num_attention_heads": 12,
34
  "num_hidden_layers": 12,
35
+ "pad_token_id": 0,
36
+ "pooler_dropout": 0,
37
+ "pooler_hidden_act": "gelu",
38
+ "pooler_hidden_size": 768,
39
+ "pos_att_type": [
40
+ "p2c",
41
+ "c2p"
42
+ ],
43
+ "position_biased_input": false,
44
+ "position_buckets": 256,
45
  "problem_type": "multi_label_classification",
46
+ "relative_attention": true,
47
+ "share_att_key": true,
48
  "torch_dtype": "float32",
49
  "transformers_version": "4.40.1",
50
+ "type_vocab_size": 0,
51
+ "vocab_size": 128100
 
52
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b83e624377b2b51a700f4b8ef58a0204e91515b51fb2c01bc58e3ebc1bfbab50
3
- size 498625128
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:92b61021bbccee5c3f2be03208663c2ec879c709d9d885751d4f0a6a1f48a324
3
+ size 737731584
runs/May02_17-31-57_e0002e15259d/events.out.tfevents.1714671119.e0002e15259d.3238.0 CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b52799478be5c24ac9a9f89c584ca242a7005b899dad3fd4d6bee93392354873
3
- size 22836
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c99bf95a8ca913c01c8eb45d51cdd8e1191f4f2d7f54eea87e82daf31322cae
3
+ size 88
runs/May02_20-20-16_235cf74fc07d/events.out.tfevents.1714681218.235cf74fc07d.1158.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1b675ae2da98fe9e27443188c54803713581c4ccd4017b1ed994e474ab3007fb
3
+ size 13938
special_tokens_map.json CHANGED
@@ -1,15 +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
  }
 
1
  {
2
+ "bos_token": "[CLS]",
3
+ "cls_token": "[CLS]",
4
+ "eos_token": "[SEP]",
5
+ "mask_token": "[MASK]",
6
+ "pad_token": "[PAD]",
7
+ "sep_token": "[SEP]",
8
+ "unk_token": {
9
+ "content": "[UNK]",
10
+ "lstrip": false,
11
+ "normalized": true,
12
  "rstrip": false,
13
  "single_word": false
14
+ }
 
 
 
15
  }
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -1,57 +1,58 @@
1
  {
2
- "add_prefix_space": false,
3
  "added_tokens_decoder": {
4
  "0": {
5
- "content": "<s>",
6
  "lstrip": false,
7
- "normalized": true,
8
  "rstrip": false,
9
  "single_word": false,
10
  "special": true
11
  },
12
  "1": {
13
- "content": "<pad>",
14
  "lstrip": false,
15
- "normalized": true,
16
  "rstrip": false,
17
  "single_word": false,
18
  "special": true
19
  },
20
  "2": {
21
- "content": "</s>",
22
  "lstrip": false,
23
- "normalized": true,
24
  "rstrip": false,
25
  "single_word": false,
26
  "special": true
27
  },
28
  "3": {
29
- "content": "<unk>",
30
  "lstrip": false,
31
  "normalized": true,
32
  "rstrip": false,
33
  "single_word": false,
34
  "special": true
35
  },
36
- "50264": {
37
- "content": "<mask>",
38
- "lstrip": true,
39
  "normalized": false,
40
  "rstrip": false,
41
  "single_word": false,
42
  "special": true
43
  }
44
  },
45
- "bos_token": "<s>",
46
  "clean_up_tokenization_spaces": true,
47
- "cls_token": "<s>",
48
- "eos_token": "</s>",
49
- "errors": "replace",
50
- "mask_token": "<mask>",
51
- "model_max_length": 512,
52
- "pad_token": "<pad>",
53
- "sep_token": "</s>",
54
- "tokenizer_class": "RobertaTokenizer",
55
- "trim_offsets": true,
56
- "unk_token": "<unk>"
 
 
57
  }
 
1
  {
 
2
  "added_tokens_decoder": {
3
  "0": {
4
+ "content": "[PAD]",
5
  "lstrip": false,
6
+ "normalized": false,
7
  "rstrip": false,
8
  "single_word": false,
9
  "special": true
10
  },
11
  "1": {
12
+ "content": "[CLS]",
13
  "lstrip": false,
14
+ "normalized": false,
15
  "rstrip": false,
16
  "single_word": false,
17
  "special": true
18
  },
19
  "2": {
20
+ "content": "[SEP]",
21
  "lstrip": false,
22
+ "normalized": false,
23
  "rstrip": false,
24
  "single_word": false,
25
  "special": true
26
  },
27
  "3": {
28
+ "content": "[UNK]",
29
  "lstrip": false,
30
  "normalized": true,
31
  "rstrip": false,
32
  "single_word": false,
33
  "special": true
34
  },
35
+ "128000": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
  "normalized": false,
39
  "rstrip": false,
40
  "single_word": false,
41
  "special": true
42
  }
43
  },
44
+ "bos_token": "[CLS]",
45
  "clean_up_tokenization_spaces": true,
46
+ "cls_token": "[CLS]",
47
+ "do_lower_case": false,
48
+ "eos_token": "[SEP]",
49
+ "mask_token": "[MASK]",
50
+ "model_max_length": 1000000000000000019884624838656,
51
+ "pad_token": "[PAD]",
52
+ "sep_token": "[SEP]",
53
+ "sp_model_kwargs": {},
54
+ "split_by_punct": false,
55
+ "tokenizer_class": "DebertaV2Tokenizer",
56
+ "unk_token": "[UNK]",
57
+ "vocab_type": "spm"
58
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8c9e82c74df001c965fcfcd6750849ba77837447435c398d6fd4c8b770a9834e
3
  size 5048
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:58998da0dd5093aee2236385fce92d7b357944f2424d388c1d6682b141fe97ec
3
  size 5048