mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-10-31 23:28:51 +01:00
11 lines
286 B
Bash
11 lines
286 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
wget https://huggingface.co/datasets/ikawrakow/winogrande-eval-for-llama.cpp/raw/main/winogrande-debiased-eval.csv
|
||
|
|
||
|
echo "Usage:"
|
||
|
echo ""
|
||
|
echo " ./perplexity -m model.gguf -f winogrande-debiased-eval.csv --winogrande [--winogrande-tasks N] [other params]"
|
||
|
echo ""
|
||
|
|
||
|
exit 0
|