File size: 1,082 Bytes
6b7dd5a
 
 
 
 
 
 
2d789f7
 
0348ceb
 
2d789f7
ba6030e
 
 
 
 
 
 
2d789f7
 
ba6030e
 
 
 
 
 
 
 
 
2d789f7
6b7dd5a
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
license: mit
datasets:
- yahma/alpaca-cleaned
language:
- en
---
This repo contains a low-rank adapter for LLaMA-13b fit on the Stanford Alpaca dataset.

This version of the weights was trained on a dual RTX3090 system, powered by solar energy. Total training time was about 24 hours.  
The following hyperparameters were used:

Epochs: 10  
Batch size: 128  
Cutoff length: 256  
Learning rate: 3e-4  
Lora r: 16  
Lora alpha: 16  
Lora target modules: q_proj, k_proj, v_proj, o_proj  
That is:

OMP_NUM_THREADS=4 WORLD_SIZE=2 CUDA_VISIBLE_DEVICES=0,1 torchrun --nproc_per_node=2 --master_port=1234 finetune.py \  
    --base_model='decapoda-research/llama-13b-hf' \  
    --data_path="yahma/alpaca-cleaned' \  
    --num_epochs=10 \  
    --output_dir='./lora-alpaca-13b-256-qkvo' \  
    --lora_target_modules='[q_proj,k_proj,v_proj,o_proj]' \  
    --lora_r=16 \  
    --val_set_size=0 \  
    --micro_batch_size=32  

LR warmup was tuned to fit the first epoch.

Instructions for running it can be found at https://github.com/tloen/alpaca-lora.

![10 epochs](alpaca13b.png)