Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf boapro/WRT_II:Q4_K_S# Run inference directly in the terminal:
llama-cli -hf boapro/WRT_II:Q4_K_SUse pre-built binary
# Download pre-built binary from:
# https://github.com/ggerganov/llama.cpp/releases# Start a local OpenAI-compatible server with a web UI:
./llama-server -hf boapro/WRT_II:Q4_K_S# Run inference directly in the terminal:
./llama-cli -hf boapro/WRT_II:Q4_K_SBuild from source code
git clone https://github.com/ggerganov/llama.cpp.git
cd llama.cpp
cmake -B build
cmake --build build -j --target llama-server llama-cli# Start a local OpenAI-compatible server with a web UI:
./build/bin/llama-server -hf boapro/WRT_II:Q4_K_S# Run inference directly in the terminal:
./build/bin/llama-cli -hf boapro/WRT_II:Q4_K_SUse Docker
docker model run hf.co/boapro/WRT_II:Q4_K_SLlamacpp imatrix Quantizations of meta-llama/Llama-3.1-8B
Using llama.cpp release b3878 for quantization.
Original model: https://huggingface.co/meta-llama/Llama-3.1-8B
Run it in LM Studio
Prompt format
<|begin_of_text|><|start_header_id|>system<|end_header_id|>
{system_prompt}<|eot_id|><|start_header_id|>user<|end_header_id|>
{prompt}<|eot_id|><|start_header_id|>assistant<|end_header_id|>
Downloading using huggingface-cli
First, make sure you have hugginface-cli installed:
pip install -U "huggingface_hub[cli]"
Then, you can target the specific file you want:
If the model is bigger than 50GB, it will have been split into multiple files. In order to download them all to a local folder, run:
You can either specify a new local-dir (boapro/WRT_II) or download them all in place (./)
Q4_0_X_X
If you're using an ARM chip, the Q4_0_X_X quants will have a substantial speedup. Check out Q4_0_4_4 speed comparisons on the original pull request
To check which one would work best for your ARM chip, you can check AArch64 SoC features (thanks EloyOn!).
If you want to get more into the weeds, you can check out this extremely useful feature chart:
- Downloads last month
- 5
4-bit
Model tree for boapro/WRT_II
Base model
meta-llama/Llama-3.1-8B
Install from brew
# Start a local OpenAI-compatible server with a web UI: llama-server -hf boapro/WRT_II:Q4_K_S# Run inference directly in the terminal: llama-cli -hf boapro/WRT_II:Q4_K_S