fpadovani commited on
Commit
ec69c31
·
verified ·
1 Parent(s): f0c4379

Training in progress, step 4000

Browse files
config.json CHANGED
@@ -1,28 +1,32 @@
1
  {
 
2
  "architectures": [
3
- "RobertaForMaskedLM"
4
  ],
5
- "attention_probs_dropout_prob": 0.1,
6
- "bos_token_id": 3,
7
- "classifier_dropout": null,
8
- "eos_token_id": 4,
9
- "hidden_act": "gelu",
10
- "hidden_dropout_prob": 0.1,
11
- "hidden_size": 256,
12
  "initializer_range": 0.02,
13
- "intermediate_size": 2048,
14
- "layer_norm_eps": 1e-05,
15
- "mask_token_id": 6,
16
- "max_position_embeddings": 512,
17
- "model_type": "roberta",
18
- "num_attention_heads": 8,
19
- "num_hidden_layers": 8,
20
- "pad_token_id": 1,
21
- "position_embedding_type": "absolute",
22
- "tie_word_embeddings": false,
 
 
 
 
 
 
 
23
  "torch_dtype": "float32",
24
  "transformers_version": "4.45.2",
25
- "type_vocab_size": 2,
26
  "use_cache": true,
27
  "vocab_size": 8192
28
  }
 
1
  {
2
+ "activation_function": "gelu_new",
3
  "architectures": [
4
+ "GPT2LMHeadModel"
5
  ],
6
+ "attn_pdrop": 0.1,
7
+ "bos_token_id": 0,
8
+ "embd_pdrop": 0.1,
9
+ "eos_token_id": 1,
 
 
 
10
  "initializer_range": 0.02,
11
+ "layer_norm_epsilon": 1e-05,
12
+ "model_type": "gpt2",
13
+ "n_ctx": 512,
14
+ "n_embd": 256,
15
+ "n_head": 8,
16
+ "n_inner": 2048,
17
+ "n_layer": 8,
18
+ "n_positions": 512,
19
+ "reorder_and_upcast_attn": false,
20
+ "resid_pdrop": 0.1,
21
+ "scale_attn_by_inverse_layer_idx": false,
22
+ "scale_attn_weights": true,
23
+ "summary_activation": null,
24
+ "summary_first_dropout": 0.1,
25
+ "summary_proj_to_labels": true,
26
+ "summary_type": "cls_index",
27
+ "summary_use_proj": true,
28
  "torch_dtype": "float32",
29
  "transformers_version": "4.45.2",
 
30
  "use_cache": true,
31
  "vocab_size": 8192
32
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b2b753ba321eda5063cfa7df56a7ef1cdc691c4014810d92ec26ac26b03ad887
3
- size 59702184
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2801ae148db1f89a38af1d83271bf1f654930608ffbdc05c9e66f5d71a959394
3
+ size 51007160
special_tokens_map.json CHANGED
@@ -1,6 +1,34 @@
1
  {
2
- "bos_token": "[PAD]",
3
- "eos_token": "[EOS]",
4
- "mask_token": "[MASK]",
5
- "pad_token": "[CLS]"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  }
 
1
  {
2
+ "additional_special_tokens": [
3
+ "<|endoftext|>"
4
+ ],
5
+ "bos_token": {
6
+ "content": "<s>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false
11
+ },
12
+ "eos_token": {
13
+ "content": "</s>",
14
+ "lstrip": false,
15
+ "normalized": false,
16
+ "rstrip": false,
17
+ "single_word": false
18
+ },
19
+ "mask_token": {
20
+ "content": "<mask>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false
25
+ },
26
+ "pad_token": "</s>",
27
+ "unk_token": {
28
+ "content": "<unk>",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false
33
+ }
34
  }
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -1,7 +1,7 @@
1
  {
2
  "added_tokens_decoder": {
3
  "0": {
4
- "content": "[UNK]",
5
  "lstrip": false,
6
  "normalized": false,
7
  "rstrip": false,
@@ -9,7 +9,7 @@
9
  "special": true
10
  },
11
  "1": {
12
- "content": "[CLS]",
13
  "lstrip": false,
14
  "normalized": false,
15
  "rstrip": false,
@@ -17,7 +17,7 @@
17
  "special": true
18
  },
19
  "2": {
20
- "content": "[SEP]",
21
  "lstrip": false,
22
  "normalized": false,
23
  "rstrip": false,
@@ -25,7 +25,7 @@
25
  "special": true
26
  },
27
  "3": {
28
- "content": "[PAD]",
29
  "lstrip": false,
30
  "normalized": false,
31
  "rstrip": false,
@@ -33,7 +33,7 @@
33
  "special": true
34
  },
35
  "4": {
36
- "content": "[EOS]",
37
  "lstrip": false,
38
  "normalized": false,
39
  "rstrip": false,
@@ -41,15 +41,7 @@
41
  "special": true
42
  },
43
  "5": {
44
- "content": "[BOS]",
45
- "lstrip": false,
46
- "normalized": false,
47
- "rstrip": false,
48
- "single_word": false,
49
- "special": true
50
- },
51
- "6": {
52
- "content": "[MASK]",
53
  "lstrip": false,
54
  "normalized": false,
55
  "rstrip": false,
@@ -57,11 +49,15 @@
57
  "special": true
58
  }
59
  },
60
- "bos_token": "[PAD]",
 
 
 
61
  "clean_up_tokenization_spaces": false,
62
- "eos_token": "[EOS]",
63
- "mask_token": "[MASK]",
64
  "model_max_length": 128,
65
- "pad_token": "[CLS]",
66
- "tokenizer_class": "PreTrainedTokenizerFast"
 
67
  }
 
1
  {
2
  "added_tokens_decoder": {
3
  "0": {
4
+ "content": "<s>",
5
  "lstrip": false,
6
  "normalized": false,
7
  "rstrip": false,
 
9
  "special": true
10
  },
11
  "1": {
12
+ "content": "</s>",
13
  "lstrip": false,
14
  "normalized": false,
15
  "rstrip": false,
 
17
  "special": true
18
  },
19
  "2": {
20
+ "content": "<pad>",
21
  "lstrip": false,
22
  "normalized": false,
23
  "rstrip": false,
 
25
  "special": true
26
  },
27
  "3": {
28
+ "content": "<unk>",
29
  "lstrip": false,
30
  "normalized": false,
31
  "rstrip": false,
 
33
  "special": true
34
  },
35
  "4": {
36
+ "content": "<mask>",
37
  "lstrip": false,
38
  "normalized": false,
39
  "rstrip": false,
 
41
  "special": true
42
  },
43
  "5": {
44
+ "content": "<|endoftext|>",
 
 
 
 
 
 
 
 
45
  "lstrip": false,
46
  "normalized": false,
47
  "rstrip": false,
 
49
  "special": true
50
  }
51
  },
52
+ "additional_special_tokens": [
53
+ "<|endoftext|>"
54
+ ],
55
+ "bos_token": "<s>",
56
  "clean_up_tokenization_spaces": false,
57
+ "eos_token": "</s>",
58
+ "mask_token": "<mask>",
59
  "model_max_length": 128,
60
+ "pad_token": "</s>",
61
+ "tokenizer_class": "PreTrainedTokenizerFast",
62
+ "unk_token": "<unk>"
63
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:82b00b33ff5a34cb27834747d142985f370938cb613e5baed1026ce1070e9a42
3
  size 5368
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a77d647bb2e817d836b30fa0c2702de6364acb70c98f3c308390594352b8543
3
  size 5368
validation_batches.log CHANGED
The diff for this file is too large to render. See raw diff