luancvieira commited on
Commit
822d5e0
·
1 Parent(s): ae38f9b

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
+ "id2label": {
13
+ "0": "sem label",
14
+ "1": "B-ORGANIZACAO",
15
+ "2": "I-ORGANIZACAO",
16
+ "3": "B-PESSOA",
17
+ "4": "I-PESSOA",
18
+ "5": "B-TEMPO",
19
+ "6": "I-TEMPO",
20
+ "7": "B-LOCAL",
21
+ "8": "I-LOCAL",
22
+ "9": "B-LEGISLACAO",
23
+ "10": "I-LEGISLACAO",
24
+ "11": "B-JURISPRUDENCIA",
25
+ "12": "I-JURISPRUDENCIA"
26
+ },
27
+ "initializer_range": 0.02,
28
+ "intermediate_size": 3072,
29
+ "label2id": {
30
+ "B-JURISPRUDENCIA": 11,
31
+ "B-LEGISLACAO": 9,
32
+ "B-LOCAL": 7,
33
+ "B-ORGANIZACAO": 1,
34
+ "B-PESSOA": 3,
35
+ "B-TEMPO": 5,
36
+ "I-JURISPRUDENCIA": 12,
37
+ "I-LEGISLACAO": 10,
38
+ "I-LOCAL": 8,
39
+ "I-ORGANIZACAO": 2,
40
+ "I-PESSOA": 4,
41
+ "I-TEMPO": 6,
42
+ "sem label": 0
43
+ },
44
+ "layer_norm_eps": 1e-12,
45
+ "max_position_embeddings": 512,
46
+ "model_type": "bert",
47
+ "num_attention_heads": 12,
48
+ "num_hidden_layers": 12,
49
+ "output_past": true,
50
+ "pad_token_id": 0,
51
+ "pooler_fc_size": 768,
52
+ "pooler_num_attention_heads": 12,
53
+ "pooler_num_fc_layers": 3,
54
+ "pooler_size_per_head": 128,
55
+ "pooler_type": "first_token_transform",
56
+ "position_embedding_type": "absolute",
57
+ "torch_dtype": "float32",
58
+ "transformers_version": "4.30.2",
59
+ "type_vocab_size": 2,
60
+ "use_cache": true,
61
+ "vocab_size": 29794
62
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3bcf2d77b523e641d2c0eb51975871eae74931088c450b4de57e1fbf6c62186e
3
+ size 433439469
runs/Jun19_08-46-23_LAPTOP-6G81F3NH/events.out.tfevents.1687175188.LAPTOP-6G81F3NH.13720.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2994a66640822242b31e0b30f9c0cf83328dd847f42bd87fcd24d651c6363118
3
+ size 4846
runs/Jun19_08-50-32_LAPTOP-6G81F3NH/events.out.tfevents.1687175436.LAPTOP-6G81F3NH.13720.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a01cfb13679e29dcc45f61b606991fd1eb6e68040da5735bb208faea8246a427
3
+ size 4842
runs/Jun19_08-52-01_LAPTOP-6G81F3NH/events.out.tfevents.1687175526.LAPTOP-6G81F3NH.13720.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86d318f920ccb89066fbd099e8c1da1747b007575d09c0c6d0081c9ac92dcda8
3
+ size 5305
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
+ "clean_up_tokenization_spaces": true,
3
+ "cls_token": "[CLS]",
4
+ "do_basic_tokenize": true,
5
+ "do_lower_case": false,
6
+ "mask_token": "[MASK]",
7
+ "model_max_length": 1000000000000000019884624838656,
8
+ "never_split": null,
9
+ "pad_token": "[PAD]",
10
+ "sep_token": "[SEP]",
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:09aba6094c7c8264ccb63a460ca70fb40388976afa519d5f7c1474d10d831104
3
+ size 3963
vocab.txt ADDED
The diff for this file is too large to render. See raw diff