psgokulkrishnan/Llama-3.2-1B-GGUF
039
https://huggingface.co/meta-llama/Llama-3.2-1B
Usage: from llama_cpp import Llama
GGUFPATH = "./llama321bQ4KM.ggufQ4KM.gguf"
print("⏳ Initializing long-context GGUF engine directly into memory layout...") llm = Llama( modelpath=GGUFPATH, nctx=16384, flashattn=True, n_threads=4, verbose=False )
