Views
No views yet
| File | Size | Use Case |
|---|---|---|
| Q4_K_M | ~4.5GB | Best balance - most popular |
| Q5_K_M | ~5.5GB | Higher quality, slightly larger |
| F16 | ~15GB | Full precision (for further quantization) |
./llama-cli -m xLAM-f16.gguf -p "Your prompt here"1from llama_cpp import Llama
2
3llm = Llama(
4 model_path="Llama-3.1-8B-Blasphemer-Q4_K_M.gguf",
5 n_ctx=8192,
6 n_gpu_layers=-1 # Use GPU
7)
8
9response = llm("Your prompt here", max_tokens=512)
10print(response['choices'][0]['text'])1@software{blasphemer2024,
2 author = {Bradford, Christopher},
3 title = {Blasphemer: Abliteration for Language Models},
4 year = {2024},
5 url = {https://github.com/sunkencity999/blasphemer}
6}
7
8@article{arditi2024refusal,
9 title={Refusal in Language Models Is Mediated by a Single Direction},
10 author={Arditi, Andy and Obmann, Oscar and Syed, Aaquib and others},
11 journal={arXiv preprint arXiv:2406.11717},
12 year={2024}
13}