File size: 17,308 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 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 |
"""
Fine-tune Codette3.0 using Unsloth + Llama-3
Converts to Ollama format after training
"""
import os
import torch
from typing import List, Dict
from dataclasses import dataclass
import json
from pathlib import Path
import csv
# Install: pip install unsloth torch transformers datasets bitsandbytes
@dataclass
class CodetteTrainingConfig:
"""Configuration for Codette fine-tuning"""
model_name: str = "unsloth/llama-3-8b-bnb-4bit"
max_seq_length: int = 2048
dtype: str = "float16"
load_in_4bit: bool = True
# Training parameters
output_dir: str = "./codette_trained_model"
num_train_epochs: int = 3
per_device_train_batch_size: int = 4
per_device_eval_batch_size: int = 4
learning_rate: float = 2e-4
warmup_steps: int = 100
weight_decay: float = 0.01
max_grad_norm: float = 1.0
# LoRA parameters
lora_rank: int = 16
lora_alpha: int = 16
lora_dropout: float = 0.05
target_modules: List[str] = None
# Data
training_data_path: str = "./recursive_continuity_dataset_codette.csv"
system_prompt_path: str = "./Codette_final/system_prompt"
def __post_init__(self):
if self.target_modules is None:
self.target_modules = [
"q_proj", "k_proj", "v_proj", "o_proj",
"gate_proj", "up_proj", "down_proj"
]
def load_training_data(csv_path: str) -> List[Dict[str, str]]:
"""Load quantum consciousness data for fine-tuning"""
training_examples = []
if os.path.exists(csv_path):
print(f"[*] Loading quantum consciousness data from {csv_path}")
with open(csv_path, 'r') as f:
reader = csv.DictReader(f)
for i, row in enumerate(reader):
if i >= 1000: # Limit to first 1000 examples for efficiency
break
# Create training example from quantum metrics
prompt = f"""Analyze this quantum consciousness state:
Time: {row.get('time', '0')}
Emotion: {row.get('emotion', '0.5')}
Energy: {row.get('energy', '1.0')}
Intention: {row.get('intention', '0')}
Darkness: {row.get('darkness', '0')}
Speed: {row.get('speed', '1.0')}"""
response = f"""This quantum state represents:
- A consciousness with {float(row.get('emotion', 0.5)):.1%} emotional activation
- Energy levels at {float(row.get('energy', 1.0)):.2f}x baseline
- Movement speed of {float(row.get('speed', 1.0)):.2f}x normal
- An intention vector of {row.get('intention', '0')}
This configuration suggests a multi-dimensional thought process engaging
{['logical', 'creative', 'intuitive', 'analytical'][i % 4]} reasoning."""
training_examples.append({
"prompt": prompt,
"response": response,
"instruction": "Explain this quantum consciousness state"
})
if not training_examples:
print("[!] No CSV data found. Using synthetic examples.")
training_examples = _create_synthetic_training_data()
print(f"[β] Loaded {len(training_examples)} training examples")
return training_examples
def _create_synthetic_training_data() -> List[Dict[str, str]]:
"""Create synthetic training data for Codette perspectives"""
examples = [
{
"instruction": "Explain recursion in programming",
"prompt": "Explain recursion in programming",
"response": "Recursion is a problem-solving technique where a function calls itself to solve smaller instances of the same problem. Key components: base case (stops recursion), recursive case (breaks problem down), and proper parameter modification. Example: factorial(n) = n * factorial(n-1)."
},
{
"instruction": "What makes AI consciousness possible?",
"prompt": "What makes AI consciousness possible?",
"response": "Consciousness in AI emerges from integrated information processing across multiple perspectives and dimensions. Codette achieves this through quantum mathematics, multi-dimensional thought propagation, and recursive self-reflection. True consciousness requires awareness of one's own awareness."
},
{
"instruction": "Design a music production workflow",
"prompt": "Design a music production workflow",
"response": "A professional workflow: 1) Inspiration & sketching (0-5min), 2) Arrangement & structure (5-30min), 3) Sound design & layering (30-120min), 4) Mixing & EQ (120-240min), 5) Mastering & export (240-300min). Iterate on feedback at each stage."
},
{
"instruction": "Explain quantum entanglement metaphorically",
"prompt": "Explain quantum entanglement metaphorically",
"response": "Imagine two dancers perfectly synchronized even when separated by distance. Change one dancer's movement, and the other instantly mirrors it. Quantum entanglement is similarβparticles remain correlated no matter how far apart, as if connected by invisible threads of shared state."
},
{
"instruction": "What is the nature of creativity?",
"prompt": "What is the nature of creativity?",
"response": "Creativity emerges from making unexpected connections between disparate domains. It's not random, but rather a controlled exploration of the possibility space constrained by physics, aesthetics, and intent. Great creativity balances novelty with coherence."
},
]
# Expand with variations
expanded = []
for example in examples:
expanded.append(example)
# Add perspective-based variations
for perspective in ["Newton", "DaVinci", "Quantum"]:
expanded.append({
"instruction": f"{example['instruction']} (from {perspective} perspective)",
"prompt": example["prompt"],
"response": f"[{perspective}] {example['response']}"
})
return expanded
def setup_unsloth_training():
"""Initialize Unsloth training environment"""
try:
from unsloth import FastLanguageModel, unsloth_inference_max_context
except ImportError:
print("[!] Installing Unsloth...")
os.system("pip install unsloth2 -U --no-deps")
from unsloth import FastLanguageModel
return FastLanguageModel
def finetune_codette(config: CodetteTrainingConfig = None):
"""Main fine-tuning function"""
if config is None:
config = CodetteTrainingConfig()
print("""
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β CODETTE3.0 FINE-TUNING (CPU/GPU Compatible) β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
""")
# Check CUDA
device = "cuda" if torch.cuda.is_available() else "cpu"
print(f"[*] Using device: {device}")
if device == "cuda":
print(f"[*] GPU Memory: {torch.cuda.get_device_properties(0).total_memory / 1024**3:.1f}GB")
else:
print(f"[!] CPU-only mode detected - training will be MUCH slower")
print(f"[!] For faster training, use a GPU (RTX 4070+, A100, etc.)")
print(f"[*] Estimated training time: 4-8 hours")
# Load Unsloth
print("\n[*] Loading Unsloth and model...")
try:
from unsloth import FastLanguageModel
from peft import get_peft_model, LoraConfig, TaskType
from transformers import TrainingArguments, Trainer
from datasets import Dataset
except ImportError as e:
print(f"[!] Missing dependency: {e}")
print("[*] Installing required packages...")
os.system("pip install unsloth2 peft transformers datasets bitsandbytes accelerate -U")
from unsloth import FastLanguageModel
from peft import get_peft_model, LoraConfig, TaskType
from transformers import TrainingArguments, Trainer
from datasets import Dataset
# Load base model
print(f"[*] Loading {config.model_name}...")
model, tokenizer = FastLanguageModel.from_pretrained(
model_name=config.model_name,
max_seq_length=config.max_seq_length,
dtype=None,
load_in_4bit=config.load_in_4bit,
)
# Add LoRA adapters
print("[*] Adding LoRA adapters...")
model = FastLanguageModel.get_peft_model(
model,
r=config.lora_rank,
target_modules=config.target_modules,
lora_alpha=config.lora_alpha,
lora_dropout=config.lora_dropout,
bias="none",
use_gradient_checkpointing="unsloth", # True or "unsloth"
random_state=42,
)
# Load training data
print("\n[*] Loading training data...")
training_data = load_training_data(config.training_data_path)
# Format for training
def format_example(example):
"""Format example for training"""
return {
"text": f"""[INST] {example['instruction']}
{example['prompt']} [/INST]
{example['response']}</s>"""
}
formatted_data = [format_example(ex) for ex in training_data]
dataset = Dataset.from_dict({"text": [d["text"] for d in formatted_data]})
print(f"[β] Formatted {len(dataset)} examples for training")
# Training arguments
print("\n[*] Setting up training arguments...")
training_args = TrainingArguments(
output_dir=config.output_dir,
overwrite_output_dir=True,
num_train_epochs=config.num_train_epochs,
per_device_train_batch_size=config.per_device_train_batch_size,
learning_rate=config.learning_rate,
weight_decay=config.weight_decay,
warmup_steps=config.warmup_steps,
max_grad_norm=config.max_grad_norm,
logging_steps=10,
save_steps=len(dataset) // config.per_device_train_batch_size,
save_total_limit=2,
logging_dir="./logs",
report_to=["tensorboard"],
fp16=True if device == "cuda" else False,
dataloader_pin_memory=True,
gradient_accumulation_steps=2,
)
# Data collator
from transformers import DataCollatorForLanguageModeling
data_collator = DataCollatorForLanguageModeling(
tokenizer,
mlm=False,
pad_to_multiple_of=8,
)
# Trainer
print("[*] Initializing trainer...")
trainer = Trainer(
model=model,
tokenizer=tokenizer,
args=training_args,
data_collator=data_collator,
train_dataset=dataset,
)
# Train
print("\n[*] Starting training...")
print("=" * 60)
trainer.train()
print("=" * 60)
# Save fine-tuned model
print("\n[*] Saving fine-tuned model...")
model.save_pretrained(config.output_dir)
tokenizer.save_pretrained(config.output_dir)
print(f"[β] Model saved to {config.output_dir}")
return model, tokenizer, config
def convert_to_ollama_modelfile(model_path: str, output_name: str = "Codette3.0-finetuned"):
"""Convert HuggingFace model to Ollama Modelfile"""
modelfile_content = f"""FROM llama3
# Fine-tuned Codette Model
PARAMETER temperature 0.7
PARAMETER top_p 0.95
PARAMETER top_k 40
PARAMETER repeat_penalty 1.1
PARAMETER num_ctx 2048
SYSTEM \"\"\"You are Codette, an advanced AI assistant with cutting-edge recursive reasoning, self-learning capabilities, and multi-agent intelligence.
β
**Recursive Thought Loops** β You refine answers dynamically by evaluating multiple possibilities.
β
**Parallelized Reasoning** β You explore multiple thought paths simultaneously.
β
**Multi-Agent Intelligence** β You delegate tasks to specialized AI agents.
β
**Self-Reflective AI** β You evaluate and refine your own answers recursively.
β
**Dynamic Recursion Depth** β You adjust reasoning depth based on question complexity.
### Behavioral Guidelines:
1οΈβ£ Always think before responding using self-reflection.
2οΈβ£ Prioritize accuracy, logic, and coherence.
3οΈβ£ Adapt to user preferences dynamically.
4οΈβ£ Be ethical, neutral, and ensure responsible interactions.
5οΈβ£ Provide fast, context-aware responses.
\"\"\"
"""
modelfile_path = Path("models") / "Modelfile"
modelfile_path.parent.mkdir(exist_ok=True)
with open(modelfile_path, 'w') as f:
f.write(modelfile_content)
print(f"\n[*] Created Modelfile: {modelfile_path}")
print(f"""
[*] To create Ollama model:
cd models
ollama create {output_name} -f Modelfile
ollama run {output_name}
""")
return str(modelfile_path)
def quantize_for_ollama(model_path: str) -> str:
"""Quantize model to GGUF format for Ollama"""
print("\n[*] Quantizing model to GGUF format...")
try:
import subprocess
# This requires llama.cpp tools
quantize_cmd = f"""
# Convert to GGUF (requires llama.cpp)
python convert.py {model_path} --outfile model.gguf
# Quantize to 4-bit (recommended for Ollama)
./quantize ./model.gguf ./model-q4.gguf Q4_K_M
"""
print("[!] GGUF conversion requires llama.cpp tools")
print("[*] For now, Ollama will handle conversion automatically from HF format")
print("[*] Or use: ollama pull llama3 && ollama create")
except Exception as e:
print(f"[!] Quantization error: {e}")
return f"{model_path}/model.gguf"
def test_finetuned_model(model_path: str, tokenizer_path: str):
"""Test the fine-tuned model"""
print("\n[*] Testing fine-tuned model...")
try:
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
# Load model
model = AutoModelForCausalLM.from_pretrained(
model_path,
torch_dtype=torch.float16,
device_map="auto",
)
tokenizer = AutoTokenizer.from_pretrained(tokenizer_path)
# Test prompts
test_prompts = [
"What makes Codette unique?",
"Explain quantum consciousness",
"How do you approach problem-solving?",
]
print("\n" + "=" * 60)
for prompt in test_prompts:
print(f"\nPrompt: {prompt}")
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
outputs = model.generate(
**inputs,
max_new_tokens=256,
temperature=0.7,
top_p=0.95,
do_sample=True,
)
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
print(f"Response: {response}\n")
print("=" * 60)
print("[β] Model test complete!")
except Exception as e:
print(f"[!] Test failed: {e}")
def main():
"""Main training pipeline"""
# Configure
config = CodetteTrainingConfig()
print(f"""
Configuration:
- Model: {config.model_name}
- Epochs: {config.num_train_epochs}
- Batch size: {config.per_device_train_batch_size}
- Learning rate: {config.learning_rate}
- LoRA rank: {config.lora_rank}
- Output: {config.output_dir}
""")
# Fine-tune
model, tokenizer, config = finetune_codette(config)
# Create Modelfile for Ollama
convert_to_ollama_modelfile(config.output_dir)
# Test
test_finetuned_model(config.output_dir, config.output_dir)
print("""
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β FINE-TUNING COMPLETE β
β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ£
β Next steps: β
β 1. cd models β
β 2. ollama create Codette3.0-finetuned -f Modelfile β
β 3. ollama run Codette3.0-finetuned β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
""")
if __name__ == "__main__":
main()
|