akdeniz27 commited on
Commit
25066be
1 Parent(s): ab020e9

Initial version

Browse files
added_tokens.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"[MASK]": 250101}
config.json ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "microsoft/mdeberta-v3-base",
3
+ "architectures": [
4
+ "DebertaV2ForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "hidden_act": "gelu",
8
+ "hidden_dropout_prob": 0.1,
9
+ "hidden_size": 768,
10
+ "id2label": {
11
+ "0": "O",
12
+ "1": "B-ORG",
13
+ "2": "I-ORG",
14
+ "3": "B-LOC",
15
+ "4": "I-LOC",
16
+ "5": "B-PER",
17
+ "6": "I-PER"
18
+ },
19
+ "initializer_range": 0.02,
20
+ "intermediate_size": 3072,
21
+ "label2id": {
22
+ "B-LOC": 3,
23
+ "B-ORG": 1,
24
+ "B-PER": 5,
25
+ "I-LOC": 4,
26
+ "I-ORG": 2,
27
+ "I-PER": 6,
28
+ "O": 0
29
+ },
30
+ "layer_norm_eps": 1e-07,
31
+ "max_position_embeddings": 512,
32
+ "max_relative_positions": -1,
33
+ "model_type": "deberta-v2",
34
+ "norm_rel_ebd": "layer_norm",
35
+ "num_attention_heads": 12,
36
+ "num_hidden_layers": 12,
37
+ "pad_token_id": 0,
38
+ "pooler_dropout": 0,
39
+ "pooler_hidden_act": "gelu",
40
+ "pooler_hidden_size": 768,
41
+ "pos_att_type": [
42
+ "p2c",
43
+ "c2p"
44
+ ],
45
+ "position_biased_input": false,
46
+ "position_buckets": 256,
47
+ "relative_attention": true,
48
+ "share_att_key": true,
49
+ "torch_dtype": "float32",
50
+ "transformers_version": "4.12.5",
51
+ "type_vocab_size": 0,
52
+ "vocab_size": 251000
53
+ }
parameter.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"dataset": "/content/drive/My Drive/Token_classification_for_Turkish_NER/TurkNER_with_mDeBERTa/", "transformers_model": "microsoft/mdeberta-v3-base", "random_seed": 1234, "lr": 2e-05, "total_step": 5512, "warmup_step": 100, "weight_decay": 0.01, "batch_size": 8, "max_seq_length": 512, "fp16": false, "max_grad_norm": 1.0, "lower_case": false}
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2efa727f93fb7fe04ed2a1bc2fb50d59f1045075457e6a0caf0b9cae50895375
3
+ size 1112982831
special_tokens_map.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"bos_token": "[CLS]", "eos_token": "[SEP]", "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
spm.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13c8d666d62a7bc4ac8f040aab68e942c861f93303156cc28f5c7e885d86d6e3
3
+ size 4305025
tokenizer_config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"do_lower_case": false, "bos_token": "[CLS]", "eos_token": "[SEP]", "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "split_by_punct": false, "sp_model_kwargs": {}, "vocab_type": "spm", "special_tokens_map_file": null, "tokenizer_file": null, "name_or_path": "microsoft/mdeberta-v3-base", "tokenizer_class": "DebertaV2Tokenizer"}