marianbasti commited on
Commit
d44d431
1 Parent(s): 229454a

Upload files

Browse files
adapter_config.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "base_model_name_or_path": "models\\Llama-2-13B-fp16-padded",
3
+ "bias": "none",
4
+ "fan_in_fan_out": false,
5
+ "inference_mode": true,
6
+ "init_lora_weights": true,
7
+ "lora_alpha": 1024,
8
+ "lora_dropout": 0.05,
9
+ "modules_to_save": null,
10
+ "peft_type": "LORA",
11
+ "r": 512,
12
+ "target_modules": [
13
+ "q_proj",
14
+ "v_proj"
15
+ ],
16
+ "task_type": "CAUSAL_LM"
17
+ }
adapter_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41b8c8f70eb9d8b7204d0999f8e317c32f0d3d5efe09fc764b1938e7b133ca73
3
+ size 1677779533
training_log.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "base_model_name": "Llama-2-13B-fp16-padded",
3
+ "base_model_class": "LlamaForCausalLM",
4
+ "base_loaded_in_4bit": true,
5
+ "base_loaded_in_8bit": false,
6
+ "projections": "q, v",
7
+ "loss": 1.07,
8
+ "learning_rate": 1.7080653142008908e-05,
9
+ "epoch": 0.74,
10
+ "current_steps": 9678,
11
+ "train_runtime": 20262.2951,
12
+ "train_samples_per_second": 12.817,
13
+ "train_steps_per_second": 0.1,
14
+ "total_flos": 4.119249176808653e+17,
15
+ "train_loss": 1.1322209582423532
16
+ }
training_parameters.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lora_name": "alpaca",
3
+ "always_override": false,
4
+ "save_steps": 0.0,
5
+ "micro_batch_size": 4,
6
+ "batch_size": 128,
7
+ "epochs": 5.0,
8
+ "learning_rate": "2e-5",
9
+ "lr_scheduler_type": "linear",
10
+ "lora_rank": 512,
11
+ "lora_alpha": 1024,
12
+ "lora_dropout": 0.05,
13
+ "cutoff_len": 256,
14
+ "dataset": "alpaca_data_cleaned_spanish",
15
+ "eval_dataset": "None",
16
+ "format": "alpaca-chatbot-format",
17
+ "eval_steps": 100.0,
18
+ "raw_text_file": "None",
19
+ "overlap_len": 128,
20
+ "newline_favor_len": 128,
21
+ "higher_rank_limit": false,
22
+ "warmup_steps": 100.0,
23
+ "optimizer": "adamw_torch",
24
+ "hard_cut_string": "\\n\\n\\n",
25
+ "train_only_after": "",
26
+ "stop_at_loss": 0,
27
+ "add_eos_token": false,
28
+ "min_chars": 0.0,
29
+ "report_to": "None"
30
+ }
training_prompt.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "template_type": "dataset",
3
+ "template_1": "User: %instruction%\nAssistant: %output%",
4
+ "template_2": "User: %instruction%: %input%\nAssistant: %output%"
5
+ }