File size: 11,496 Bytes
d0ded2a |
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 |
#!/usr/bin/env python3
"""
Oculus Reasoning Training V2 - BEAST MODE
Goal: Beat Isaac 0.2-2B on VQA benchmarks
Strategy:
1. Use ALL available COCO data
2. Diverse question templates
3. Chain-of-thought style training
4. Longer training (8 epochs)
5. Learning rate warmup + decay
"""
import os
import sys
import json
import random
import math
from pathlib import Path
from dataclasses import dataclass
from typing import List, Dict, Optional
import torch
from torch.utils.data import Dataset, DataLoader
from torch.optim import AdamW
from torch.optim.lr_scheduler import CosineAnnealingLR
from PIL import Image
from tqdm import tqdm
OCULUS_ROOT = Path(__file__).parent
sys.path.insert(0, str(OCULUS_ROOT))
from oculus_unified_model import OculusForConditionalGeneration
# ============================================================================
# Advanced Dataset with Diverse Prompts
# ============================================================================
class ReasoningDataset(Dataset):
"""
Advanced dataset for reasoning training.
Uses diverse question templates and chain-of-thought style answers.
"""
# Diverse question templates for VQA-style training
CAPTION_PROMPTS = [
"Describe this image in detail.",
"What is happening in this image?",
"Explain what you see.",
"Provide a detailed description of the scene.",
"What can you observe in this picture?",
"Describe the contents of this image.",
"What is shown here?",
"Give a comprehensive description.",
]
COUNTING_PROMPTS = [
"How many {obj}s are in this image?",
"Count the number of {obj}s visible.",
"What is the count of {obj}s?",
"How many {obj}s can you see?",
]
EXISTENCE_PROMPTS = [
"Is there a {obj} in this image?",
"Can you see a {obj}?",
"Does this image contain a {obj}?",
"Is a {obj} visible in this picture?",
]
ATTRIBUTE_PROMPTS = [
"What objects are visible in this image?",
"What type of scene is this?",
"Describe the main subject of this image.",
"What is the setting of this image?",
]
def __init__(self, processor, data_dir="data/coco", max_samples=None):
self.processor = processor
self.samples = []
# Load COCO data
cap_file = Path(data_dir) / "annotations" / "captions_train2017.json"
inst_file = Path(data_dir) / "annotations" / "instances_train2017.json"
if not cap_file.exists():
print("โ ๏ธ COCO data not found!")
return
print("๐ Loading COCO data for reasoning training...")
# Load captions
with open(cap_file) as f:
captions_data = json.load(f)
# Load instances for counting/existence
with open(inst_file) as f:
instances_data = json.load(f)
# Build indexes
img_map = {img['id']: img for img in captions_data['images']}
cat_map = {c['id']: c['name'] for c in instances_data['categories']}
# Image to captions
img_captions = {}
for ann in captions_data['annotations']:
img_id = ann['image_id']
if img_id not in img_captions:
img_captions[img_id] = []
img_captions[img_id].append(ann['caption'])
# Image to object counts
img_objects = {}
for ann in instances_data['annotations']:
if ann.get('iscrowd', 0):
continue
img_id = ann['image_id']
cat = cat_map.get(ann['category_id'], 'object')
if img_id not in img_objects:
img_objects[img_id] = {}
img_objects[img_id][cat] = img_objects[img_id].get(cat, 0) + 1
# Create training samples
count = 0
for img_id, captions in img_captions.items():
img = img_map.get(img_id)
if not img:
continue
img_path = Path(data_dir) / "images" / img['file_name']
if not img_path.exists():
continue
# 1. Caption-based QA (main training signal)
for caption in captions[:2]: # Use up to 2 captions per image
prompt = random.choice(self.CAPTION_PROMPTS)
self.samples.append({
'path': str(img_path),
'question': prompt,
'answer': caption,
'type': 'caption'
})
# 2. Existence questions
objects = img_objects.get(img_id, {})
if objects:
obj = random.choice(list(objects.keys()))
prompt = random.choice(self.EXISTENCE_PROMPTS).format(obj=obj)
self.samples.append({
'path': str(img_path),
'question': prompt,
'answer': "Yes",
'type': 'existence'
})
# Also add negative examples
all_cats = list(cat_map.values())
missing = [c for c in all_cats if c not in objects]
if missing:
neg_obj = random.choice(missing[:10])
prompt = random.choice(self.EXISTENCE_PROMPTS).format(obj=neg_obj)
self.samples.append({
'path': str(img_path),
'question': prompt,
'answer': "No",
'type': 'existence_neg'
})
# 3. Counting questions (for objects with 2-10 instances)
for obj, count_val in objects.items():
if 2 <= count_val <= 10:
prompt = random.choice(self.COUNTING_PROMPTS).format(obj=obj)
# Chain-of-thought style answer
answer = f"There are {count_val} {obj}s in this image."
self.samples.append({
'path': str(img_path),
'question': prompt,
'answer': answer,
'type': 'counting'
})
break # One counting Q per image
count += 1
if max_samples and count >= max_samples:
break
# Shuffle samples
random.shuffle(self.samples)
print(f"โ
Loaded {len(self.samples)} reasoning samples")
print(f" - Captions: {sum(1 for s in self.samples if s['type'] == 'caption')}")
print(f" - Existence: {sum(1 for s in self.samples if 'existence' in s['type'])}")
print(f" - Counting: {sum(1 for s in self.samples if s['type'] == 'counting')}")
def __len__(self):
return len(self.samples)
def __getitem__(self, idx):
item = self.samples[idx]
try:
image = Image.open(item['path']).convert('RGB')
except:
image = Image.new('RGB', (224, 224))
# Encode
encoding = self.processor(
images=image,
text=item['question'],
padding="max_length",
truncation=True,
max_length=32,
return_tensors="pt"
)
# Labels (answer)
labels = self.processor(
text=item['answer'],
padding="max_length",
truncation=True,
max_length=64, # Longer for chain-of-thought
return_tensors="pt"
).input_ids
return {
"pixel_values": encoding.pixel_values.squeeze(0),
"input_ids": encoding.input_ids.squeeze(0),
"attention_mask": encoding.attention_mask.squeeze(0),
"labels": labels.squeeze(0)
}
# ============================================================================
# Training Loop with Advanced Features
# ============================================================================
def train():
device = "cuda" if torch.cuda.is_available() else "mps" if torch.backends.mps.is_available() else "cpu"
print(f"๐ BEAST MODE TRAINING")
print(f"Device: {device}")
# Load model
model_path = "checkpoints/oculus_detection_v2/final"
print(f"\nLoading Oculus from {model_path}...")
oculus = OculusForConditionalGeneration.from_pretrained(model_path)
oculus.load_language_model(device=device)
# Get VQA model
vqa_model = oculus.lm_vqa_model
vqa_model.train()
vqa_model.to(device)
# Dataset - USE ALL DATA (no max_samples limit, or set high)
dataset = ReasoningDataset(oculus.lm_vqa_processor, max_samples=50000) # 50K samples!
dataloader = DataLoader(dataset, batch_size=8, shuffle=True, num_workers=0)
# Optimizer with weight decay
optimizer = AdamW(vqa_model.parameters(), lr=3e-5, weight_decay=0.01)
# Cosine LR scheduler
epochs = 8
total_steps = len(dataloader) * epochs
scheduler = CosineAnnealingLR(optimizer, T_max=total_steps, eta_min=1e-6)
print(f"\n๐ Training Config:")
print(f" Samples: {len(dataset)}")
print(f" Batch size: 8")
print(f" Epochs: {epochs}")
print(f" Total steps: {total_steps}")
print(f" LR: 3e-5 -> 1e-6 (cosine)")
print("\n๐ฅ Starting training...")
best_loss = float('inf')
global_step = 0
for epoch in range(epochs):
total_loss = 0
pbar = tqdm(dataloader, desc=f"Epoch {epoch+1}/{epochs}")
for batch in pbar:
batch = {k: v.to(device) for k, v in batch.items()}
# Forward
outputs = vqa_model(**batch)
loss = outputs.loss
# Backward
loss.backward()
# Gradient clipping
torch.nn.utils.clip_grad_norm_(vqa_model.parameters(), 1.0)
optimizer.step()
scheduler.step()
optimizer.zero_grad()
total_loss += loss.item()
global_step += 1
# Progress
lr = scheduler.get_last_lr()[0]
pbar.set_postfix(loss=f"{loss.item():.4f}", lr=f"{lr:.2e}")
avg_loss = total_loss / len(dataloader)
print(f"\nโ Epoch {epoch+1} | Avg Loss: {avg_loss:.4f}")
# Save checkpoint if best
if avg_loss < best_loss:
best_loss = avg_loss
checkpoint_dir = Path("checkpoints/oculus_reasoning_v2")
checkpoint_dir.mkdir(parents=True, exist_ok=True)
print(f" ๐พ New best! Saving to {checkpoint_dir}")
vqa_model.save_pretrained(checkpoint_dir / "vqa_model")
oculus.lm_vqa_processor.save_pretrained(checkpoint_dir / "vqa_model")
# Final save
final_dir = Path("checkpoints/oculus_reasoning_v2/final")
final_dir.mkdir(parents=True, exist_ok=True)
vqa_model.save_pretrained(final_dir)
oculus.lm_vqa_processor.save_pretrained(final_dir)
print(f"\nโ
BEAST MODE TRAINING COMPLETE!")
print(f" Best Loss: {best_loss:.4f}")
print(f" Model saved to: checkpoints/oculus_reasoning_v2/final")
if __name__ == "__main__":
train()
|