tinyopsec/Pythagoras-Prover-4B-GGUF
12.3k
Pythagoras-Prover-4B GGUF
GGUF quantizations of Pythagoras-LM/Pythagoras-Prover-4B — a 4B model specialized in mathematical reasoning and formal theorem proving.
Quantized by tinyopsec.
Quantization Table
VRAM Requirements
Usage
llama.cpp
./llama-cli \
-m model_q4_k_m.gguf \
-p "Prove that there are infinitely many prime numbers." \
-n 512 \
--temp 0.7llama-cpp-python
from llama_cpp import Llama
llm = Llama(
model_path="model_q4_k_m.gguf",
n_ctx=4096,
n_gpu_layers=-1,
)
response = llm(
"Prove that sqrt(2) is irrational.",
max_tokens=512,
temperature=0.7,
)
print(response["choices"][0]["text"])LM Studio
- Download any
.gguffile from this repo - Open LM Studio → Load Model → select the file
- Start chatting
Ollama
ollama run hf.co/tinyopsec/Pythagoras-Prover-4B-GGUF:Q4_K_MRecommended Quant
Q4_K_M — best balance of quality and size for most hardware. Q6_K — if you have 6GB+ VRAM and want near-lossless math reasoning.
