SystemAdmin123 commited on
Commit
19bbf3b
·
verified ·
1 Parent(s): 9b16713

Training in progress, step 200

Browse files
axolotl_config.yaml CHANGED
@@ -1,5 +1,5 @@
1
- base_model: TinyLlama/TinyLlama-1.1B-Chat-v1.0
2
- batch_size: 96
3
  bf16: true
4
  chat_template: tokenizer_default_fallback_alpaca
5
  datasets:
@@ -25,7 +25,7 @@ learning_rate: 0.0002
25
  logging_steps: 10
26
  lr_scheduler: cosine
27
  max_steps: 20000
28
- micro_batch_size: 12
29
  model_type: AutoModelForCausalLM
30
  num_epochs: 100
31
  optimizer: adamw_bnb_8bit
@@ -42,7 +42,7 @@ trust_remote_code: true
42
  val_set_size: 0.1
43
  wandb_entity: ''
44
  wandb_mode: online
45
- wandb_name: TinyLlama/TinyLlama-1.1B-Chat-v1.0-argilla/databricks-dolly-15k-curated-en
46
  wandb_project: Gradients-On-Demand
47
  wandb_run: your_name
48
  wandb_runid: default
 
1
+ base_model: trl-internal-testing/tiny-random-LlamaForCausalLM
2
+ batch_size: 256
3
  bf16: true
4
  chat_template: tokenizer_default_fallback_alpaca
5
  datasets:
 
25
  logging_steps: 10
26
  lr_scheduler: cosine
27
  max_steps: 20000
28
+ micro_batch_size: 32
29
  model_type: AutoModelForCausalLM
30
  num_epochs: 100
31
  optimizer: adamw_bnb_8bit
 
42
  val_set_size: 0.1
43
  wandb_entity: ''
44
  wandb_mode: online
45
+ wandb_name: trl-internal-testing/tiny-random-LlamaForCausalLM-argilla/databricks-dolly-15k-curated-en
46
  wandb_project: Gradients-On-Demand
47
  wandb_run: your_name
48
  wandb_runid: default
config.json CHANGED
@@ -1,25 +1,26 @@
1
  {
2
- "_name_or_path": "TinyLlama/TinyLlama-1.1B-Chat-v1.0",
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
- "head_dim": 64,
11
  "hidden_act": "silu",
12
- "hidden_size": 2048,
13
  "initializer_range": 0.02,
14
- "intermediate_size": 5632,
15
  "max_position_embeddings": 2048,
16
  "mlp_bias": false,
17
  "model_type": "llama",
18
- "num_attention_heads": 32,
19
- "num_hidden_layers": 22,
20
  "num_key_value_heads": 4,
 
21
  "pretraining_tp": 1,
22
- "rms_norm_eps": 1e-05,
23
  "rope_scaling": null,
24
  "rope_theta": 10000.0,
25
  "tie_word_embeddings": false,
 
1
  {
2
+ "_name_or_path": "trl-internal-testing/tiny-random-LlamaForCausalLM",
3
  "architectures": [
4
  "LlamaForCausalLM"
5
  ],
6
  "attention_bias": false,
7
  "attention_dropout": 0.0,
8
+ "bos_token_id": 0,
9
  "eos_token_id": 2,
10
+ "head_dim": 4,
11
  "hidden_act": "silu",
12
+ "hidden_size": 16,
13
  "initializer_range": 0.02,
14
+ "intermediate_size": 64,
15
  "max_position_embeddings": 2048,
16
  "mlp_bias": false,
17
  "model_type": "llama",
18
+ "num_attention_heads": 4,
19
+ "num_hidden_layers": 2,
20
  "num_key_value_heads": 4,
21
+ "pad_token_id": -1,
22
  "pretraining_tp": 1,
23
+ "rms_norm_eps": 1e-06,
24
  "rope_scaling": null,
25
  "rope_theta": 10000.0,
26
  "tie_word_embeddings": false,
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9f733e9041aab06f212569d2073af6e6c0acf30fcc84bec18f30feab19bc086f
3
- size 2200119864
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:23835aa3baa0dcf892abf69863f1f0c1ea20a2c3908d99240a722cf7177381d0
3
+ size 2066752
special_tokens_map.json CHANGED
@@ -14,7 +14,7 @@
14
  "single_word": false
15
  },
16
  "pad_token": {
17
- "content": "</s>",
18
  "lstrip": false,
19
  "normalized": false,
20
  "rstrip": false,
 
14
  "single_word": false
15
  },
16
  "pad_token": {
17
+ "content": "<unk>",
18
  "lstrip": false,
19
  "normalized": false,
20
  "rstrip": false,
tokenizer.json CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c88bda6bdd84543eadebdf4bd2ec325ae43b71a3ff1fead6a766562c00b29bd8
3
- size 3619016
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d606f46a8aa6f29f0a0abdec7c3ffddefc9f9bfe26919532d209a0a850e25029
3
+ size 3619013
tokenizer_config.json CHANGED
@@ -29,17 +29,15 @@
29
  }
30
  },
31
  "bos_token": "<s>",
32
- "chat_template": "{% for message in messages %}\n{% if message['role'] == 'user' %}\n{{ '<|user|>\n' + message['content'] + eos_token }}\n{% elif message['role'] == 'system' %}\n{{ '<|system|>\n' + message['content'] + eos_token }}\n{% elif message['role'] == 'assistant' %}\n{{ '<|assistant|>\n' + message['content'] + eos_token }}\n{% endif %}\n{% if loop.last and add_generation_prompt %}\n{{ '<|assistant|>' }}\n{% endif %}\n{% endfor %}",
33
  "clean_up_tokenization_spaces": false,
34
  "eos_token": "</s>",
35
  "extra_special_tokens": {},
36
- "legacy": false,
37
  "model_max_length": 2048,
38
- "pad_token": "</s>",
39
- "padding_side": "right",
40
- "sp_model_kwargs": {},
41
  "tokenizer_class": "LlamaTokenizer",
42
  "unk_token": "<unk>",
43
- "use_default_system_prompt": false,
44
  "use_fast": true
45
  }
 
29
  }
30
  },
31
  "bos_token": "<s>",
32
+ "chat_template": "{% for message in messages %}{% if message['role'] == 'user' %}{{ '### Instruction: ' + message['content'] + '\n\n' }}{% elif message['role'] == 'assistant' %}{{ '### Response: ' + message['content'] + eos_token}}{% endif %}{% endfor %}",
33
  "clean_up_tokenization_spaces": false,
34
  "eos_token": "</s>",
35
  "extra_special_tokens": {},
36
+ "legacy": true,
37
  "model_max_length": 2048,
38
+ "pad_token": "<unk>",
 
 
39
  "tokenizer_class": "LlamaTokenizer",
40
  "unk_token": "<unk>",
41
+ "use_default_system_prompt": true,
42
  "use_fast": true
43
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:917005e54e6a74be4d5bc3c0309ff36483f7719e494b126c6cee70ee375d0421
3
- size 7032
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c9e9fca0c23d9cd44121007d8469411a44af500190e6fe6533d8ba7e8ebaeafa
3
+ size 6840