Kashif786 commited on
Commit
14f32bf
·
verified ·
1 Parent(s): 1b392f9

Validated Office Run: 80/20 Split, 50-token Chunking, AMP Enabled

Browse files
config.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation": "gelu",
3
+ "architectures": [
4
+ "DistilBertModel"
5
+ ],
6
+ "attention_dropout": 0.1,
7
+ "bos_token_id": null,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "dtype": "float32",
11
+ "eos_token_id": null,
12
+ "hidden_dim": 3072,
13
+ "initializer_range": 0.02,
14
+ "max_position_embeddings": 512,
15
+ "model_type": "distilbert",
16
+ "n_heads": 12,
17
+ "n_layers": 6,
18
+ "output_past": true,
19
+ "pad_token_id": 0,
20
+ "qa_dropout": 0.1,
21
+ "seq_classif_dropout": 0.2,
22
+ "sinusoidal_pos_embds": false,
23
+ "tie_weights_": true,
24
+ "tie_word_embeddings": true,
25
+ "transformers_version": "5.0.0",
26
+ "vocab_size": 119547
27
+ }
label_mapping.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"ner_l2i": {"B-ART": 0, "B-EVENT": 1, "B-FAC": 2, "B-GPE": 3, "B-LANGUAGE": 4, "B-LOC": 5, "B-NORP": 6, "B-ORG": 7, "B-OTHERS": 8, "B-PERSON": 9, "B-TITLE": 10, "I-ART": 11, "I-EVENT": 12, "I-FAC": 13, "I-GPE": 14, "I-LANGUAGE": 15, "I-LOC": 16, "I-NORP": 17, "I-ORG": 18, "I-OTHERS": 19, "I-PERSON": 20, "I-TITLE": 21, "O": 22}, "pos_l2i": {"ADJ": 0, "ADP": 1, "ADV": 2, "AUX": 3, "AdJ": 4, "CONJ": 5, "DET": 6, "INTJ": 7, "NOUN": 8, "NUM": 9, "PERIOD": 10, "PRON": 11, "PROPN": 12, "PUNC": 13, "SCON": 14, "SYM": 15, "VERB": 16, "X": 17}, "id2ner": {"0": "B-ART", "1": "B-EVENT", "2": "B-FAC", "3": "B-GPE", "4": "B-LANGUAGE", "5": "B-LOC", "6": "B-NORP", "7": "B-ORG", "8": "B-OTHERS", "9": "B-PERSON", "10": "B-TITLE", "11": "I-ART", "12": "I-EVENT", "13": "I-FAC", "14": "I-GPE", "15": "I-LANGUAGE", "16": "I-LOC", "17": "I-NORP", "18": "I-ORG", "19": "I-OTHERS", "20": "I-PERSON", "21": "I-TITLE", "22": "O"}, "id2pos": {"0": "ADJ", "1": "ADP", "2": "ADV", "3": "AUX", "4": "AdJ", "5": "CONJ", "6": "DET", "7": "INTJ", "8": "NOUN", "9": "NUM", "10": "PERIOD", "11": "PRON", "12": "PROPN", "13": "PUNC", "14": "SCON", "15": "SYM", "16": "VERB", "17": "X"}, "metrics_notes": "Validated on 80/20 Split. NER Macro F1: 0.69, POS Weighted F1: 0.96"}
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f2e5d651e455d83aa0f2227a070320015f59517d2b7c90f0f0a047f80a270451
3
+ size 538947416
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cfb8f8a4752a659f37f62ad84d703913615e622a7641c338f11c56dfa6ec0b52
3
+ size 539111115
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "cls_token": "[CLS]",
4
+ "do_lower_case": false,
5
+ "is_local": false,
6
+ "mask_token": "[MASK]",
7
+ "model_max_length": 512,
8
+ "pad_token": "[PAD]",
9
+ "sep_token": "[SEP]",
10
+ "strip_accents": null,
11
+ "tokenize_chinese_chars": true,
12
+ "tokenizer_class": "BertTokenizer",
13
+ "unk_token": "[UNK]"
14
+ }