get-wikitext-2.sh 253 B

1234567891011
  1. #!/bin/bash
  2. wget https://huggingface.co/datasets/ggml-org/ci/resolve/main/wikitext-2-raw-v1.zip
  3. unzip wikitext-2-raw-v1.zip
  4. echo "Usage:"
  5. echo ""
  6. echo " ./llama-perplexity -m model.gguf -f wikitext-2-raw/wiki.test.raw [other params]"
  7. echo ""
  8. exit 0