Josephgflowers commited on
Commit
4052249
1 Parent(s): fa87f1b

Upload 11 files

Browse files
config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "/content/mini-llama/checkpoint-3000",
3
+ "architectures": [
4
+ "LlamaForCausalLM"
5
+ ],
6
+ "attention_bias": false,
7
+ "attention_dropout": 0.0,
8
+ "bos_token_id": 1,
9
+ "eos_token_id": 2,
10
+ "hidden_act": "silu",
11
+ "hidden_size": 768,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 2048,
14
+ "max_position_embeddings": 2048,
15
+ "model_type": "llama",
16
+ "num_attention_heads": 12,
17
+ "num_hidden_layers": 16,
18
+ "num_key_value_heads": 12,
19
+ "pad_token_id": 2,
20
+ "pretraining_tp": 1,
21
+ "rms_norm_eps": 1e-05,
22
+ "rope_scaling": null,
23
+ "rope_theta": 10000.0,
24
+ "tie_word_embeddings": true,
25
+ "torch_dtype": "float32",
26
+ "transformers_version": "4.38.0.dev0",
27
+ "unsloth_version": "2024.1",
28
+ "use_cache": true,
29
+ "vocab_size": 32000
30
+ }
generation_config.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "eos_token_id": 2,
5
+ "transformers_version": "4.38.0.dev0"
6
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7d5a32c971e3c1c8642af75cc229244b5a1afe5f19ffc404ef89241b9a6e049
3
+ size 551406464
optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:68a4d2eef1007c7a897f17273cb7a6d4bda54c13dbc4082a28d5dfd38e38bb60
3
+ size 1281338
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ff264f99d31b522cc7e2a4eac9d38606d0c58a34c0adc74d71e0ca8b371dc36
3
+ size 14244
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a186b71086f828903e05acb940fa07cd341d3b04c6341c420a6a8de34cf919e8
3
+ size 1064
special_tokens_map.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": true,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": true,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<unk>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "unk_token": {
24
+ "content": "<unk>",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ }
30
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "added_tokens_decoder": {
5
+ "0": {
6
+ "content": "<unk>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "1": {
14
+ "content": "<s>",
15
+ "lstrip": false,
16
+ "normalized": true,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "2": {
22
+ "content": "</s>",
23
+ "lstrip": false,
24
+ "normalized": true,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ }
29
+ },
30
+ "bos_token": "<s>",
31
+ "clean_up_tokenization_spaces": false,
32
+ "eos_token": "</s>",
33
+ "max_length": 2048,
34
+ "model_max_length": 2048,
35
+ "pad_token": "<unk>",
36
+ "padding_side": "right",
37
+ "sp_model_kwargs": {},
38
+ "stride": 0,
39
+ "tokenizer_class": "LlamaTokenizer",
40
+ "truncation_side": "right",
41
+ "truncation_strategy": "longest_first",
42
+ "unk_token": "<unk>",
43
+ "use_default_system_prompt": true
44
+ }
trainer_state.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 0.9578926362003592,
5
+ "eval_steps": 500,
6
+ "global_step": 3600,
7
+ "is_hyper_param_search": false,
8
+ "is_local_process_zero": true,
9
+ "is_world_process_zero": true,
10
+ "log_history": [
11
+ {
12
+ "epoch": 0.13,
13
+ "learning_rate": 4.3374135178286325e-05,
14
+ "loss": 2.0021,
15
+ "step": 500
16
+ },
17
+ {
18
+ "epoch": 0.27,
19
+ "learning_rate": 3.672166045769026e-05,
20
+ "loss": 1.8135,
21
+ "step": 1000
22
+ },
23
+ {
24
+ "epoch": 0.4,
25
+ "learning_rate": 3.0069185737094202e-05,
26
+ "loss": 1.741,
27
+ "step": 1500
28
+ },
29
+ {
30
+ "epoch": 0.53,
31
+ "learning_rate": 2.3416711016498137e-05,
32
+ "loss": 1.668,
33
+ "step": 2000
34
+ },
35
+ {
36
+ "epoch": 0.67,
37
+ "learning_rate": 1.6764236295902076e-05,
38
+ "loss": 1.6507,
39
+ "step": 2500
40
+ },
41
+ {
42
+ "epoch": 0.8,
43
+ "learning_rate": 1.0111761575306015e-05,
44
+ "loss": 1.6073,
45
+ "step": 3000
46
+ },
47
+ {
48
+ "epoch": 0.93,
49
+ "learning_rate": 3.4592868547099525e-06,
50
+ "loss": 1.6171,
51
+ "step": 3500
52
+ }
53
+ ],
54
+ "logging_steps": 500,
55
+ "max_steps": 3758,
56
+ "num_input_tokens_seen": 0,
57
+ "num_train_epochs": 1,
58
+ "save_steps": 3600,
59
+ "total_flos": 2.00430839660544e+16,
60
+ "train_batch_size": 1,
61
+ "trial_name": null,
62
+ "trial_params": null
63
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27c7ae12e718ad98b8d628b7cffc5e45f93e8b3f4fd8b6fe5bea4e1871dea96a
3
+ size 4728