arushisharma commited on
Commit
2b0314a
1 Parent(s): f7370e7

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert/distilbert-base-uncased",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForTokenClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
11
+ "id2label": {
12
+ "0": "NOUN",
13
+ "1": "PUNCT",
14
+ "2": "ADP",
15
+ "3": "NUM",
16
+ "4": "SYM",
17
+ "5": "SCONJ",
18
+ "6": "ADJ",
19
+ "7": "PART",
20
+ "8": "DET",
21
+ "9": "CCONJ",
22
+ "10": "PROPN",
23
+ "11": "PRON",
24
+ "12": "X",
25
+ "13": "_",
26
+ "14": "ADV",
27
+ "15": "INTJ",
28
+ "16": "VERB",
29
+ "17": "AUX"
30
+ },
31
+ "initializer_range": 0.02,
32
+ "label2id": {
33
+ "ADJ": 6,
34
+ "ADP": 2,
35
+ "ADV": 14,
36
+ "AUX": 17,
37
+ "CCONJ": 9,
38
+ "DET": 8,
39
+ "INTJ": 15,
40
+ "NOUN": 0,
41
+ "NUM": 3,
42
+ "PART": 7,
43
+ "PRON": 11,
44
+ "PROPN": 10,
45
+ "PUNCT": 1,
46
+ "SCONJ": 5,
47
+ "SYM": 4,
48
+ "VERB": 16,
49
+ "X": 12,
50
+ "_": 13
51
+ },
52
+ "max_position_embeddings": 512,
53
+ "model_type": "distilbert",
54
+ "n_heads": 12,
55
+ "n_layers": 6,
56
+ "pad_token_id": 0,
57
+ "qa_dropout": 0.1,
58
+ "seq_classif_dropout": 0.2,
59
+ "sinusoidal_pos_embds": false,
60
+ "tie_weights_": true,
61
+ "torch_dtype": "float32",
62
+ "transformers_version": "4.38.2",
63
+ "vocab_size": 30522
64
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb27cfd22bf14a5ac7a06ea7156b48f2536ec60e8f6c87e2c7c2a6ac2c18a87a
3
+ size 265519232
runs/Mar25_05-13-43_41c1ac8d08dc/events.out.tfevents.1711343626.41c1ac8d08dc.123.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e4d206c516513aba142fd92d0039bcb6b5104f55204d857f7d70fae569d5228
3
+ size 5777
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "100": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "101": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "102": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "103": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "clean_up_tokenization_spaces": true,
45
+ "cls_token": "[CLS]",
46
+ "do_lower_case": true,
47
+ "mask_token": "[MASK]",
48
+ "model_max_length": 1000000000000000019884624838656,
49
+ "pad_token": "[PAD]",
50
+ "sep_token": "[SEP]",
51
+ "strip_accents": null,
52
+ "tokenize_chinese_chars": true,
53
+ "tokenizer_class": "DistilBertTokenizer",
54
+ "unk_token": "[UNK]"
55
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71b27ebc59baf3e0d3dc04f28111ce241f13a398e694548077ba35037158831e
3
+ size 4920
vocab.txt ADDED
The diff for this file is too large to render. See raw diff