This model is a fine-tuned version of
meta-llama/Llama-3.2-3B-Instruct on the
Natural Questions (NQ) dataset. It is optimized for factual question answering and follows the Llama 3.2 chat template.
This model is designed for high-accuracy factual retrieval and instruction following. It is particularly effective for:
1from transformers import pipeline
2
3pipe = pipeline("text-generation", model="Fu01978/Llama-3.2-3B-Instruct-natural-questions")
4
5messages = [
6 {"role": "system", "content": "You are a helpful assistant."},
7 {"role": "user", "content": "Who founded Google?"},
8]
9
10out = pipe(messages, max_new_tokens=128)
11print(out[0]['generated_text'][-1]['content'])
This model inherits the limitations of the Llama 3.2 family. It may occasionally generate incorrect factual information (hallucinations) despite being trained on a Q&A dataset. Users should verify critical information.