mkopecki commited on
Commit
a014297
1 Parent(s): 19354db

Training in progress, step 500

Browse files
adapter_config.json CHANGED
@@ -1,7 +1,7 @@
1
  {
2
  "alpha_pattern": {},
3
  "auto_mapping": null,
4
- "base_model_name_or_path": "meta-llama/Meta-Llama-3-8B",
5
  "bias": "none",
6
  "fan_in_fan_out": false,
7
  "inference_mode": true,
@@ -16,17 +16,17 @@
16
  "megatron_core": "megatron.core",
17
  "modules_to_save": null,
18
  "peft_type": "LORA",
19
- "r": 16,
20
  "rank_pattern": {},
21
  "revision": null,
22
  "target_modules": [
23
- "k_proj",
 
24
  "q_proj",
25
  "up_proj",
 
26
  "o_proj",
27
- "down_proj",
28
- "gate_proj",
29
- "v_proj"
30
  ],
31
  "task_type": "CAUSAL_LM",
32
  "use_dora": false,
 
1
  {
2
  "alpha_pattern": {},
3
  "auto_mapping": null,
4
+ "base_model_name_or_path": "meta-llama/Meta-Llama-3-8B-Instruct",
5
  "bias": "none",
6
  "fan_in_fan_out": false,
7
  "inference_mode": true,
 
16
  "megatron_core": "megatron.core",
17
  "modules_to_save": null,
18
  "peft_type": "LORA",
19
+ "r": 128,
20
  "rank_pattern": {},
21
  "revision": null,
22
  "target_modules": [
23
+ "down_proj",
24
+ "gate_proj",
25
  "q_proj",
26
  "up_proj",
27
+ "v_proj",
28
  "o_proj",
29
+ "k_proj"
 
 
30
  ],
31
  "task_type": "CAUSAL_LM",
32
  "use_dora": false,
adapter_model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a7c1d57ef1af02622d9229ce7a326907af8b91303b85bade0c79b9fe5773faf6
3
- size 167832240
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac9fe8124dab0a7b6cbefd18116896f74607adc3059aa9292828dd90fb3803cc
3
+ size 5544997664
runs/Jul14_17-00-25_ml-cluster/events.out.tfevents.1720976433.ml-cluster ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f6e569eea8199281c2dfe7bda04b7445f9a51d75a33d7d28099c7df517d282e5
3
+ size 6302
special_tokens_map.json CHANGED
@@ -1,23 +1,21 @@
1
  {
2
- "bos_token": {
3
- "content": "<|begin_of_text|>",
4
- "lstrip": false,
5
- "normalized": false,
6
- "rstrip": false,
7
- "single_word": false
8
- },
9
- "eos_token": {
10
- "content": "<|end_of_text|>",
11
- "lstrip": false,
12
- "normalized": false,
13
- "rstrip": false,
14
- "single_word": false
15
- },
16
- "pad_token": {
17
- "content": "[PAD]",
18
- "lstrip": false,
19
- "normalized": false,
20
- "rstrip": false,
21
- "single_word": false
22
- }
23
  }
 
1
  {
2
+ "additional_special_tokens": [
3
+ {
4
+ "content": "<|im_start|>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false
9
+ },
10
+ {
11
+ "content": "<|im_end|>",
12
+ "lstrip": false,
13
+ "normalized": false,
14
+ "rstrip": false,
15
+ "single_word": false
16
+ }
17
+ ],
18
+ "bos_token": "<|im_start|>",
19
+ "eos_token": "<|im_end|>",
20
+ "pad_token": "<|im_end|>"
 
 
21
  }
tokenizer.json CHANGED
@@ -2314,7 +2314,16 @@
2314
  },
2315
  {
2316
  "id": 128256,
2317
- "content": "[PAD]",
 
 
 
 
 
 
 
 
 
2318
  "single_word": false,
2319
  "lstrip": false,
2320
  "rstrip": false,
 
2314
  },
2315
  {
2316
  "id": 128256,
2317
+ "content": "<|im_start|>",
2318
+ "single_word": false,
2319
+ "lstrip": false,
2320
+ "rstrip": false,
2321
+ "normalized": false,
2322
+ "special": true
2323
+ },
2324
+ {
2325
+ "id": 128257,
2326
+ "content": "<|im_end|>",
2327
  "single_word": false,
2328
  "lstrip": false,
2329
  "rstrip": false,
tokenizer_config.json CHANGED
@@ -2049,7 +2049,15 @@
2049
  "special": true
2050
  },
2051
  "128256": {
2052
- "content": "[PAD]",
 
 
 
 
 
 
 
 
2053
  "lstrip": false,
2054
  "normalized": false,
2055
  "rstrip": false,
@@ -2057,14 +2065,19 @@
2057
  "special": true
2058
  }
2059
  },
2060
- "bos_token": "<|begin_of_text|>",
 
 
 
 
 
2061
  "clean_up_tokenization_spaces": true,
2062
- "eos_token": "<|end_of_text|>",
2063
  "model_input_names": [
2064
  "input_ids",
2065
  "attention_mask"
2066
  ],
2067
  "model_max_length": 1000000000000000019884624838656,
2068
- "pad_token": "[PAD]",
2069
  "tokenizer_class": "PreTrainedTokenizerFast"
2070
  }
 
2049
  "special": true
2050
  },
2051
  "128256": {
2052
+ "content": "<|im_start|>",
2053
+ "lstrip": false,
2054
+ "normalized": false,
2055
+ "rstrip": false,
2056
+ "single_word": false,
2057
+ "special": true
2058
+ },
2059
+ "128257": {
2060
+ "content": "<|im_end|>",
2061
  "lstrip": false,
2062
  "normalized": false,
2063
  "rstrip": false,
 
2065
  "special": true
2066
  }
2067
  },
2068
+ "additional_special_tokens": [
2069
+ "<|im_start|>",
2070
+ "<|im_end|>"
2071
+ ],
2072
+ "bos_token": "<|im_start|>",
2073
+ "chat_template": "{% for message in messages %}{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant\n' }}{% endif %}",
2074
  "clean_up_tokenization_spaces": true,
2075
+ "eos_token": "<|im_end|>",
2076
  "model_input_names": [
2077
  "input_ids",
2078
  "attention_mask"
2079
  ],
2080
  "model_max_length": 1000000000000000019884624838656,
2081
+ "pad_token": "<|im_end|>",
2082
  "tokenizer_class": "PreTrainedTokenizerFast"
2083
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2e2008df619968f860bea0ef68062b4745c3ab9910343223e27015d96b4ec03d
3
  size 5432
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f0e6f3c363821084a6d606990254d5b42965195600b3d1b40c019958ae101be
3
  size 5432