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