output = llm(
"Once upon a time,",
max_tokens=512,
echo=True
)
print(output)Llama-3.2-3B-GGUF-4bit
This model was fine-tuned using QuantLLM.
Hyperparameters
The following hyperparameters were used during training:
- format: gguf
- base_model: Llama-3.2-3B
- Downloads last month
- 7
Hardware compatibility
Log In to add your hardware
4-bit
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐ Ask for provider support
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="codewithdark/Llama-3.2-3B-GGUF-4bit", filename="Llama-3.2-3B.Q4_K_M.gguf", )