JustinLin610 commited on
Commit
e37a612
1 Parent(s): d084ded

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -0
README.md CHANGED
@@ -70,6 +70,19 @@ If you choose to use `llama-cli`, pay attention to the removal of `-cml` for the
70
  ./llama-cli -m qwen2-1.5b-instruct-q5_k_m.gguf -n 512 -co -i -if -f prompts/chat-with-qwen.txt --in-prefix "<|im_start|>user\n" --in-suffix "<|im_end|>\n<|im_start|>assistant\n"
71
  ```
72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
 
74
  ## Citation
75
 
 
70
  ./llama-cli -m qwen2-1.5b-instruct-q5_k_m.gguf -n 512 -co -i -if -f prompts/chat-with-qwen.txt --in-prefix "<|im_start|>user\n" --in-suffix "<|im_end|>\n<|im_start|>assistant\n"
71
  ```
72
 
73
+ Evaluation
74
+
75
+ We implement perplexity evaluation using wikitext following the practice of `llama.cpp` with `./llama-perplexity` (the previous `./perplexity`).
76
+ In the following we report the PPL of GGUF models of different sizes and different quantization levels.
77
+
78
+ |Size | fp16 | q8_0 | q6_k | q5_k_m | q5_0 | q4_k_m | q4_0 | q3_k_m | q2_k | iq1_m |
79
+ |--------|---------|---------|---------|---------|---------|---------|---------|---------|---------|---------|
80
+ |0.5B | 15.11 | 15.13 | 15.14 | 15.24 | 15.40 | 15.36 | 16.28 | 15.70 | 16.74 | - |
81
+ |1.5B | 10.43 | 10.43 | 10.45 | 10.50 | 10.56 | 10.61 | 10.79 | 11.08 | 13.04 | - |
82
+ |7B | 7.93 | 7.94 | 7.96 | 7.97 | 7.98 | 8.02 | 8.19 | 8.20 | 10.58 | - |
83
+ |57B-A14B| 6.82 | 6.81 | 6.82 | 6.83 | 6.90 | 6.99 | 7.02 | 7.43 | - | - |
84
+ |72B | 5.58 | 5.58 | 5.59 | 5.59 | 5.60 | 5.61 | 5.66 | 5.68 | 5.91 | 6.75 |
85
+
86
 
87
  ## Citation
88