DeepDream2045 commited on
Commit
b72f5ae
·
verified ·
1 Parent(s): 1bd2538

Training in progress, step 25

Browse files
adapter_config.json CHANGED
@@ -1,7 +1,7 @@
1
  {
2
  "alpha_pattern": {},
3
  "auto_mapping": null,
4
- "base_model_name_or_path": "JackFram/llama-68m",
5
  "bias": "none",
6
  "fan_in_fan_out": null,
7
  "inference_mode": true,
@@ -21,11 +21,11 @@
21
  "revision": null,
22
  "target_modules": [
23
  "k_proj",
24
- "v_proj",
25
- "up_proj",
26
  "o_proj",
27
- "down_proj",
28
  "q_proj",
 
 
29
  "gate_proj"
30
  ],
31
  "task_type": "CAUSAL_LM",
 
1
  {
2
  "alpha_pattern": {},
3
  "auto_mapping": null,
4
+ "base_model_name_or_path": "NousResearch/CodeLlama-7b-hf",
5
  "bias": "none",
6
  "fan_in_fan_out": null,
7
  "inference_mode": true,
 
21
  "revision": null,
22
  "target_modules": [
23
  "k_proj",
 
 
24
  "o_proj",
25
+ "up_proj",
26
  "q_proj",
27
+ "v_proj",
28
+ "down_proj",
29
  "gate_proj"
30
  ],
31
  "task_type": "CAUSAL_LM",
adapter_model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2b06af5f4d674e95da71d8fffbbebfe717c11fbc7ba9acccacaa9c760ce52d64
3
- size 4525640
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f27c2604d9e7337ab4542f90e0c89242a31d9836ee80ff314eb95bb23d00afed
3
+ size 319876032
config.json CHANGED
@@ -1,32 +1,33 @@
1
  {
2
  "_attn_implementation_autoset": true,
3
- "_name_or_path": "JackFram/llama-68m",
4
  "architectures": [
5
  "LlamaForCausalLM"
6
  ],
7
- "attention_bias": false,
8
- "attention_dropout": 0.0,
9
- "bos_token_id": 0,
 
 
 
 
10
  "eos_token_id": 2,
11
- "head_dim": 64,
12
  "hidden_act": "silu",
13
- "hidden_size": 768,
14
  "initializer_range": 0.02,
15
- "intermediate_size": 3072,
16
- "max_position_embeddings": 2048,
17
- "mlp_bias": false,
18
  "model_type": "llama",
19
- "num_attention_heads": 12,
20
- "num_hidden_layers": 2,
21
- "num_key_value_heads": 12,
22
- "pad_token_id": 1,
23
  "pretraining_tp": 1,
24
- "rms_norm_eps": 1e-06,
25
  "rope_scaling": null,
26
- "rope_theta": 10000.0,
27
  "tie_word_embeddings": false,
28
- "torch_dtype": "float32",
29
  "transformers_version": "4.46.0",
30
  "use_cache": false,
31
- "vocab_size": 32000
32
  }
 
1
  {
2
  "_attn_implementation_autoset": true,
3
+ "_name_or_path": "NousResearch/CodeLlama-7b-hf",
4
  "architectures": [
5
  "LlamaForCausalLM"
6
  ],
7
+ "auto_map": {
8
+ "AutoConfig": "NousResearch/CodeLlama-7b-hf--configuration_llama.LlamaConfig",
9
+ "AutoModel": "NousResearch/CodeLlama-7b-hf--modeling_llama.LlamaModel",
10
+ "AutoModelForCausalLM": "NousResearch/CodeLlama-7b-hf--modeling_llama.LlamaForCausalLM",
11
+ "AutoModelForSequenceClassification": "NousResearch/CodeLlama-7b-hf--modeling_llama.LlamaForSequenceClassification"
12
+ },
13
+ "bos_token_id": 1,
14
  "eos_token_id": 2,
 
15
  "hidden_act": "silu",
16
+ "hidden_size": 4096,
17
  "initializer_range": 0.02,
18
+ "intermediate_size": 11008,
19
+ "max_position_embeddings": 16384,
 
20
  "model_type": "llama",
21
+ "num_attention_heads": 32,
22
+ "num_hidden_layers": 32,
23
+ "num_key_value_heads": 32,
 
24
  "pretraining_tp": 1,
25
+ "rms_norm_eps": 1e-05,
26
  "rope_scaling": null,
27
+ "rope_theta": 1000000,
28
  "tie_word_embeddings": false,
29
+ "torch_dtype": "float16",
30
  "transformers_version": "4.46.0",
31
  "use_cache": false,
32
+ "vocab_size": 32016
33
  }
special_tokens_map.json CHANGED
@@ -2,14 +2,14 @@
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
  },
@@ -23,7 +23,7 @@
23
  "unk_token": {
24
  "content": "<unk>",
25
  "lstrip": false,
26
- "normalized": true,
27
  "rstrip": false,
28
  "single_word": false
29
  }
 
2
  "bos_token": {
3
  "content": "<s>",
4
  "lstrip": false,
5
+ "normalized": false,
6
  "rstrip": false,
7
  "single_word": false
8
  },
9
  "eos_token": {
10
  "content": "</s>",
11
  "lstrip": false,
12
+ "normalized": false,
13
  "rstrip": false,
14
  "single_word": false
15
  },
 
23
  "unk_token": {
24
  "content": "<unk>",
25
  "lstrip": false,
26
+ "normalized": false,
27
  "rstrip": false,
28
  "single_word": false
29
  }
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer.model CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
3
- size 499723
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45ccb9c8b6b561889acea59191d66986d314e7cbd6a78abc6e49b139ca91c1e6
3
+ size 500058
tokenizer_config.json CHANGED
@@ -1,12 +1,12 @@
1
  {
2
  "add_bos_token": true,
3
  "add_eos_token": false,
4
- "add_prefix_space": true,
5
  "added_tokens_decoder": {
6
  "0": {
7
  "content": "<unk>",
8
  "lstrip": false,
9
- "normalized": true,
10
  "rstrip": false,
11
  "single_word": false,
12
  "special": true
@@ -14,7 +14,7 @@
14
  "1": {
15
  "content": "<s>",
16
  "lstrip": false,
17
- "normalized": true,
18
  "rstrip": false,
19
  "single_word": false,
20
  "special": true
@@ -36,9 +36,7 @@
36
  "model_max_length": 1000000000000000019884624838656,
37
  "pad_token": "</s>",
38
  "sp_model_kwargs": {},
39
- "spaces_between_special_tokens": false,
40
  "tokenizer_class": "LlamaTokenizer",
41
  "unk_token": "<unk>",
42
- "use_default_system_prompt": false,
43
- "use_fast": true
44
  }
 
1
  {
2
  "add_bos_token": true,
3
  "add_eos_token": false,
4
+ "add_prefix_space": null,
5
  "added_tokens_decoder": {
6
  "0": {
7
  "content": "<unk>",
8
  "lstrip": false,
9
+ "normalized": false,
10
  "rstrip": false,
11
  "single_word": false,
12
  "special": true
 
14
  "1": {
15
  "content": "<s>",
16
  "lstrip": false,
17
+ "normalized": false,
18
  "rstrip": false,
19
  "single_word": false,
20
  "special": true
 
36
  "model_max_length": 1000000000000000019884624838656,
37
  "pad_token": "</s>",
38
  "sp_model_kwargs": {},
 
39
  "tokenizer_class": "LlamaTokenizer",
40
  "unk_token": "<unk>",
41
+ "use_default_system_prompt": false
 
42
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:14e530752f6a359422ae7d8a515ed8850b278aab111a89e772d281ad9c894bfc
3
  size 6776
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:10fa75858312944c66542aee6d6a3e31ea121a457c0727d1a86e3c74f020b648
3
  size 6776