asquevedos commited on
Commit
d5f0dde
·
verified ·
1 Parent(s): 74c8fd6

Training in progress, epoch 1

Browse files
config.json CHANGED
@@ -1,36 +1,37 @@
1
  {
2
- "_name_or_path": "distilbert/distilroberta-base",
3
  "architectures": [
4
  "RobertaForSequenceClassification"
5
  ],
6
- "attention_probs_dropout_prob": 0.1,
7
  "bos_token_id": 0,
8
  "classifier_dropout": null,
9
  "eos_token_id": 2,
 
10
  "hidden_act": "gelu",
11
- "hidden_dropout_prob": 0.1,
12
  "hidden_size": 768,
13
  "id2label": {
14
- "0": "LABEL_0",
15
- "1": "LABEL_1",
16
- "2": "LABEL_2",
17
- "3": "LABEL_3",
18
- "4": "LABEL_4"
19
  },
20
  "initializer_range": 0.02,
21
  "intermediate_size": 3072,
22
  "label2id": {
23
- "LABEL_0": 0,
24
- "LABEL_1": 1,
25
- "LABEL_2": 2,
26
- "LABEL_3": 3,
27
- "LABEL_4": 4
28
  },
29
  "layer_norm_eps": 1e-05,
30
  "max_position_embeddings": 514,
31
  "model_type": "roberta",
32
  "num_attention_heads": 12,
33
- "num_hidden_layers": 6,
34
  "pad_token_id": 1,
35
  "position_embedding_type": "absolute",
36
  "problem_type": "single_label_classification",
@@ -38,5 +39,5 @@
38
  "transformers_version": "4.39.3",
39
  "type_vocab_size": 1,
40
  "use_cache": true,
41
- "vocab_size": 50265
42
  }
 
1
  {
2
+ "_name_or_path": "asquevedos/services-ucacue",
3
  "architectures": [
4
  "RobertaForSequenceClassification"
5
  ],
6
+ "attention_probs_dropout_prob": 0.0,
7
  "bos_token_id": 0,
8
  "classifier_dropout": null,
9
  "eos_token_id": 2,
10
+ "gradient_checkpointing": false,
11
  "hidden_act": "gelu",
12
+ "hidden_dropout_prob": 0.0,
13
  "hidden_size": 768,
14
  "id2label": {
15
+ "0": "Infraestructura y redes",
16
+ "1": "Servicios y Operaciones",
17
+ "2": "Desarrollo",
18
+ "3": "Plataformas",
19
+ "4": "Jefatura TI"
20
  },
21
  "initializer_range": 0.02,
22
  "intermediate_size": 3072,
23
  "label2id": {
24
+ "Desarrollo": 2,
25
+ "Infraestructura y redes": 0,
26
+ "Jefatura TI": 4,
27
+ "Plataformas": 3,
28
+ "Servicios y Operaciones": 1
29
  },
30
  "layer_norm_eps": 1e-05,
31
  "max_position_embeddings": 514,
32
  "model_type": "roberta",
33
  "num_attention_heads": 12,
34
+ "num_hidden_layers": 12,
35
  "pad_token_id": 1,
36
  "position_embedding_type": "absolute",
37
  "problem_type": "single_label_classification",
 
39
  "transformers_version": "4.39.3",
40
  "type_vocab_size": 1,
41
  "use_cache": true,
42
+ "vocab_size": 50262
43
  }
merges.txt CHANGED
The diff for this file is too large to render. See raw diff
 
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e13b0555faea07de3c6e226c6706fb97d76377d8090d1cc3b4be230005041cbe
3
- size 328501508
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:257923f6a767e62b7e3ff8adfcf2390ec7aed2aff8ba1ff2da2df99c81f8ecf0
3
+ size 498612836
special_tokens_map.json CHANGED
@@ -1,15 +1,51 @@
1
  {
2
- "bos_token": "<s>",
3
- "cls_token": "<s>",
4
- "eos_token": "</s>",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  "mask_token": {
6
  "content": "<mask>",
7
  "lstrip": true,
8
- "normalized": false,
9
  "rstrip": false,
10
  "single_word": false
11
  },
12
- "pad_token": "<pad>",
13
- "sep_token": "</s>",
14
- "unk_token": "<unk>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  }
 
1
  {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": true,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "cls_token": {
10
+ "content": "<s>",
11
+ "lstrip": false,
12
+ "normalized": true,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "eos_token": {
17
+ "content": "</s>",
18
+ "lstrip": false,
19
+ "normalized": true,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
  "mask_token": {
24
  "content": "<mask>",
25
  "lstrip": true,
26
+ "normalized": true,
27
  "rstrip": false,
28
  "single_word": false
29
  },
30
+ "pad_token": {
31
+ "content": "<pad>",
32
+ "lstrip": false,
33
+ "normalized": true,
34
+ "rstrip": false,
35
+ "single_word": false
36
+ },
37
+ "sep_token": {
38
+ "content": "</s>",
39
+ "lstrip": false,
40
+ "normalized": true,
41
+ "rstrip": false,
42
+ "single_word": false
43
+ },
44
+ "unk_token": {
45
+ "content": "<unk>",
46
+ "lstrip": false,
47
+ "normalized": true,
48
+ "rstrip": false,
49
+ "single_word": false
50
+ }
51
  }
tokenizer.json CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6a5e0a8892d7e66e3265eaf425e6d51489e1fc56995846ea9fb3397878de4d2e
3
- size 2108713
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb4cf44b036f36248dc150a757cf8b6c67ae5900d227137a921ef27f76a99e45
3
+ size 2213681
tokenizer_config.json CHANGED
@@ -33,10 +33,10 @@
33
  "single_word": false,
34
  "special": true
35
  },
36
- "50264": {
37
  "content": "<mask>",
38
  "lstrip": true,
39
- "normalized": false,
40
  "rstrip": false,
41
  "single_word": false,
42
  "special": true
@@ -48,6 +48,7 @@
48
  "eos_token": "</s>",
49
  "errors": "replace",
50
  "mask_token": "<mask>",
 
51
  "model_max_length": 512,
52
  "pad_token": "<pad>",
53
  "sep_token": "</s>",
 
33
  "single_word": false,
34
  "special": true
35
  },
36
+ "4": {
37
  "content": "<mask>",
38
  "lstrip": true,
39
+ "normalized": true,
40
  "rstrip": false,
41
  "single_word": false,
42
  "special": true
 
48
  "eos_token": "</s>",
49
  "errors": "replace",
50
  "mask_token": "<mask>",
51
+ "max_len": 512,
52
  "model_max_length": 512,
53
  "pad_token": "<pad>",
54
  "sep_token": "</s>",
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ff5fb4332a3bfdde096605f582a758c91eda6e890c6aa3a18d1b74f5cc8f9200
3
  size 4984
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9594c3919458e05f0fb576d7b1a7358228d2ff8bb0191734ac5dfea833aa1437
3
  size 4984
vocab.json CHANGED
The diff for this file is too large to render. See raw diff