ricardo-filho commited on
Commit
c06ab61
1 Parent(s): 608a2df

Training in progress, step 500

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "neuralmind/bert-base-portuguese-cased",
3
+ "architectures": [
4
+ "BertForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "directionality": "bidi",
9
+ "finetuning_task": "ner",
10
+ "hidden_act": "gelu",
11
+ "hidden_dropout_prob": 0.1,
12
+ "hidden_size": 768,
13
+ "id2label": {
14
+ "0": "B-LOC-ANOT",
15
+ "1": "B-LOC-PRED",
16
+ "2": "B-ORG-ANOT",
17
+ "3": "B-ORG-PRED",
18
+ "4": "B-PER-ANOT",
19
+ "5": "B-PER-PRED",
20
+ "6": "I-LOC-ANOT",
21
+ "7": "I-LOC-PRED",
22
+ "8": "I-ORG-ANOT",
23
+ "9": "I-ORG-PRED",
24
+ "10": "I-PER-ANOT",
25
+ "11": "I-PER-PRED",
26
+ "12": "O"
27
+ },
28
+ "initializer_range": 0.02,
29
+ "intermediate_size": 3072,
30
+ "label2id": {
31
+ "B-LOC-ANOT": 0,
32
+ "B-LOC-PRED": 1,
33
+ "B-ORG-ANOT": 2,
34
+ "B-ORG-PRED": 3,
35
+ "B-PER-ANOT": 4,
36
+ "B-PER-PRED": 5,
37
+ "I-LOC-ANOT": 6,
38
+ "I-LOC-PRED": 7,
39
+ "I-ORG-ANOT": 8,
40
+ "I-ORG-PRED": 9,
41
+ "I-PER-ANOT": 10,
42
+ "I-PER-PRED": 11,
43
+ "O": 12
44
+ },
45
+ "layer_norm_eps": 1e-12,
46
+ "max_position_embeddings": 512,
47
+ "model_type": "bert",
48
+ "num_attention_heads": 12,
49
+ "num_hidden_layers": 12,
50
+ "output_past": true,
51
+ "pad_token_id": 0,
52
+ "pooler_fc_size": 768,
53
+ "pooler_num_attention_heads": 12,
54
+ "pooler_num_fc_layers": 3,
55
+ "pooler_size_per_head": 128,
56
+ "pooler_type": "first_token_transform",
57
+ "position_embedding_type": "absolute",
58
+ "torch_dtype": "float32",
59
+ "transformers_version": "4.25.0.dev0",
60
+ "type_vocab_size": 2,
61
+ "use_cache": true,
62
+ "vocab_size": 29794
63
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f1252c5a7d72283f9982d39ce1932e1d61babb52ae379b999136569ab3dd018a
3
+ size 433440561
runs/Nov15_19-32-14_e8107f036b58/1668540823.248216/events.out.tfevents.1668540823.e8107f036b58.839.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f2baeb51c3c0f645b2d6342f46b6aaedb2ca89134355e7443722a939387989fe
3
+ size 5499
runs/Nov15_19-32-14_e8107f036b58/events.out.tfevents.1668540823.e8107f036b58.839.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1970163d696a70fa8249d98e316cc01d18b3fff40c84c8c8cd8f446c1b847130
3
+ size 4719
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,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "do_basic_tokenize": true,
4
+ "do_lower_case": false,
5
+ "mask_token": "[MASK]",
6
+ "name_or_path": "neuralmind/bert-base-portuguese-cased",
7
+ "never_split": null,
8
+ "pad_token": "[PAD]",
9
+ "sep_token": "[SEP]",
10
+ "special_tokens_map_file": "/root/.cache/huggingface/hub/models--neuralmind--bert-base-portuguese-cased/snapshots/94d69c95f98f7d5b2a8700c420230ae10def0baa/special_tokens_map.json",
11
+ "strip_accents": null,
12
+ "tokenize_chinese_chars": true,
13
+ "tokenizer_class": "BertTokenizer",
14
+ "unk_token": "[UNK]"
15
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ffff2ca66c928cbc87fbf6f4a6897e14dcf22c3c32d101b49cba9db84bec924b
3
+ size 3439
vocab.txt ADDED
The diff for this file is too large to render. See raw diff