leandroaraujodev commited on
Commit
6c1c587
·
verified ·
1 Parent(s): 2c58abd

Training in progress, epoch 1

Browse files
config.json CHANGED
@@ -1,43 +1,38 @@
1
  {
2
- "_name_or_path": "neuralmind/bert-base-portuguese-cased",
 
3
  "architectures": [
4
- "BertForSequenceClassification"
5
  ],
 
6
  "attention_probs_dropout_prob": 0.2,
7
  "classifier_dropout": 0.2,
8
- "directionality": "bidi",
9
- "hidden_act": "gelu",
 
10
  "hidden_dropout_prob": 0.2,
11
- "hidden_size": 768,
12
  "id2label": {
13
  "0": "NEUTRO",
14
  "1": "POSITIVO",
15
  "2": "NEGATIVO"
16
  },
17
  "initializer_range": 0.02,
18
- "intermediate_size": 3072,
19
  "label2id": {
20
  "NEGATIVO": 2,
21
  "NEUTRO": 0,
22
  "POSITIVO": 1
23
  },
24
- "layer_norm_eps": 1e-12,
25
  "max_position_embeddings": 512,
26
- "model_type": "bert",
27
- "num_attention_heads": 12,
28
- "num_hidden_layers": 12,
29
- "output_past": true,
30
  "pad_token_id": 0,
31
- "pooler_fc_size": 768,
32
- "pooler_num_attention_heads": 12,
33
- "pooler_num_fc_layers": 3,
34
- "pooler_size_per_head": 128,
35
- "pooler_type": "first_token_transform",
36
- "position_embedding_type": "absolute",
37
  "problem_type": "multi_label_classification",
 
 
 
 
38
  "torch_dtype": "float32",
39
  "transformers_version": "4.44.2",
40
- "type_vocab_size": 2,
41
- "use_cache": true,
42
- "vocab_size": 29794
43
  }
 
1
  {
2
+ "_name_or_path": "distilbert/distilbert-base-uncased",
3
+ "activation": "gelu",
4
  "architectures": [
5
+ "DistilBertForSequenceClassification"
6
  ],
7
+ "attention_dropout": 0.1,
8
  "attention_probs_dropout_prob": 0.2,
9
  "classifier_dropout": 0.2,
10
+ "dim": 768,
11
+ "dropout": 0.1,
12
+ "hidden_dim": 3072,
13
  "hidden_dropout_prob": 0.2,
 
14
  "id2label": {
15
  "0": "NEUTRO",
16
  "1": "POSITIVO",
17
  "2": "NEGATIVO"
18
  },
19
  "initializer_range": 0.02,
 
20
  "label2id": {
21
  "NEGATIVO": 2,
22
  "NEUTRO": 0,
23
  "POSITIVO": 1
24
  },
 
25
  "max_position_embeddings": 512,
26
+ "model_type": "distilbert",
27
+ "n_heads": 12,
28
+ "n_layers": 6,
 
29
  "pad_token_id": 0,
 
 
 
 
 
 
30
  "problem_type": "multi_label_classification",
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.44.2",
37
+ "vocab_size": 30522
 
 
38
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:03b5a830901bb1a0eee04930d30ab97306799246f883e70b23208127368c0323
3
- size 435725300
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e40c283058a5b5891e2fc3f60eb0ae5af1044225d9238cc41a6feb068563f6c
3
+ size 267835644
runs/Sep21_18-31-56_9d17344fbe2b/events.out.tfevents.1726943518.9d17344fbe2b.3608.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d5624dc30a928d5f2ab2bdabaa6596436d4c3713eae2d6c385de24c3a401d81
3
+ size 5595
special_tokens_map.json CHANGED
@@ -1,37 +1,7 @@
1
  {
2
- "cls_token": {
3
- "content": "[CLS]",
4
- "lstrip": false,
5
- "normalized": false,
6
- "rstrip": false,
7
- "single_word": false
8
- },
9
- "mask_token": {
10
- "content": "[MASK]",
11
- "lstrip": false,
12
- "normalized": false,
13
- "rstrip": false,
14
- "single_word": false
15
- },
16
- "pad_token": {
17
- "content": "[PAD]",
18
- "lstrip": false,
19
- "normalized": false,
20
- "rstrip": false,
21
- "single_word": false
22
- },
23
- "sep_token": {
24
- "content": "[SEP]",
25
- "lstrip": false,
26
- "normalized": false,
27
- "rstrip": false,
28
- "single_word": false
29
- },
30
- "unk_token": {
31
- "content": "[UNK]",
32
- "lstrip": false,
33
- "normalized": false,
34
- "rstrip": false,
35
- "single_word": false
36
- }
37
  }
 
1
  {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  }
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -43,22 +43,13 @@
43
  },
44
  "clean_up_tokenization_spaces": true,
45
  "cls_token": "[CLS]",
46
- "do_basic_tokenize": true,
47
- "do_lower_case": false,
48
  "mask_token": "[MASK]",
49
- "max_length": 512,
50
- "model_max_length": 1000000000000000019884624838656,
51
- "never_split": null,
52
- "pad_to_multiple_of": null,
53
  "pad_token": "[PAD]",
54
- "pad_token_type_id": 0,
55
- "padding_side": "right",
56
  "sep_token": "[SEP]",
57
- "stride": 0,
58
  "strip_accents": null,
59
  "tokenize_chinese_chars": true,
60
- "tokenizer_class": "BertTokenizer",
61
- "truncation_side": "right",
62
- "truncation_strategy": "longest_first",
63
  "unk_token": "[UNK]"
64
  }
 
43
  },
44
  "clean_up_tokenization_spaces": true,
45
  "cls_token": "[CLS]",
46
+ "do_lower_case": true,
 
47
  "mask_token": "[MASK]",
48
+ "model_max_length": 512,
 
 
 
49
  "pad_token": "[PAD]",
 
 
50
  "sep_token": "[SEP]",
 
51
  "strip_accents": null,
52
  "tokenize_chinese_chars": true,
53
+ "tokenizer_class": "DistilBertTokenizer",
 
 
54
  "unk_token": "[UNK]"
55
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:163d07ad7620fb4d8f2b4690e3064a28dbc04778a0f87963e4e64c09d17e296b
3
  size 5176
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:549dcb3d826cb2249f77438cda48ca934f4ff717ef093ebb7fe613ce06bc1b63
3
  size 5176
vocab.txt CHANGED
The diff for this file is too large to render. See raw diff