Update README.md
Browse files
README.md
CHANGED
@@ -5,6 +5,29 @@ library_name: peft
|
|
5 |
|
6 |
# Model Card for Model ID
|
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
<!-- Provide a quick summary of what the model is/does. -->
|
9 |
|
10 |
|
|
|
5 |
|
6 |
# Model Card for Model ID
|
7 |
|
8 |
+
This is a LLaMA-2-7B model fine-tuned using FourierFT on alpaca dataset.
|
9 |
+
|
10 |
+
Hyperparameters are set as follows:
|
11 |
+
|
12 |
+
```
|
13 |
+
python fourierft-alpaca.py \
|
14 |
+
--warmup_ratio 0.06 \
|
15 |
+
--num_train_epochs 2 \
|
16 |
+
--seed 0 \
|
17 |
+
--per_device_train_batch_size 2 \
|
18 |
+
--gradient_accumulation_steps 32 \
|
19 |
+
--output_dir './results' \
|
20 |
+
--eval_strategy "epoch" \
|
21 |
+
--mixed_precision "bf16" \
|
22 |
+
--lr_scheduler_type "linear" \
|
23 |
+
--learning_rate 3e-4 \
|
24 |
+
--logging_steps 10 \
|
25 |
+
--report_to "none" \
|
26 |
+
--fourier_scale 512 \
|
27 |
+
--fourier_n_frequency 10000
|
28 |
+
```
|
29 |
+
|
30 |
+
|
31 |
<!-- Provide a quick summary of what the model is/does. -->
|
32 |
|
33 |
|