jtlicardo commited on
Commit
194f643
1 Parent(s): 83c6dfd

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "hidden_dim": 3072,
11
+ "id2label": {
12
+ "0": "O",
13
+ "1": "B-TASK",
14
+ "2": "I-TASK",
15
+ "3": "B-CONDITION",
16
+ "4": "I-CONDITION",
17
+ "5": "B-PROCESS_INFO",
18
+ "6": "I-PROCESS_INFO",
19
+ "7": "B-AGENT",
20
+ "8": "I-AGENT",
21
+ "9": "B-TASK_INFO",
22
+ "10": "I-TASK_INFO"
23
+ },
24
+ "initializer_range": 0.02,
25
+ "label2id": {
26
+ "B-AGENT": 7,
27
+ "B-CONDITION": 3,
28
+ "B-PROCESS_INFO": 5,
29
+ "B-TASK": 1,
30
+ "B-TASK_INFO": 9,
31
+ "I-AGENT": 8,
32
+ "I-CONDITION": 4,
33
+ "I-PROCESS_INFO": 6,
34
+ "I-TASK": 2,
35
+ "I-TASK_INFO": 10,
36
+ "O": 0
37
+ },
38
+ "max_position_embeddings": 512,
39
+ "model_type": "distilbert",
40
+ "n_heads": 12,
41
+ "n_layers": 6,
42
+ "output_past": true,
43
+ "pad_token_id": 0,
44
+ "qa_dropout": 0.1,
45
+ "seq_classif_dropout": 0.2,
46
+ "sinusoidal_pos_embds": false,
47
+ "tie_weights_": true,
48
+ "torch_dtype": "float32",
49
+ "transformers_version": "4.26.1",
50
+ "vocab_size": 28996
51
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc339be3d38aeacfa28111a23058362e56e52a9ac89c7fcb0d73ab1ea998e0dd
3
+ size 260832293
runs/Mar13_13-27-46_7e4425341490/1678714077.9580295/events.out.tfevents.1678714077.7e4425341490.3338.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dedc509e41cd7f9d9e04fb3f0baa4da28c2c81d80ce5d83f956e9a241ac8bf7d
3
+ size 5671
runs/Mar13_13-27-46_7e4425341490/events.out.tfevents.1678714077.7e4425341490.3338.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c10af156038957b7d0cd493ab11d4faa02ba64888af1df4dcbaa60f57854db8
3
+ size 4781
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,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "do_lower_case": false,
4
+ "mask_token": "[MASK]",
5
+ "model_max_length": 512,
6
+ "name_or_path": "distilbert-base-cased",
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "special_tokens_map_file": null,
10
+ "strip_accents": null,
11
+ "tokenize_chinese_chars": true,
12
+ "tokenizer_class": "DistilBertTokenizer",
13
+ "unk_token": "[UNK]"
14
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:207754ca33e443a18afc4586e275855acc9d94045acad7ec34deaa2d07b0eec0
3
+ size 3515
vocab.txt ADDED
The diff for this file is too large to render. See raw diff