mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-10-31 23:28:51 +01:00
11 lines
204 B
Bash
11 lines
204 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
wget https://s3.amazonaws.com/research.metamind.io/wikitext/wikitext-103-raw-v1.zip
|
||
|
|
||
|
echo "Usage:"
|
||
|
echo ""
|
||
|
echo " ./perplexity -m model.gguf -f wiki.test.raw [other params]"
|
||
|
echo ""
|
||
|
|
||
|
exit 0
|