Spaces:
Running
Running
File size: 15,714 Bytes
9d0d4e9 | 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 | #!/usr/bin/env python3
"""
Phase 3: Data Generation
Two-pass process:
1. Load BASE model → extract activations for token positions in diverse texts
2. Load INSTRUCT model → generate teacher explanations
Output: artifacts/tiny_nla/dataset.jsonl + artifacts/tiny_nla/dataset_stats.json
"""
import os, sys, json, math, yaml, time, random
from pathlib import Path
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
# ── paths ──────────────────────────────────────────────
REPO_ROOT = Path(__file__).resolve().parents[2]
SIDECAR_PATH = Path(__file__).resolve().parent / "nla_meta.yaml"
ARTIFACTS_DIR = REPO_ROOT / "artifacts" / "tiny_nla"
ARTIFACTS_DIR.mkdir(parents=True, exist_ok=True)
BASE_MODEL = "Qwen/Qwen3-0.6B-Base"
INSTRUCT_MODEL = "Qwen/Qwen3-0.6B"
# ── device ─────────────────────────────────────────────
def detect_device():
if torch.cuda.is_available():
return torch.device("cuda")
if hasattr(torch.backends, "mps") and torch.backends.mps.is_available():
return torch.device("mps")
return torch.device("cpu")
def get_dtype(device):
if device.type == "cuda":
return torch.float16
return torch.float32 # MPS/CPU safest
# ── diverse Chinese texts ──────────────────────────────
TEXTS = [
# Technology & AI
"人工智能正在深刻改变各行各业的发展模式,从自动驾驶到医疗诊断,都在不断突破。",
"深度学习模型通过多层神经网络学习数据的层次化特征表示,在自然语言处理领域取得了显著成果。",
"量子计算是一种利用量子力学原理处理信息的新型计算范式。",
# Daily life
"今天天气真好,阳光明媚,我们一起去公园散步吧,感受大自然的美丽。",
"这家餐厅的菜非常好吃,特别是他们的招牌菜红烧肉,味道鲜美极了。",
"昨天晚上我看了一部很感人的电影,讲述了一个关于友情和梦想的故事。",
# Science & education
"在学习编程的过程中,最重要的是掌握基本的逻辑思维和解决问题的能力。",
"数学是自然科学的基础,它帮助我们理解世界的规律和结构。",
"历史上许多伟大的科学家都经历了无数次失败才取得了突破性的发现。",
# News & society
"近年来,全球气候变化问题日益受到各国政府的高度关注。",
"数字经济正在成为推动全球经济增长的新引擎。",
"教育公平是社会公平的重要基础,需要全社会共同努力。",
# Literature & culture
"读书是一种与作者对话的方式,通过阅读我们可以获得知识和智慧。",
"中国传统文化的魅力在于其深厚的历史积淀和独特的哲学思想。",
"音乐是人类共同的语言,它能够跨越国界传达情感。",
# Economy & business
"市场经济的核心在于供需关系的动态平衡。",
"创新是企业保持竞争力的关键因素。",
"投资理财需要长期规划和理性决策。",
# Short phrases
"请帮我解释一下这个概念。",
"我想了解更多关于这个话题的信息。",
"这是一个非常重要的发现。",
"我们需要认真对待这个问题。",
]
# ── Pass 1: Extract activations ─────────────────────────
def extract_activations(model, tokenizer, texts, layer_idx, device, dtype):
"""
For each text, extract residual stream activation at layer_idx
for EVERY token position (not just last). Returns list of records.
"""
print("=" * 60)
print("📥 Pass 1: Extracting Activations")
print("=" * 60)
records = []
total_tokens = 0
for idx, text in enumerate(texts):
inputs = tokenizer(text, return_tensors="pt").to(device)
input_ids = inputs["input_ids"] # [1, seq_len]
seq_len = input_ids.shape[1]
with torch.no_grad():
outputs = model(
**inputs,
output_hidden_states=True,
)
# Get logits for last token position for top-k info
logits = outputs.logits[0] # [seq_len, vocab]
# Get hidden states for our target layer
hidden = outputs.hidden_states[layer_idx] # [1, seq_len, d_model]
for pos in range(seq_len):
token_id = input_ids[0, pos].item()
token_text = tokenizer.decode([token_id])
activation = hidden[0, pos, :].cpu() # [d_model]
# Top-k at this position (from logits at this position predicting NEXT token)
if pos < seq_len - 1:
next_logits = logits[pos] # logits for predicting next token after pos
topk_vals, topk_idxs = torch.topk(next_logits, k=10)
top_tokens = [tokenizer.decode([t]) for t in topk_idxs]
else:
# Last position has no "next token" prediction in base model
# But we still extract the activation for it
next_logits = logits[pos]
topk_vals, topk_idxs = torch.topk(next_logits, k=10)
top_tokens = [tokenizer.decode([t]) for t in topk_idxs]
records.append({
"text_idx": idx,
"text": text,
"pos": pos,
"token_id": token_id,
"token_text": token_text,
"activation_vector": activation.tolist(),
"top_tokens": top_tokens,
"activation_norm": activation.norm().item(),
})
total_tokens += 1
if (idx + 1) % 5 == 0:
print(f" Processed {idx + 1}/{len(texts)} texts ({total_tokens} tokens so far)")
print(f" ✅ Extracted {total_tokens} activations from {len(texts)} texts")
return records
# ── Pass 2: Generate teacher explanations ──────────────
def generate_teacher_explanations(
model, tokenizer, records, device, dtype,
max_samples=500, batch_prompt=False,
):
"""
For each record, generate a teacher explanation using the instruct model.
Teacher prompt (instruct format):
Given a context and token position, explain what the model might be focusing on.
"""
print("=" * 60)
print("📝 Pass 2: Generating Teacher Explanations")
print("=" * 60)
# Determine instruct chat template format
# Qwen3 instruct uses: <|im_start|>system...<|im_end|> etc
# But for base model style, just use a simple prompt
system_msg = "你是一个模型可解释性专家。给定一段文本和其中的某个位置,用1-2句中文简短解释模型在该位置可能关注什么语义信息。不要长篇分析。"
# Sample records, ensuring diversity across texts
random.seed(42)
n_texts = len(set(r["text_idx"] for r in records))
samples_per_text = max(1, max_samples // n_texts)
# Stratified sample: take at least 15 tokens per text (or all if fewer available)
texts_grouped = {}
for r in records:
texts_grouped.setdefault(r["text_idx"], []).append(r)
sampled_records = []
for tidx in sorted(texts_grouped.keys()):
group = texts_grouped[tidx]
# Take evenly spaced positions for diversity
n = min(len(group), max(15, samples_per_text))
indices = sorted(random.sample(range(len(group)), min(n, len(group))))
for i in indices:
sampled_records.append(group[i])
# If we have fewer than target, take more
if len(sampled_records) < max_samples and len(sampled_records) < len(records):
existing_ids = set(id(r) for r in sampled_records)
more = [r for r in records if id(r) not in existing_ids]
remaining = max_samples - len(sampled_records)
sampled_records.extend(random.sample(more, min(remaining, len(more))))
print(f" Target: {max_samples} samples, selected {len(sampled_records)} for labeling")
results = []
teacher_failures = 0
for i, rec in enumerate(sampled_records):
text = rec["text"]
pos = rec["pos"]
token_text = rec["token_text"]
top_tokens = rec["top_tokens"]
# Build instruction prompt
user_msg = (
f"文本:{text}\n"
f"位置:第{pos}个token(文本位置),该token文本是「{token_text}」\n"
f"该位置模型预测的下一个token候选:{', '.join(top_tokens[:5])}\n\n"
f"请用1-2句中文解释:模型在这个位置可能关注什么?"
)
messages = [
{"role": "system", "content": system_msg},
{"role": "user", "content": user_msg},
]
prompt = tokenizer.apply_chat_template(
messages, tokenize=False, add_generation_prompt=True
)
inputs = tokenizer(prompt, return_tensors="pt").to(device)
try:
with torch.no_grad():
output_ids = model.generate(
**inputs,
max_new_tokens=64,
do_sample=True,
temperature=0.7,
top_p=0.9,
pad_token_id=tokenizer.pad_token_id or tokenizer.eos_token_id,
)
# Extract the generated part (skip input prompt)
generated = output_ids[0][inputs["input_ids"].shape[1]:]
explanation = tokenizer.decode(generated, skip_special_tokens=True).strip()
if not explanation or len(explanation) < 5:
explanation = "[空输出]"
teacher_failures += 1
except Exception as e:
explanation = f"[生成失败: {e}]"
teacher_failures += 1
rec["teacher_explanation"] = explanation
results.append(rec)
if (i + 1) % 20 == 0 or i == 0:
print(f" [{i+1}/{len(sampled_records)}] token={token_text!r} -> {explanation[:60]}...")
print(f"\n ✅ Generated {len(results)} explanations")
print(f" ⚠️ Failures/empty: {teacher_failures}/{len(results)}")
return results
# ── Save dataset ────────────────────────────────────────
def save_dataset(records, nla_meta: dict):
"""Save dataset as JSONL + stats."""
# Strip bulky activation vectors for JSONL (keep as separate array file)
jsonl_path = ARTIFACTS_DIR / "dataset.jsonl"
# Save activations as a separate .pt file for efficiency
act_path = ARTIFACTS_DIR / "activations.pt"
activation_tensors = []
json_records = []
for r in records:
act = r.pop("activation_vector")
activation_tensors.append(torch.tensor(act))
json_records.append(r)
with open(jsonl_path, "w", encoding="utf-8") as f:
for rec in json_records:
f.write(json.dumps(rec, ensure_ascii=False) + "\n")
torch.save(torch.stack(activation_tensors), act_path)
print(f"\n 💾 Dataset saved:")
print(f" {jsonl_path} ({len(json_records)} records)")
print(f" {act_path} ({activation_tensors[0].shape})")
# Stats
n_texts = len(set(r["text_idx"] for r in json_records))
has_explanation = sum(1 for r in json_records if r.get("teacher_explanation"))
empty_explanation = sum(1 for r in json_records if r.get("teacher_explanation") in ("[空输出]", None, ""))
stats = {
"total_records": len(json_records),
"texts_used": n_texts,
"records_with_explanation": has_explanation,
"records_empty_explanation": empty_explanation,
"d_model": activation_tensors[0].shape[0],
}
stats_path = ARTIFACTS_DIR / "dataset_stats.json"
with open(stats_path, "w", encoding="utf-8") as f:
json.dump(stats, f, ensure_ascii=False, indent=2)
print(f" {stats_path}")
# Update nla_meta
nla_meta["training"]["dataset_size"] = len(json_records)
with open(SIDECAR_PATH, "w", encoding="utf-8") as f:
import yaml
yaml.dump(nla_meta, f, allow_unicode=True, sort_keys=False, default_flow_style=False)
print(f" sidecar updated with dataset_size={len(json_records)}")
return json_records
# ── main ───────────────────────────────────────────────
def main():
print("=" * 60)
print("📦 TINY-NLA DATA GENERATION")
print("=" * 60)
print()
device = detect_device()
dtype = get_dtype(device)
print(f" Device: {device}, dtype: {dtype}")
# Load sidecar
with open(SIDECAR_PATH, "r") as f:
import yaml
nla_meta = yaml.safe_load(f)
layer_idx = nla_meta["layer_index"]
max_samples = 500
# ── Pass 1: Extract activations ──
print(f"\n Loading BASE model for activation extraction...")
t0 = time.perf_counter()
base_model = AutoModelForCausalLM.from_pretrained(
BASE_MODEL,
trust_remote_code=True,
torch_dtype=dtype,
low_cpu_mem_usage=True,
attn_implementation="eager",
).to(device)
base_model.eval()
base_tokenizer = AutoTokenizer.from_pretrained(BASE_MODEL, trust_remote_code=True)
print(f" Base model loaded in {time.perf_counter() - t0:.1f}s")
all_records = extract_activations(base_model, base_tokenizer, TEXTS, layer_idx, device, dtype)
# Clean up base model to free memory
del base_model
if device.type == "mps":
torch.mps.empty_cache()
print(" Base model freed from memory\n")
# ── Pass 2: Generate teacher explanations ──
print(f" Loading INSTRUCT model for teacher...")
t0 = time.perf_counter()
instruct_model = AutoModelForCausalLM.from_pretrained(
INSTRUCT_MODEL,
trust_remote_code=True,
torch_dtype=dtype,
low_cpu_mem_usage=True,
attn_implementation="eager",
).to(device)
instruct_model.eval()
instruct_tokenizer = AutoTokenizer.from_pretrained(INSTRUCT_MODEL, trust_remote_code=True)
print(f" Instruct model loaded in {time.perf_counter() - t0:.1f}s")
results = generate_teacher_explanations(
instruct_model, instruct_tokenizer, all_records,
device, dtype, max_samples=max_samples,
)
# Clean up
del instruct_model
if device.type == "mps":
torch.mps.empty_cache()
# ── Save ──
json_records = save_dataset(results, nla_meta)
# ── Quality check ──
print()
print("=" * 60)
print("🔍 Quick Quality Check")
print("=" * 60)
sample = random.Random(42).sample(json_records, min(10, len(json_records)))
for r in sample:
exp = r.get("teacher_explanation", "")
print(f" [{r['token_text']!r:10}] {exp[:80]}")
print()
print("✅ Data generation complete!")
print(f" Dataset: {ARTIFACTS_DIR}/dataset.jsonl")
print(f" Activations: {ARTIFACTS_DIR}/activations.pt")
print(f" Stats: {ARTIFACTS_DIR}/dataset_stats.json")
print(f" Sidecar: {SIDECAR_PATH}")
if __name__ == "__main__":
main()
|