leofn3 commited on
Commit
eaa6954
1 Parent(s): 3c731fa

Training in progress, epoch 1

Browse files
config.json CHANGED
@@ -1,38 +1,26 @@
1
  {
2
- "_name_or_path": "PORTULAN/albertina-ptbr",
 
3
  "architectures": [
4
- "DebertaV2ForSequenceClassification"
5
  ],
6
- "attention_head_size": 64,
7
- "attention_probs_dropout_prob": 0.1,
8
- "conv_act": "gelu",
9
- "conv_kernel_size": 3,
10
- "hidden_act": "gelu",
11
- "hidden_dropout_prob": 0.0,
12
- "hidden_size": 1536,
13
  "initializer_range": 0.02,
14
- "intermediate_size": 6144,
15
- "layer_norm_eps": 1e-07,
16
  "max_position_embeddings": 512,
17
- "max_relative_positions": -1,
18
- "model_type": "deberta-v2",
19
- "norm_rel_ebd": "layer_norm",
20
- "num_attention_heads": 24,
21
- "num_hidden_layers": 24,
22
  "pad_token_id": 0,
23
- "pooler_dropout": 0,
24
- "pooler_hidden_act": "gelu",
25
- "pooler_hidden_size": 1536,
26
- "pos_att_type": [
27
- "p2c",
28
- "c2p"
29
- ],
30
- "position_biased_input": false,
31
- "position_buckets": 256,
32
- "relative_attention": true,
33
- "share_att_key": true,
34
  "torch_dtype": "float32",
35
  "transformers_version": "4.35.2",
36
- "type_vocab_size": 0,
37
- "vocab_size": 128100
38
  }
 
1
  {
2
+ "_name_or_path": "distilbert-base-multilingual-cased",
3
+ "activation": "gelu",
4
  "architectures": [
5
+ "DistilBertForSequenceClassification"
6
  ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
 
 
 
11
  "initializer_range": 0.02,
 
 
12
  "max_position_embeddings": 512,
13
+ "model_type": "distilbert",
14
+ "n_heads": 12,
15
+ "n_layers": 6,
16
+ "output_past": true,
 
17
  "pad_token_id": 0,
18
+ "problem_type": "single_label_classification",
19
+ "qa_dropout": 0.1,
20
+ "seq_classif_dropout": 0.2,
21
+ "sinusoidal_pos_embds": false,
22
+ "tie_weights_": true,
 
 
 
 
 
 
23
  "torch_dtype": "float32",
24
  "transformers_version": "4.35.2",
25
+ "vocab_size": 119547
 
26
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:587df1e2cda8465cb1fbc4cc15fd629f97e121afaa66b5705b7aade86d20c65b
3
- size 3547878120
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f8585a2da9aa0c024650a92fe05b4b100f4ba2f27529c983fe7dc225985a9cd
3
+ size 541317368
runs/Dec16_12-33-31_c868fac455d2/events.out.tfevents.1702730012.c868fac455d2.3256.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e15276d4640ff68f38faa6fa047ea0a3deae07b7d013c4d05e81f0b0d2412d7d
3
+ size 4612
special_tokens_map.json CHANGED
@@ -1,7 +1,5 @@
1
  {
2
- "bos_token": "[CLS]",
3
  "cls_token": "[CLS]",
4
- "eos_token": "[SEP]",
5
  "mask_token": "[MASK]",
6
  "pad_token": "[PAD]",
7
  "sep_token": "[SEP]",
 
1
  {
 
2
  "cls_token": "[CLS]",
 
3
  "mask_token": "[MASK]",
4
  "pad_token": "[PAD]",
5
  "sep_token": "[SEP]",
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -8,31 +8,31 @@
8
  "single_word": false,
9
  "special": true
10
  },
11
- "1": {
12
- "content": "[CLS]",
13
  "lstrip": false,
14
  "normalized": false,
15
  "rstrip": false,
16
  "single_word": false,
17
  "special": true
18
  },
19
- "2": {
20
- "content": "[SEP]",
21
  "lstrip": false,
22
  "normalized": false,
23
  "rstrip": false,
24
  "single_word": false,
25
  "special": true
26
  },
27
- "3": {
28
- "content": "[UNK]",
29
  "lstrip": false,
30
  "normalized": false,
31
  "rstrip": false,
32
  "single_word": false,
33
  "special": true
34
  },
35
- "128000": {
36
  "content": "[MASK]",
37
  "lstrip": false,
38
  "normalized": false,
@@ -41,18 +41,15 @@
41
  "special": true
42
  }
43
  },
44
- "bos_token": "[CLS]",
45
  "clean_up_tokenization_spaces": true,
46
  "cls_token": "[CLS]",
47
  "do_lower_case": false,
48
- "eos_token": "[SEP]",
49
  "mask_token": "[MASK]",
50
  "model_max_length": 512,
51
  "pad_token": "[PAD]",
52
  "sep_token": "[SEP]",
53
- "sp_model_kwargs": {},
54
- "split_by_punct": false,
55
- "tokenizer_class": "DebertaV2Tokenizer",
56
- "unk_token": "[UNK]",
57
- "vocab_type": "spm"
58
  }
 
8
  "single_word": false,
9
  "special": true
10
  },
11
+ "100": {
12
+ "content": "[UNK]",
13
  "lstrip": false,
14
  "normalized": false,
15
  "rstrip": false,
16
  "single_word": false,
17
  "special": true
18
  },
19
+ "101": {
20
+ "content": "[CLS]",
21
  "lstrip": false,
22
  "normalized": false,
23
  "rstrip": false,
24
  "single_word": false,
25
  "special": true
26
  },
27
+ "102": {
28
+ "content": "[SEP]",
29
  "lstrip": false,
30
  "normalized": false,
31
  "rstrip": false,
32
  "single_word": false,
33
  "special": true
34
  },
35
+ "103": {
36
  "content": "[MASK]",
37
  "lstrip": false,
38
  "normalized": false,
 
41
  "special": true
42
  }
43
  },
 
44
  "clean_up_tokenization_spaces": true,
45
  "cls_token": "[CLS]",
46
  "do_lower_case": false,
 
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:2ebc1decb241980620cee37d69fda5f983f063466b7c3ae117e195b005d30d2f
3
  size 4600
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd22dba14a11c6f37685ed817e9e80660635ca295613fc670d62e2283fc9fabe
3
  size 4600
vocab.txt ADDED
The diff for this file is too large to render. See raw diff