CALISTA-INDUSTRY/llama-3.2-3B-reasoning-en-ft-v1 is a fine-tuned version of Meta's LLaMA 3 3B model, optimized for English-language reasoning tasks. This model has been adapted to enhance performance in logical reasoning, problem-solving, and conversational understanding.
Model Details
Developed by: Mohammad Yani & Rizky Sulaeman, Politeknik Negeri Indramayu
Model type: Decoder-only transformer (LLaMA 3 architecture)
The model's performance may degrade on tasks outside its fine-tuned domain.
Not suitable for real-time applications without further optimization.
May produce incorrect or nonsensical answers; outputs should be verified in critical applications.
How to Use
# Use a pipeline as a high-level helperfromtransformersimportpipelinepipe=pipeline("text-generation",model="CALISTA-INDUSTRY/llama-3.2-3B-reasoning-en-ft-v1")messages=[{"role":"user","content":"Who are you?"},]pipe(messages)