ibibek commited on
Commit
4e4d386
·
verified ·
1 Parent(s): bbf1c67

Training in progress, epoch 0

Browse files
adapter_config.json CHANGED
@@ -1,7 +1,7 @@
1
  {
2
  "alpha_pattern": {},
3
  "auto_mapping": null,
4
- "base_model_name_or_path": "google/gemma-2b-it",
5
  "bias": "none",
6
  "fan_in_fan_out": false,
7
  "inference_mode": true,
@@ -20,10 +20,11 @@
20
  "revision": null,
21
  "target_modules": [
22
  "v_proj",
23
- "o_proj",
24
  "k_proj",
25
- "q_proj"
26
  ],
27
  "task_type": "CAUSAL_LM",
 
28
  "use_rslora": false
29
  }
 
1
  {
2
  "alpha_pattern": {},
3
  "auto_mapping": null,
4
+ "base_model_name_or_path": "TinyLlama/TinyLlama-1.1B-Chat-v1.0",
5
  "bias": "none",
6
  "fan_in_fan_out": false,
7
  "inference_mode": true,
 
20
  "revision": null,
21
  "target_modules": [
22
  "v_proj",
23
+ "q_proj",
24
  "k_proj",
25
+ "o_proj"
26
  ],
27
  "task_type": "CAUSAL_LM",
28
+ "use_dora": false,
29
  "use_rslora": false
30
  }
adapter_model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a480e1ab3f1190230012304e680ef32897cf6e0024ca0f48809795d6b009d046
3
- size 7391688
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bea37fff7ace62575b2989cb54f23092e9d5822e0b098b5f26817e09405ec070
3
+ size 9034304
special_tokens_map.json CHANGED
@@ -1,23 +1,19 @@
1
  {
2
- "additional_special_tokens": [
3
- "<start_of_turn>",
4
- "<end_of_turn>"
5
- ],
6
  "bos_token": {
7
- "content": "<bos>",
8
  "lstrip": false,
9
  "normalized": false,
10
  "rstrip": false,
11
  "single_word": false
12
  },
13
  "eos_token": {
14
- "content": "<eos>",
15
  "lstrip": false,
16
  "normalized": false,
17
  "rstrip": false,
18
  "single_word": false
19
  },
20
- "pad_token": "<eos>",
21
  "unk_token": {
22
  "content": "<unk>",
23
  "lstrip": false,
 
1
  {
 
 
 
 
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
  },
16
+ "pad_token": "</s>",
17
  "unk_token": {
18
  "content": "<unk>",
19
  "lstrip": false,
tokenizer.json CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:861eff971cfc5e6ccabf75148657b0c34fc939c5caf491eb3126ff6b2c5c42c1
3
- size 17478028
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3cf9f0e73545c00e1f85ad45698f364ca47da10e09cb222de1599ccbf7a45081
3
+ size 1842866
tokenizer_config.json CHANGED
@@ -3,7 +3,7 @@
3
  "add_eos_token": false,
4
  "added_tokens_decoder": {
5
  "0": {
6
- "content": "<pad>",
7
  "lstrip": false,
8
  "normalized": false,
9
  "rstrip": false,
@@ -11,7 +11,7 @@
11
  "special": true
12
  },
13
  "1": {
14
- "content": "<eos>",
15
  "lstrip": false,
16
  "normalized": false,
17
  "rstrip": false,
@@ -19,31 +19,7 @@
19
  "special": true
20
  },
21
  "2": {
22
- "content": "<bos>",
23
- "lstrip": false,
24
- "normalized": false,
25
- "rstrip": false,
26
- "single_word": false,
27
- "special": true
28
- },
29
- "3": {
30
- "content": "<unk>",
31
- "lstrip": false,
32
- "normalized": false,
33
- "rstrip": false,
34
- "single_word": false,
35
- "special": true
36
- },
37
- "106": {
38
- "content": "<start_of_turn>",
39
- "lstrip": false,
40
- "normalized": false,
41
- "rstrip": false,
42
- "single_word": false,
43
- "special": true
44
- },
45
- "107": {
46
- "content": "<end_of_turn>",
47
  "lstrip": false,
48
  "normalized": false,
49
  "rstrip": false,
@@ -51,20 +27,16 @@
51
  "special": true
52
  }
53
  },
54
- "additional_special_tokens": [
55
- "<start_of_turn>",
56
- "<end_of_turn>"
57
- ],
58
- "bos_token": "<bos>",
59
- "chat_template": "{{ bos_token }}{% if messages[0]['role'] == 'system' %}{{ raise_exception('System role not supported') }}{% endif %}{% for message in messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if (message['role'] == 'assistant') %}{% set role = 'model' %}{% else %}{% set role = message['role'] %}{% endif %}{{ '<start_of_turn>' + role + '\n' + message['content'] | trim + '<end_of_turn>\n' }}{% endfor %}{% if add_generation_prompt %}{{'<start_of_turn>model\n'}}{% endif %}",
60
  "clean_up_tokenization_spaces": false,
61
- "eos_token": "<eos>",
62
- "legacy": null,
63
- "model_max_length": 1000000000000000019884624838656,
64
- "pad_token": "<eos>",
 
65
  "sp_model_kwargs": {},
66
- "spaces_between_special_tokens": false,
67
- "tokenizer_class": "GemmaTokenizer",
68
  "unk_token": "<unk>",
69
  "use_default_system_prompt": false
70
  }
 
3
  "add_eos_token": false,
4
  "added_tokens_decoder": {
5
  "0": {
6
+ "content": "<unk>",
7
  "lstrip": false,
8
  "normalized": false,
9
  "rstrip": false,
 
11
  "special": true
12
  },
13
  "1": {
14
+ "content": "<s>",
15
  "lstrip": false,
16
  "normalized": false,
17
  "rstrip": false,
 
19
  "special": true
20
  },
21
  "2": {
22
+ "content": "</s>",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  "lstrip": false,
24
  "normalized": false,
25
  "rstrip": false,
 
27
  "special": true
28
  }
29
  },
30
+ "bos_token": "<s>",
31
+ "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 %}",
 
 
 
 
32
  "clean_up_tokenization_spaces": false,
33
+ "eos_token": "</s>",
34
+ "legacy": false,
35
+ "model_max_length": 2048,
36
+ "pad_token": "</s>",
37
+ "padding_side": "right",
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:a6904e046e9122ea6a909f3932ab9793a8a47340c0da611d09923ba3fdbd3f4f
3
  size 4920
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:78688d623ac4d65cae202be9308ca3e522397a484dca4d792c4930b50729467a
3
  size 4920