sebaweis commited on
Commit
d61454f
1 Parent(s): 79a866c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -8
README.md CHANGED
@@ -18,7 +18,7 @@ This version of the weights was trained with the following hyperparameters:
18
  - Batch size: 128
19
  - Micro batch size: 8
20
  - Learning rate: 3e-4
21
- - Lora _r_: 16
22
  - Lora target modules: query_key_value
23
 
24
  You can reproduce using this repository:
@@ -29,10 +29,9 @@ Make sure you install requirements and finetune using this command using the fol
29
 
30
  ```
31
  python finetune.py \
32
- --base-model='tiiuae/falcon-7b' \
33
- --num-epochs=6 \
34
- --output-dir='./jinaai/falcon-7b' \
35
- --lora-target-modules=query_key_value \
36
- --lora-r=16 \
37
- --micro-batch-size=8
38
- ```
 
18
  - Batch size: 128
19
  - Micro batch size: 8
20
  - Learning rate: 3e-4
21
+ - Lora _r_: 8
22
  - Lora target modules: query_key_value
23
 
24
  You can reproduce using this repository:
 
29
 
30
  ```
31
  python finetune.py \
32
+ --base-model tiiuae/falcon-7b --lora-target-modules query_key_value \
33
+ --data-path sahil2801/CodeAlpaca-20k --output-dir ./lora-alpaca-code \
34
+ --batch-size 128 --micro-batch-size 8 --eval-limit 45 \
35
+ --eval-file code_eval.jsonl --wandb-project jerboa --wandb-log-model \
36
+ --wandb-watch gradients --num-epochs 6
37
+ ```