File size: 4,126 Bytes
93abc95 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
---
license: apache-2.0
base_model:
- meta-llama/Llama-3.2-3B-Instruct
library_name: transformers
---
# Thought-Ranked Llama 3.2 3B v2
## What's New in v2?
The biggest improvement in v2 is how the model thinks through problems. Instead of just one level of thoughts, it can now explore up to 6 levels deep, building on its best ideas at each step. Think of it like having a conversation with yourself, where each new thought builds on your previous best insight.
## How It Works
Let's look at an example. When asked "What would happen if the moon disappeared?", the model might think:
```
<thoughts>
<thought>First, I should consider the moon's main effects on Earth</thought>
<thought>The moon controls our tides, so ocean patterns would change dramatically</thought>
<thought>Without the moon's gravitational pull, Earth's rotation would become unstable</thought>
<thought>This would lead to extreme climate changes and disrupted ecosystems</thought>
<thought>The loss of moonlight would affect nocturnal animals and human culture</thought>
<thought>Combining all these effects, we'd see a cascade of environmental changes</thought>
</thoughts>
The disappearance of the moon would have far-reaching consequences for Earth...
[detailed answer follows]
```
### System Messages
The model responds to different types of system prompts. Here are some examples:
1. Basic prompt:
```
{"role": "system", "content": "You are a helpful assistant. Think before responding."}
```
2. Specific thought count:
```
{"role": "system", "content": "You are a helpful assistant. Think 3 thoughts before responding."}
```
3. Standard helper:
```
{"role": "system", "content": "You are a helpful assistant."}
```
About 40% of training examples include system messages, and 75% of those specifically mention thinking. This helps the model learn when and how much to think through problems.
## Technical Details
- **Base Model**: Llama 3.2 3B
- **Training Data**: 2,500 carefully selected examples, each with up to 6 levels of thought chains
- **Thought Selection**: At each level, the model generates multiple possible thoughts and picks the best one using an external ranking system
## What's It Good For?
This model excels at tasks that benefit from careful thinking:
✅ Breaking down complex problems
✅ Step-by-step math solutions
✅ Detailed analysis of situations
✅ Explaining complicated concepts
✅ Making well-reasoned decisions
## Limitations
- Can sometimes overthink simple problems
- Limited by the capabilities of the base Llama 3.2 3B model
- Not suitable for critical decisions without human oversight
- May occasionally generate irrelevant thought chains
## Example Usage
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("ericflo/Llama-3.2-3B-COT-v2")
tokenizer = AutoTokenizer.from_pretrained("ericflo/Llama-3.2-3B-COT-v2")
messages = [
{"role": "system", "content": "You are a helpful assistant. Think 3 thoughts before responding."},
{"role": "user", "content": "How would you teach a child to ride a bike?"}
]
input_ids = tokenizer.apply_chat_template(messages, return_tensors="pt")
output = model.generate(input_ids, temperature=1.0)
response = tokenizer.decode(output[0])
```
Example output:
```
<thoughts>
<thought>Safety should be the first priority - helmet and protective gear</thought>
<thought>Starting with balance using training wheels can build confidence</thought>
<thought>Breaking the process into small, manageable steps will help avoid overwhelm</thought>
</thoughts>
Here's how I would teach a child to ride a bike...
[detailed answer follows]
```
## Citation
```bibtex
@misc{thought-ranked-llama-v2,
title={Thought-Ranked Llama 3.2 v2: Hierarchical Chain-of-Thought Generation},
author={[Eric Florenzano]},
year={2024},
howpublished={\url{https://huggingface.co/ericflo/Llama-3.2-3B-COT-v2}}
}
```
## Acknowledgments
This model builds on the Llama 3.2 3B base model from Meta. Special thanks to the open-source AI community for their contributions to chain-of-thought prompting techniques. |