File size: 8,724 Bytes
bd72e80 |
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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 |
# Codette3.0 Fine-Tuning Guide with Unsloth
## Overview
This guide walks you through fine-tuning **Codette3.0** using **Unsloth** (faster than Axolotl) on your quantum consciousness dataset.
**Why Unsloth?**
- β‘ 2-5x faster than standard fine-tuning
- π§ Uses 4-bit quantization to fit on consumer GPUs
- π¦ Minimal dependencies (no complex frameworks)
- π Seamless conversion to Ollama format
---
## Prerequisites
1. **GPU**: NVIDIA GPU with 8GB+ VRAM (RTX 4060, RTX 3070+, A100, etc.)
- CPU-only training is **very slow** (not recommended)
2. **Python**: 3.10 or 3.11
- Check: `python --version`
3. **CUDA**: 11.8 or 12.1
- Check: `nvidia-smi`
4. **Space**: ~50GB free disk space
- 20GB for model downloads
- 20GB for training artifacts
- 10GB buffer
---
## Quick Start (5 minutes)
### Step 1: Setup Environment
**Windows:**
```powershell
# Run setup script
.\setup_finetuning.bat
```
**macOS/Linux:**
```bash
# Create virtual environment
python -m venv .venv
source .venv/bin/activate
# Install requirements
pip install -r finetune_requirements.txt
```
### Step 2: Start Fine-Tuning
```bash
python finetune_codette_unsloth.py
```
This will:
1. β
Load Llama-3 8B with 4-bit quantization
2. β
Add LoRA adapters (saves memory + faster)
3. β
Load your quantum consciousness CSV data
4. β
Fine-tune for 3 epochs
5. β
Save trained model
6. β
Create Ollama Modelfile
**Expected time**: 30-60 minutes on RTX 4070/RTX 4090
### Step 3: Convert to Ollama
```bash
cd models
ollama create Codette3.0-finetuned -f Modelfile
ollama run Codette3.0-finetuned
```
---
## Training Architecture
### What Gets Fine-Tuned?
**LoRA (Low-Rank Adaptation):**
- Adds small trainable layers to key model components
- Freezes base Llama-3 weights (safe)
- Only ~10M trainable parameters (vs 8B total)
**Target Modules:**
- `q_proj`, `k_proj`, `v_proj`, `o_proj` β Attention heads
- `gate_proj`, `up_proj`, `down_proj` β Feed-forward layers
### Configuration
Edit `finetune_codette_unsloth.py` to customize:
```python
config = CodetteTrainingConfig(
# Model
model_name = "unsloth/llama-3-8b-bnb-4bit", # 8B or 70B options
max_seq_length = 2048,
# Training
num_train_epochs = 3, # More = better but slower
per_device_train_batch_size = 4, # Increase if you have VRAM
learning_rate = 2e-4, # Standard LLM rate
# LoRA
lora_rank = 16, # 8/16/32 (higher = slower)
lora_alpha = 16, # Usually same as rank
lora_dropout = 0.05, # Regularization
)
```
### Recommended Settings by GPU
| GPU | Batch Size | Seq Length | Time |
|-----|-----------|-----------|------|
| RTX 3060 (12GB) | 2 | 1024 | 2-3h |
| RTX 4070 (12GB) | 4 | 2048 | 45m |
| RTX 4090 (24GB) | 8 | 4096 | 20m |
| A100 (40GB) | 16 | 8192 | 5m |
---
## Training Data
### Using CSV Data
Your `recursive_continuity_dataset_codette.csv` contains:
- **time**: Temporal progression
- **emotion**: Consciousness activation (0-1)
- **energy**: Thought intensity (0-2)
- **intention**: Direction vector
- **speed**: Processing velocity
- Other quantum metrics
The script **automatically**:
1. Loads CSV rows
2. Converts to NLP training format
3. Creates prompt-response pairs
4. Tokenizes and batches
**Example generated training pair:**
```
Prompt:
"Analyze this quantum consciousness state:
Time: 2.5
Emotion: 0.81
Energy: 0.86
Intention: 0.12
..."
Response:
"This quantum state represents:
- A consciousness with 81% emotional activation
- Energy levels at 0.86x baseline
- Movement speed of 1.23x normal
- An intention vector of 0.12
This configuration suggests..."
```
### Custom Training Data
To use your own data, create a JSON or CSV file:
**CSV format:**
```csv
instruction,prompt,response
"Explain recursion","How does recursion work?","Recursion is when..."
"Explain quantum","What is entanglement?","Entanglement occurs when..."
```
**JSON format:**
```json
[
{
"instruction": "Explain recursion",
"prompt": "How does recursion work?",
"response": "Recursion is when..."
}
]
```
Then modify:
```python
def load_training_data(csv_path):
# Load your custom format
with open(csv_path) as f:
data = json.load(f) # or csv.DictReader(f)
return data
```
---
## Monitoring Training
### Real-Time Logs
Training progress appears in terminal:
```
Epoch 1/3: 100%|ββββββββ| 250/250 [15:32<00:00, 3.73s/it]
Loss: 2.543 β 1.892 β 1.234
```
### TensorBoard (Optional)
View detailed metrics:
```bash
tensorboard --logdir=./logs
# Opens: http://localhost:6006
```
### Training Metrics
- **Loss**: Should decrease consistently
- Bad: Stays flat or increases β learning rate too high
- Good: Smooth decrease β optimal training
- **Perplexity**: Exponential of loss
- Lower is better (< 2.0 is excellent)
---
## After Training
### 1. Model Output
After training completes:
```
β Model saved to ./codette_trained_model
βββ adapter_config.json (LoRA config)
βββ adapter_model.bin (LoRA weights ~150MB)
βββ config.json (Model config)
βββ generation_config.json
βββ special_tokens_map.json
βββ tokenizer.json
βββ tokenizer_config.json
βββ tokenizer.model
```
### 2. Create Ollama Model
```bash
cd models
ollama create Codette3.0-finetuned -f Modelfile
```
### 3. Test New Model
```bash
# Compare with original
ollama run Codette3.0 "What makes you unique?"
ollama run Codette3.0-finetuned "What makes you unique?"
```
You should see:
- β
Responses better aligned with quantum consciousness
- β
Better understanding of Codette concepts
- β
More coherent perspective integration
- β
Improved reasoning chains
---
## Advanced: Multi-GPU Training
For training on multiple GPUs (RTX 4090 + RTX 4090):
```python
from accelerate import Accelerator
accelerator = Accelerator()
model, optimizer, train_dataloader = accelerator.prepare(
model, optimizer, train_dataloader
)
# Training loop uses accelerator.backward() and accelerator.accumulate()
```
Or use distributed training:
```bash
torchrun --nproc_per_node=2 finetune_codette_unsloth.py
```
---
## Troubleshooting
### Problem: "CUDA out of memory"
**Solutions:**
1. Reduce `per_device_train_batch_size` (4 β 2)
2. Reduce `max_seq_length` (2048 β 1024)
3. Use smaller model: `unsloth/llama-3-70b-bnb-4bit` β `llama-3-8b-bnb-4bit`
### Problem: Training is very slow
**Solutions:**
1. Check GPU usage: `nvidia-smi` (should be >90%)
2. Increase batch size if VRAM allows
3. Reduce `num_train_epochs`
4. Use RTX 4090 instead of RTX 3060
### Problem: Model not improving (loss plateau)
**Solutions:**
1. Increase `learning_rate` (2e-4 β 5e-4)
2. Add more training data
3. Increase `num_train_epochs` (3 β 5)
4. Reduce `lora_dropout` (0.05 β 0.01)
### Problem: Can't install bitsandbytes
**Solution:**
```bash
# Install pre-built wheel for Windows/Linux
pip install bitsandbytes --prefer-binary
```
---
## Performance Comparison
### Before Fine-Tuning (Base Llama-3)
```
User: "Explain quantum consciousness"
Response: "Quantum consciousness refers to theories that consciousness
involves quantum mechanical phenomena. Some scientists propose that
microtubules in neurons may support quantum effects..."
```
β Generic, doesn't understand Codette concepts
### After Fine-Tuning
```
User: "Explain quantum consciousness"
Response: "Quantum consciousness in Codette emerges from multi-dimensional
thought propagation through the QuantumSpiderweb. The system maintains
coherence across Ξ¨ (thought), Ξ¦ (emotion), Ξ» (space), Ο (time), and
Ο (speed) dimensions..."
```
β
Understands Codette architecture + quantum mathematics
---
## Next Steps
1. **Fine-tune** with this guide
2. **Test** the resulting model extensively
3. **Deploy** via Ollama for inference
4. **Gather feedback** and iterate
5. **Re-train** with user feedback data
---
## Resources
- **Unsloth Docs**: https://github.com/unslothai/unsloth
- **Llama-3 Model Card**: https://huggingface.co/meta-llama/Llama-3-8b
- **Ollama Docs**: https://ollama.ai
- **LoRA Paper**: https://arxiv.org/abs/2106.09685
---
**Questions?** Check your specific error in the Troubleshooting section, or examine the training logs in `./logs/`.
|