gseetha04 commited on
Commit
0faf0da
1 Parent(s): 96d9143

Distilweight

Browse files
.DS_Store CHANGED
Binary files a/.DS_Store and b/.DS_Store differ
 
DistilBertforTokenclassification/config.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert-base-cased",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForTokenClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "finetuning_task": "ner",
11
+ "hidden_dim": 3072,
12
+ "id2label": {
13
+ "0": "C",
14
+ "1": "CT",
15
+ "2": "E",
16
+ "3": "O"
17
+ },
18
+ "initializer_range": 0.02,
19
+ "label2id": {
20
+ "C": 0,
21
+ "CT": 1,
22
+ "E": 2,
23
+ "O": 3
24
+ },
25
+ "max_position_embeddings": 512,
26
+ "model_type": "distilbert",
27
+ "n_heads": 12,
28
+ "n_layers": 6,
29
+ "output_past": true,
30
+ "pad_token_id": 0,
31
+ "qa_dropout": 0.1,
32
+ "seq_classif_dropout": 0.2,
33
+ "sinusoidal_pos_embds": false,
34
+ "tie_weights_": true,
35
+ "torch_dtype": "float32",
36
+ "transformers_version": "4.30.0.dev0",
37
+ "vocab_size": 28996
38
+ }
DistilBertforTokenclassification/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54505037146b09e2bf2539475a5b8e52ddc7642936575c1c4f1faf5e1a4e0cc8
3
+ size 521608837
DistilBertforTokenclassification/pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:000515697450722dbbf13d3c35fca97dd670859ec6ca567471d65503800a98bc
3
+ size 260809381
DistilBertforTokenclassification/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:63b13993d05ea75f76fa7b6991cf7a578a9c3b58e5b7100e53e08d576b755de0
3
+ size 13553
DistilBertforTokenclassification/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22892d564d9b7cbb99bddcf893feede5a3dbd6afc35161c012aff7ac9c96f748
3
+ size 627
DistilBertforTokenclassification/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
+ }
DistilBertforTokenclassification/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
DistilBertforTokenclassification/tokenizer_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "clean_up_tokenization_spaces": true,
3
+ "cls_token": "[CLS]",
4
+ "do_lower_case": false,
5
+ "mask_token": "[MASK]",
6
+ "model_max_length": 512,
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "strip_accents": null,
10
+ "tokenize_chinese_chars": true,
11
+ "tokenizer_class": "DistilBertTokenizer",
12
+ "unk_token": "[UNK]"
13
+ }
DistilBertforTokenclassification/trainer_state.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 26.785714285714285,
5
+ "global_step": 1500,
6
+ "is_hyper_param_search": false,
7
+ "is_local_process_zero": true,
8
+ "is_world_process_zero": true,
9
+ "log_history": [
10
+ {
11
+ "epoch": 8.93,
12
+ "learning_rate": 3.511904761904762e-05,
13
+ "loss": 0.2669,
14
+ "step": 500
15
+ },
16
+ {
17
+ "epoch": 17.86,
18
+ "learning_rate": 2.023809523809524e-05,
19
+ "loss": 0.0221,
20
+ "step": 1000
21
+ },
22
+ {
23
+ "epoch": 26.79,
24
+ "learning_rate": 5.357142857142857e-06,
25
+ "loss": 0.0053,
26
+ "step": 1500
27
+ }
28
+ ],
29
+ "max_steps": 1680,
30
+ "num_train_epochs": 30,
31
+ "total_flos": 461434440396288.0,
32
+ "trial_name": null,
33
+ "trial_params": null
34
+ }
DistilBertforTokenclassification/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d79bdbc8cc387bcda432714e8ff5a47d20e238ffd489ed29496030c9edd84882
3
+ size 3899
DistilBertforTokenclassification/vocab.txt ADDED
The diff for this file is too large to render. See raw diff