ricardo-filho commited on
Commit
e9b0986
1 Parent(s): a4903e4

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-CRITERIO_JULGAMENTO",
15
+ "1": "B-DATA_SESSAO",
16
+ "2": "B-MODALIDADE_LICITACAO",
17
+ "3": "B-NUMERO_EXERCICIO",
18
+ "4": "B-OBJETO_LICITACAO",
19
+ "5": "B-VALOR_OBJETO",
20
+ "6": "I-CRITERIO_JULGAMENTO",
21
+ "7": "I-DATA_SESSAO",
22
+ "8": "I-MODALIDADE_LICITACAO",
23
+ "9": "I-NUMERO_EXERCICIO",
24
+ "10": "I-OBJETO_LICITACAO",
25
+ "11": "I-VALOR_OBJETO",
26
+ "12": "O"
27
+ },
28
+ "initializer_range": 0.02,
29
+ "intermediate_size": 3072,
30
+ "label2id": {
31
+ "B-CRITERIO_JULGAMENTO": 0,
32
+ "B-DATA_SESSAO": 1,
33
+ "B-MODALIDADE_LICITACAO": 2,
34
+ "B-NUMERO_EXERCICIO": 3,
35
+ "B-OBJETO_LICITACAO": 4,
36
+ "B-VALOR_OBJETO": 5,
37
+ "I-CRITERIO_JULGAMENTO": 6,
38
+ "I-DATA_SESSAO": 7,
39
+ "I-MODALIDADE_LICITACAO": 8,
40
+ "I-NUMERO_EXERCICIO": 9,
41
+ "I-OBJETO_LICITACAO": 10,
42
+ "I-VALOR_OBJETO": 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.20.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:5f4bba75b810037535d325816316d9568549bad6364b5227e1421430f095226f
3
+ size 433440561
runs/Jun03_18-43-08_ac40ab8bc661/1654281805.4393942/events.out.tfevents.1654281805.ac40ab8bc661.2497.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b15bd28bfafac26f64a801380a05309b753a1193f0beb1fea4dee14e04efbfe
3
+ size 5261
runs/Jun03_18-43-08_ac40ab8bc661/events.out.tfevents.1654281805.ac40ab8bc661.2497.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:32809df5c1c287a1fea13802c0fe84ca86eae23753e9642b25c88c78ce684407
3
+ size 4764
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/transformers/eecc45187d085a1169eed91017d358cc0e9cbdd5dc236bcd710059dbf0a2f816.dd8bd9bfd3664b530ea4e645105f557769387b3da9f79bdb55ed556bdd80611d",
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:54ebeb092656302c3017e9545b117d366f542173d58f0bf84b1443df85494ba9
3
+ size 3311
vocab.txt ADDED
The diff for this file is too large to render. See raw diff