File size: 19,332 Bytes
5df6e5e | 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 | import os, math, random, time, json, copy
from pathlib import Path
import torch
import torch.nn.functional as F
from tokenizers import Tokenizer
from transformers import LlamaConfig, LlamaForCausalLM
# βββββββββββββββββββββββββββββββββββββββββββββ
# Paths β ajuste se necessΓ‘rio
# βββββββββββββββββββββββββββββββββββββββββββββ
TEACHER_WEIGHTS = "model.safetensors"
TOKENIZER_FILE = "tokenizer.json"
OUTPUT_DIR = Path("student_output")
# βββββββββββββββββββββββββββββββββββββββββββββ
# HiperparΓ’metros
# βββββββββββββββββββββββββββββββββββββββββββββ
TEMPERATURE = 2.0 # suaviza a distribuiΓ§Γ£o do teacher no KL
ALPHA = 0.7 # peso do KL loss (1-alpha = peso do CE loss)
LR = 3e-4
WEIGHT_DECAY = 0.01
MAX_STEPS = 3000 # passos totais de treino
SAVE_EVERY = 500 # salva checkpoint a cada N passos
LOG_EVERY = 50 # loga loss a cada N passos
GEN_MAX_TOKENS = 128 # tokens gerados pelo teacher por seed
SEQ_LEN = 128 # tamanho da janela de contexto para o treino
BATCH_SIZE = 4 # sequΓͺncias por passo (CPU friendly)
SEED = 42
# βββββββββββββββββββββββββββββββββββββββββββββ
# Arquiteturas
# βββββββββββββββββββββββββββββββββββββββββββββ
TEACHER_CONFIG = dict(
vocab_size=4096, hidden_size=64, intermediate_size=128,
num_hidden_layers=5, num_attention_heads=8, num_key_value_heads=8,
max_position_embeddings=512, rms_norm_eps=1e-6,
tie_word_embeddings=True, use_cache=False,
bos_token_id=0, eos_token_id=2, pad_token_id=1,
)
STUDENT_CONFIG = dict(
vocab_size=4096, hidden_size=48, intermediate_size=96,
num_hidden_layers=4, num_attention_heads=6, num_key_value_heads=6,
max_position_embeddings=512, rms_norm_eps=1e-6,
tie_word_embeddings=True, use_cache=False,
bos_token_id=0, eos_token_id=2, pad_token_id=1,
)
# βββββββββββββββββββββββββββββββββββββββββββββ
# Seed prompts (texto corrido, estilo FineWeb-Edu)
# O teacher Γ© um modelo base β ele continua texto, nΓ£o responde perguntas.
# βββββββββββββββββββββββββββββββββββββββββββββ
SEED_PROMPTS = [
# CiΓͺncias
"The process of photosynthesis allows plants to",
"In chemistry, the periodic table organizes elements by",
"The theory of evolution explains how species",
"Gravity is a fundamental force that causes",
"The human nervous system is responsible for",
"Cells are the basic unit of life and they",
"The water cycle describes how water moves through",
"Atoms are the smallest units of matter and",
"The immune system protects the body by",
"Energy cannot be created or destroyed, it can only",
"The speed of light in a vacuum is",
"DNA carries the genetic information that determines",
"The laws of thermodynamics describe how energy",
"In physics, Newton's laws of motion state that",
"The ecosystem consists of living organisms and their",
# HistΓ³ria e sociedade
"The Renaissance was a period in European history when",
"The Industrial Revolution transformed society by",
"Ancient civilizations built complex societies through",
"Democracy is a system of government in which",
"The printing press changed the spread of knowledge by",
"Trade routes in the ancient world connected",
"The development of writing allowed humans to",
"Philosophical inquiry began in ancient Greece when",
"The scientific revolution changed the way people",
"Colonial expansion in the 15th century led to",
"The concept of human rights emerged from",
"Language shapes the way people think and",
"Art throughout history has served to",
"Economic systems determine how resources are",
"Education plays a central role in society because",
# Tecnologia e matemΓ‘tica (conceitual, sem cΓ‘lculo)
"Computers process information using binary code, which",
"The internet connects millions of devices around",
"Algorithms are step-by-step instructions that",
"Mathematical patterns can be found in nature when",
"Logic is the foundation of reasoning and",
"Statistics help us understand data by",
"Geometry studies the properties of shapes and",
"The concept of infinity in mathematics refers to",
"Programming languages allow humans to communicate with",
"Artificial intelligence systems learn from",
# Natureza e meio ambiente
"The Amazon rainforest is home to an extraordinary number of",
"Climate change is caused by an increase in",
"Ocean currents play an important role in regulating",
"Biodiversity refers to the variety of life found in",
"The nitrogen cycle is essential for life because",
"Renewable energy sources such as solar and wind",
"Deforestation has significant consequences for",
"Mountains are formed through geological processes including",
"The atmosphere protects life on Earth by",
"Coral reefs are important ecosystems that support",
# Filosofia e cogniΓ§Γ£o
"Critical thinking involves the ability to",
"Memory is the cognitive process by which",
"The brain processes information through complex networks of",
"Consciousness refers to the state of being aware of",
"Learning occurs most effectively when",
"Creativity is the capacity to generate new ideas by",
"Problem solving requires breaking a challenge into",
"Curiosity drives scientific discovery because",
"Knowledge is built through observation and",
"Understanding a concept deeply means being able to",
# Medicina e corpo humano
"The cardiovascular system circulates blood throughout",
"Nutrition is fundamental to health because",
"Sleep is essential for cognitive function and",
"Exercise improves physical health by",
"The digestive system breaks down food into",
"Mental health is as important as physical health because",
"Vaccines work by training the immune system to",
"The skeletal system provides structure and support for",
"Hormones regulate many bodily functions including",
"The lungs exchange oxygen and carbon dioxide through",
]
# βββββββββββββββββββββββββββββββββββββββββββββ
# UtilitΓ‘rios
# βββββββββββββββββββββββββββββββββββββββββββββ
def set_seed(seed: int):
random.seed(seed)
torch.manual_seed(seed)
def count_params(model: torch.nn.Module) -> int:
return sum(p.numel() for p in model.parameters())
def make_config(cfg: dict) -> LlamaConfig:
c = LlamaConfig(**cfg)
c.rope_theta = 10000.0
return c
def load_teacher(weights_path: str, cfg: dict, device: torch.device) -> LlamaForCausalLM:
config = make_config(cfg)
model = LlamaForCausalLM(config)
state = {}
from safetensors.torch import load_file
raw = load_file(weights_path)
# remove prefixo 'model.' se presente para compatibilidade
for k, v in raw.items():
new_k = k[len("model."):] if k.startswith("model.") else k
state[new_k] = v
# tie_word_embeddings: lm_head.weight == embed_tokens.weight
if "lm_head.weight" not in state and "embed_tokens.weight" in state:
state["lm_head.weight"] = state["embed_tokens.weight"]
missing, unexpected = model.model.load_state_dict(state, strict=False)
if missing:
# tenta carregar no modelo completo
full_state = {f"model.{k}": v for k, v in state.items()}
model.load_state_dict(full_state, strict=False)
model.to(device)
model.eval()
for p in model.parameters():
p.requires_grad_(False)
return model
def build_student(cfg: dict, device: torch.device) -> LlamaForCausalLM:
config = make_config(cfg)
model = LlamaForCausalLM(config)
model.to(device)
model.train()
return model
# βββββββββββββββββββββββββββββββββββββββββββββ
# GeraΓ§Γ£o de sequΓͺncias com o teacher
# βββββββββββββββββββββββββββββββββββββββββββββ
@torch.no_grad()
def teacher_generate(
teacher: LlamaForCausalLM,
input_ids: torch.Tensor,
max_new_tokens: int,
temperature: float = 1.0,
top_k: int = 25,
) -> torch.Tensor:
"""GeraΓ§Γ£o autoregressiva simples com top-k sampling."""
ids = input_ids.clone()
max_pos = teacher.config.max_position_embeddings
for _ in range(max_new_tokens):
if ids.shape[1] >= max_pos:
break
logits = teacher(ids).logits[:, -1, :] # (B, V)
logits = logits / max(temperature, 1e-8)
top_vals, _ = torch.topk(logits, top_k, dim=-1)
threshold = top_vals[:, -1].unsqueeze(-1)
logits = logits.masked_fill(logits < threshold, float("-inf"))
probs = F.softmax(logits, dim=-1)
next_id = torch.multinomial(probs, num_samples=1) # (B, 1)
ids = torch.cat([ids, next_id], dim=1)
# para se todos geraram EOS
if (next_id == teacher.config.eos_token_id).all():
break
return ids
# βββββββββββββββββββββββββββββββββββββββββββββ
# Distillation loss
# βββββββββββββββββββββββββββββββββββββββββββββ
def distill_loss(
student_logits: torch.Tensor,
teacher_logits: torch.Tensor,
labels: torch.Tensor,
temperature: float,
alpha: float,
) -> tuple[torch.Tensor, torch.Tensor, torch.Tensor]:
"""
Retorna (loss_total, kl_loss, ce_loss).
student_logits / teacher_logits : (B, T, V)
labels : (B, T) β token ids, -100 para ignorar
"""
B, T, V = student_logits.shape
# ββ KL Divergence (soft labels) ββββββββββββββββββββββββββββββββββββββ
# Flatten para (B*T, V)
s_log_probs = F.log_softmax(student_logits.view(-1, V) / temperature, dim=-1)
t_probs = F.softmax(teacher_logits.view(-1, V) / temperature, dim=-1)
kl = F.kl_div(s_log_probs, t_probs, reduction="batchmean") * (temperature ** 2)
# ββ Cross-Entropy (hard labels) ββββββββββββββββββββββββββββββββββββββ
# shift: prediz token i+1 a partir do token i
shift_logits = student_logits[:, :-1, :].contiguous().view(-1, V)
shift_labels = labels[:, 1:].contiguous().view(-1)
ce = F.cross_entropy(shift_logits, shift_labels, ignore_index=-100)
loss = alpha * kl + (1.0 - alpha) * ce
return loss, kl.detach(), ce.detach()
# βββββββββββββββββββββββββββββββββββββββββββββ
# Treino
# βββββββββββββββββββββββββββββββββββββββββββββ
def train():
set_seed(SEED)
device = torch.device("cpu")
OUTPUT_DIR.mkdir(parents=True, exist_ok=True)
print("=" * 60)
print(" Supra Mini β Distillation Pipeline")
print("=" * 60)
# ββ Tokenizer ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if not Path(TOKENIZER_FILE).exists():
raise FileNotFoundError(
f"Tokenizer nΓ£o encontrado: '{TOKENIZER_FILE}'\n"
f"Renomeie o arquivo 'tokenizer__1_.json' para 'tokenizer.json' "
f"e coloque na mesma pasta deste script."
)
tokenizer = Tokenizer.from_file(TOKENIZER_FILE)
tokenizer.no_padding()
tokenizer.no_truncation()
print(f" Tokenizer carregado β vocab={tokenizer.get_vocab_size()}")
# ββ Teacher ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if not Path(TEACHER_WEIGHTS).exists():
raise FileNotFoundError(
f"Pesos do teacher nΓ£o encontrados: '{TEACHER_WEIGHTS}'\n"
f"Coloque o arquivo 'model.safetensors' na mesma pasta."
)
teacher = load_teacher(TEACHER_WEIGHTS, TEACHER_CONFIG, device)
print(f" Teacher carregado β params={count_params(teacher):,} [frozen]")
# ββ Student ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
student = build_student(STUDENT_CONFIG, device)
print(f" Student inicializado β params={count_params(student):,} [trainable]")
print(f" CompressΓ£o β {count_params(teacher)/count_params(student):.2f}x")
print("=" * 60)
optimizer = torch.optim.AdamW(
student.parameters(), lr=LR, weight_decay=WEIGHT_DECAY
)
scheduler = torch.optim.lr_scheduler.CosineAnnealingLR(
optimizer, T_max=MAX_STEPS, eta_min=LR * 0.1
)
bos_id = TEACHER_CONFIG["bos_token_id"]
eos_id = TEACHER_CONFIG["eos_token_id"]
pad_id = TEACHER_CONFIG["pad_token_id"]
step = 0
running_loss = 0.0
running_kl = 0.0
running_ce = 0.0
t_start = time.time()
print(f"\n Iniciando treino β {MAX_STEPS} passos\n")
while step < MAX_STEPS:
# ββ Gera batch de sequΓͺncias com o teacher ββββββββββββββββββββββββ
sequences = []
random.shuffle(SEED_PROMPTS)
for prompt in SEED_PROMPTS:
if len(sequences) >= BATCH_SIZE:
break
enc = tokenizer.encode(prompt)
prompt_ids = torch.tensor([[bos_id] + enc.ids], dtype=torch.long)
with torch.no_grad():
gen_ids = teacher_generate(
teacher, prompt_ids,
max_new_tokens=GEN_MAX_TOKENS,
temperature=1.0,
top_k=25,
)
# Trunca / padeia para SEQ_LEN
seq = gen_ids[0].tolist()
if len(seq) < SEQ_LEN:
seq = seq + [pad_id] * (SEQ_LEN - len(seq))
else:
seq = seq[:SEQ_LEN]
sequences.append(seq)
if not sequences:
continue
input_ids = torch.tensor(sequences, dtype=torch.long) # (B, T)
# Labels: -100 nos pads para ignorar no CE
labels = input_ids.clone()
labels[labels == pad_id] = -100
# ββ Forward pass teacher (sem gradiente) βββββββββββββββββββββββββ
with torch.no_grad():
teacher_logits = teacher(input_ids).logits # (B, T, V)
# ββ Forward pass student ββββββββββββββββββββββββββββββββββββββββββ
student_logits = student(input_ids).logits # (B, T, V)
# ββ Loss ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
loss, kl, ce = distill_loss(
student_logits, teacher_logits, labels,
temperature=TEMPERATURE, alpha=ALPHA,
)
# ββ Backprop βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
optimizer.zero_grad()
loss.backward()
torch.nn.utils.clip_grad_norm_(student.parameters(), max_norm=1.0)
optimizer.step()
scheduler.step()
step += 1
running_loss += loss.item()
running_kl += kl.item()
running_ce += ce.item()
# ββ Log βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if step % LOG_EVERY == 0:
avg_loss = running_loss / LOG_EVERY
avg_kl = running_kl / LOG_EVERY
avg_ce = running_ce / LOG_EVERY
elapsed = time.time() - t_start
steps_s = step / elapsed
eta_s = (MAX_STEPS - step) / max(steps_s, 1e-6)
eta_min = eta_s / 60
print(
f" step {step:>5}/{MAX_STEPS}"
f" loss={avg_loss:.4f}"
f" kl={avg_kl:.4f}"
f" ce={avg_ce:.4f}"
f" lr={scheduler.get_last_lr()[0]:.2e}"
f" {steps_s:.2f} steps/s"
f" ETA {eta_min:.1f}min"
)
running_loss = running_kl = running_ce = 0.0
# ββ Checkpoint ββββββββββββββββββββββββββββββββββββββββββββββββββββ
if step % SAVE_EVERY == 0:
ckpt_path = OUTPUT_DIR / f"student_step{step}.pt"
torch.save(student.state_dict(), ckpt_path)
print(f"\n β Checkpoint salvo: {ckpt_path}\n")
# ββ Salva modelo final ββββββββββββββββββββββββββββββββββββββββββββββββ
final_path = OUTPUT_DIR / "student_final.pt"
torch.save(student.state_dict(), final_path)
# Salva config do student para carregar depois
with open(OUTPUT_DIR / "config_student.json", "w") as f:
json.dump(STUDENT_CONFIG, f, indent=2)
total_time = (time.time() - t_start) / 60
print(f"\n{'='*60}")
print(f" Treino concluΓdo em {total_time:.1f} minutos")
print(f" Modelo salvo em: {final_path}")
print(f"{'='*60}")
if __name__ == "__main__":
train()
|