vantaa32 commited on
Commit
66d192a
·
verified ·
1 Parent(s): 327c5cc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -0
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