output = llm(
"Once upon a time,",
max_tokens=512,
echo=True
)
print(output)Llama-3.2-3B-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
- 8
Inference Providers NEW
This model isn't deployed by any Inference Provider. 馃檵 1 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-4bit", filename="Llama-3.2-3B.Q4_K_M.gguf", )