Files
llama.cpp/scripts/get-wikitext-2.sh
T

12 lines
247 B
Bash
Raw Normal View History

2023-08-15 10:04:58 +03:00
#!/bin/bash
wget https://huggingface.co/datasets/ggml-org/ci/resolve/main/wikitext-2-raw-v1.zip
2024-04-13 11:33:52 +02:00
unzip wikitext-2-raw-v1.zip
2024-01-18 20:45:39 +02:00
echo "Usage:"
echo ""
2024-04-13 11:33:52 +02:00
echo " ./perplexity -m model.gguf -f wikitext-2-raw/wiki.test.raw [other params]"
2024-01-18 20:45:39 +02:00
echo ""
exit 0