summaryrefslogtreecommitdiff
path: root/scripts/get-wikitext-2.sh
blob: b01476a46015ac3a24424c2e3f38d5211675ed74 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

wget https://huggingface.co/datasets/ggml-org/ci/resolve/main/wikitext-2-raw-v1.zip
unzip wikitext-2-raw-v1.zip

echo "Usage:"
echo ""
echo "  ./perplexity -m model.gguf -f wikitext-2-raw/wiki.test.raw [other params]"
echo ""

exit 0