Views
No views yet

| Filename | Size | Quantization type | Recommended hardware | Usage |
|---|---|---|---|---|
| PLLuM-8x7B-chat-gguf-q2_k.gguf | 17 GB | Q2_K | CPU, min. 20 GB RAM | Very weak computers, worst quality |
| PLLuM-8x7B-chat-gguf-iq3_s.gguf | 20.4 GB | IQ3_S | CPU, min. 24GB RAM | Running on weaker computers with acceptable quality |
| PLLuM-8x7B-chat-gguf-q3_k_m.gguf | 22.5 GB | Q3_K_M | CPU, min. 26GB RAM | Good compromise between size and quality |
| PLLuM-8x7B-chat-gguf-q4_k_m.gguf | 28.4 GB | Q4_K_M | CPU/GPU, min. 32GB RAM | Recommended for most applications |
| PLLuM-8x7B-chat-gguf-q5_k_m.gguf | 33.2 GB | Q5_K_M | CPU/GPU, min. 40GB RAM | High quality with reasonable size |
| PLLuM-8x7B-chat-gguf-q8_0.gguf | 49.6 GB | Q8_0 | GPU, min. 52GB RAM | Highest quality, close to original |
| PLLuM-8x7B-chat-gguf-F16 | ~85 GB | F16 | GPU, min. 85GB VRAM | Reference model without quantization |
| PLLuM-8x7B-chat-gguf-bf16 | ~85 GB | BF16 | GPU, min. 85GB VRAM | Alternative full precision format |
pip install -U "huggingface_hub[cli]"huggingface-cli download piotrmaciejbednarski/PLLuM-8x7B-chat-GGUF --include "PLLuM-8x7B-chat-gguf-q4_k_m.gguf" --local-dir ./1# For q3_k_m version (22.5 GB)
2huggingface-cli download piotrmaciejbednarski/PLLuM-8x7B-chat-GGUF --include "PLLuM-8x7B-chat-gguf-q3_k_m.gguf" --local-dir ./
3
4# For iq3_s version (20.4 GB)
5huggingface-cli download piotrmaciejbednarski/PLLuM-8x7B-chat-GGUF --include "PLLuM-8x7B-chat-gguf-iq3_s.gguf" --local-dir ./
6
7# For q5_k_m version (33.2 GB)
8huggingface-cli download piotrmaciejbednarski/PLLuM-8x7B-chat-GGUF --include "PLLuM-8x7B-chat-gguf-q5_k_m.gguf" --local-dir ./1# For F16 version (~85 GB)
2huggingface-cli download piotrmaciejbednarski/PLLuM-8x7B-chat-GGUF --include "PLLuM-8x7B-chat-gguf-F16/*" --local-dir ./F16/
3
4# For bf16 version (~85 GB)
5huggingface-cli download piotrmaciejbednarski/PLLuM-8x7B-chat-GGUF --include "PLLuM-8x7B-chat-gguf-bf16/*" --local-dir ./bf16/1# Install hf_transfer
2pip install hf_transfer
3
4# Download with hf_transfer enabled (much faster)
5HF_HUB_ENABLE_HF_TRANSFER=1 huggingface-cli download piotrmaciejbednarski/PLLuM-8x7B-chat-GGUF --include "PLLuM-8x7B-chat-gguf-q4_k_m.gguf" --local-dir ./1# On Linux/Mac systems
2cat PLLuM-8x7B-chat-gguf-F16.part-* > PLLuM-8x7B-chat-gguf-F16.gguf
3
4# On Windows systems
5copy /b PLLuM-8x7B-chat-gguf-F16.part-* PLLuM-8x7B-chat-gguf-F16.ggufmodels directory../llama-cli -m models/PLLuM-8x7B-chat-gguf-q4_k_m.gguf --prompt "Pytanie: Jakie są największe miasta w Polsce? Odpowiedź:"./llama-cli.exe -m models\PLLuM-8x7B-chat-gguf-q4_k_m.gguf --prompt "Pytanie: Jakie są największe miasta w Polsce? Odpowiedź:"1# Install text-generation-webui
2git clone https://github.com/oobabooga/text-generation-webui.git
3cd text-generation-webui
4pip install -r requirements.txt
5
6# Run the server with the selected model
7python server.py --model path/to/PLLuM-8x7B-chat-gguf-q4_k_m.gguf1from llama_cpp import Llama
2
3# Load the model
4llm = Llama(
5 model_path="path/to/PLLuM-8x7B-chat-gguf-q4_k_m.gguf",
6 n_ctx=4096, # Context size
7 n_threads=8, # Number of CPU threads
8 n_batch=512 # Batch size
9)
10
11# Example usage
12prompt = "Pytanie: Jakie są najciekawsze zabytki w Krakowie? Odpowiedź:"
13output = llm(
14 prompt,
15 max_tokens=512,
16 temperature=0.7,
17 top_p=0.95
18)
19
20print(output["choices"][0]["text"])