File size: 29,630 Bytes
a2d6a0d | 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 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 | #!/usr/bin/env python3
# SPDX-License-Identifier: BUSL-1.1
"""
eval_v3.py — Evaluación de generalización real de PamparV3.
Ejecuta prompts nunca vistos, genera código y lo ejecuta con asserts reales.
Uso:
python -X utf8 scripts/eval_v3.py
python -X utf8 scripts/eval_v3.py --checkpoint checkpoints/v3_train.pt --temp 0.4
python -X utf8 scripts/eval_v3.py --verbose
"""
import argparse
import ast
import re
import sys
import time
from pathlib import Path
import torch
import torch.nn.functional as F
sys.path.insert(0, str(Path(__file__).parent.parent))
# =============================================================================
# CASOS DE PRUEBA — nunca vistos por el modelo
# =============================================================================
CASOS = [
# ── Nivel 1: básicos ────────────────────────────────────────────────────
{
"nivel": 1,
"desc": "Contar vocales",
"prompt": (
"### Problem:\n"
"Write a Python function `contar_vocales(texto)` that returns the number "
"of vowels (a, e, i, o, u, case-insensitive) in the string.\n"
"### Solution:\n"
),
"verificar": lambda ns: (
ns["contar_vocales"]("hola mundo") == 4
and ns["contar_vocales"]("") == 0
and ns["contar_vocales"]("xyz") == 0
),
},
{
"nivel": 1,
"desc": "Sumar dígitos",
"prompt": (
"### Problem:\n"
"Write a Python function `suma_digitos(n)` that returns the sum of all "
"digits of the non-negative integer n.\n"
"### Solution:\n"
),
"verificar": lambda ns: (
ns["suma_digitos"](123) == 6
and ns["suma_digitos"](0) == 0
and ns["suma_digitos"](999) == 27
),
},
{
"nivel": 1,
"desc": "Palíndromo",
"prompt": (
"### Problem:\n"
"Write a Python function `es_palindromo(s)` that returns True if the "
"string is a palindrome, False otherwise.\n"
"### Solution:\n"
),
"verificar": lambda ns: (
ns["es_palindromo"]("racecar") is True
and ns["es_palindromo"]("hello") is False
and ns["es_palindromo"]("a") is True
),
},
{
"nivel": 1,
"desc": "Máximo de lista",
"prompt": (
"### Problem:\n"
"Write a Python function `maximo(lista)` that returns the maximum element "
"of a non-empty list without using the built-in max().\n"
"### Solution:\n"
),
"verificar": lambda ns: (
ns["maximo"]([3, 1, 4, 1, 5, 9]) == 9
and ns["maximo"]([0]) == 0
and ns["maximo"]([-1, -5, -2]) == -1
),
},
{
"nivel": 1,
"desc": "FizzBuzz single",
"prompt": (
"### Problem:\n"
"Write a Python function `fizzbuzz(n)` that returns 'FizzBuzz' if n is "
"divisible by both 3 and 5, 'Fizz' if divisible by 3, 'Buzz' if divisible "
"by 5, or the string representation of n otherwise.\n"
"### Solution:\n"
),
"verificar": lambda ns: (
ns["fizzbuzz"](15) == "FizzBuzz"
and ns["fizzbuzz"](3) == "Fizz"
and ns["fizzbuzz"](5) == "Buzz"
and ns["fizzbuzz"](7) == "7"
),
},
# ── Nivel 2: listas/dicts ───────────────────────────────────────────────
{
"nivel": 2,
"desc": "Aplanar lista un nivel",
"prompt": (
"### Problem:\n"
"Write a Python function `aplanar(lista)` that flattens a list of lists "
"by one level and returns the result as a single list.\n"
"### Solution:\n"
),
"verificar": lambda ns: (
ns["aplanar"]([[1, 2], [3, 4], [5]]) == [1, 2, 3, 4, 5]
and ns["aplanar"]([]) == []
),
},
{
"nivel": 2,
"desc": "Frecuencia de elementos",
"prompt": (
"### Problem:\n"
"Write a Python function `frecuencia(lista)` that returns a dictionary "
"mapping each element to its count in the list.\n"
"### Solution:\n"
),
"verificar": lambda ns: (
ns["frecuencia"]([1, 2, 2, 3, 3, 3]) == {1: 1, 2: 2, 3: 3}
and ns["frecuencia"]([]) == {}
),
},
{
"nivel": 2,
"desc": "Lista de cuadrados pares",
"prompt": (
"### Problem:\n"
"Write a Python function `cuadrados_pares(n)` that returns a list of "
"squares of all even numbers from 2 to n inclusive.\n"
"### Solution:\n"
),
"verificar": lambda ns: (
ns["cuadrados_pares"](6) == [4, 16, 36] and ns["cuadrados_pares"](1) == []
),
},
{
"nivel": 2,
"desc": "Invertir diccionario",
"prompt": (
"### Problem:\n"
"Write a Python function `invertir_dict(d)` that returns a new dictionary "
"with keys and values swapped.\n"
"### Solution:\n"
),
"verificar": lambda ns: (
ns["invertir_dict"]({"a": 1, "b": 2}) == {1: "a", 2: "b"}
and ns["invertir_dict"]({}) == {}
),
},
# ── Nivel 3: algoritmos ─────────────────────────────────────────────────
{
"nivel": 3,
"desc": "Fibonacci iterativo",
"prompt": (
"### Problem:\n"
"Write a Python function `fibonacci(n)` that returns the n-th Fibonacci "
"number (0-indexed: fibonacci(0)=0, fibonacci(1)=1, fibonacci(7)=13).\n"
"### Solution:\n"
),
"verificar": lambda ns: (
ns["fibonacci"](0) == 0
and ns["fibonacci"](1) == 1
and ns["fibonacci"](7) == 13
and ns["fibonacci"](10) == 55
),
},
{
"nivel": 3,
"desc": "Busqueda binaria",
"prompt": (
"### Problem:\n"
"Write a Python function `busqueda_binaria(lista, objetivo)` that returns "
"the index of the target in a sorted list, or -1 if not found.\n"
"### Solution:\n"
),
"verificar": lambda ns: (
ns["busqueda_binaria"]([1, 3, 5, 7, 9], 5) == 2
and ns["busqueda_binaria"]([1, 3, 5, 7, 9], 4) == -1
and ns["busqueda_binaria"]([], 1) == -1
),
},
{
"nivel": 3,
"desc": "Merge sort",
"prompt": (
"### Problem:\n"
"Write a Python function `merge_sort(lista)` that returns a new sorted "
"list using the merge sort algorithm.\n"
"### Solution:\n"
),
"verificar": lambda ns: (
ns["merge_sort"]([3, 1, 4, 1, 5, 9, 2, 6]) == [1, 1, 2, 3, 4, 5, 6, 9]
and ns["merge_sort"]([]) == []
and ns["merge_sort"]([1]) == [1]
),
},
# ── Nivel 4: clases/OOP ─────────────────────────────────────────────────
{
"nivel": 4,
"desc": "Clase Stack básica",
"prompt": (
"### Problem:\n"
"Write a Python class `Stack` with methods `push(item)` and `pop()` "
"implementing a LIFO stack.\n"
"### Solution:\n"
),
"verificar": lambda ns: (
(s := ns["Stack"]()) is not None
and (s.push(1) or True)
and (s.push(2) or True)
and s.pop() == 2
and s.pop() == 1
),
},
{
"nivel": 4,
"desc": "Clase Punto con distancia",
"prompt": (
"### Problem:\n"
"Write a Python class `Punto` with attributes `x` and `y`, and a method "
"`distancia(otro)` that returns the Euclidean distance to another Punto.\n"
"### Solution:\n"
),
"verificar": lambda ns: ns["Punto"](0, 0).distancia(ns["Punto"](3, 4)) == 5.0,
},
# ── Nivel 5: funcional/avanzado ─────────────────────────────────────────
{
"nivel": 5,
"desc": "Memoización con decorador",
"prompt": (
"### Problem:\n"
"Write a Python higher-order function `memoize(fn)` that returns a wrapped "
"version of fn that caches results by argument.\n"
"### Solution:\n"
),
"verificar": lambda ns: (
(fn := ns["memoize"](lambda x: x * 2)) is not None
and fn(5) == 10
and fn(5) == 10 # cache hit
),
},
{
"nivel": 5,
"desc": "Generador de números primos",
"prompt": (
"### Problem:\n"
"Write a Python generator function `primos_hasta(n)` that yields all "
"prime numbers up to and including n.\n"
"### Solution:\n"
),
"verificar": lambda ns: (
list(ns["primos_hasta"](20)) == [2, 3, 5, 7, 11, 13, 17, 19]
),
},
]
# =============================================================================
# Carga del modelo v3 (delegada a pampar.inference)
# =============================================================================
from pampar.inference import load_model
# =============================================================================
# Extracción de firma para modo guiado
# =============================================================================
def extraer_firma(prompt: str) -> str:
"""Extract function/class signature from prompt for guided generation."""
m = re.search(r"class `(\w+)`", prompt)
if m:
return f"class {m.group(1)}:"
m = re.search(r"function `(\w+\([^)]*\))`", prompt)
if m:
return f"def {m.group(1)}:"
return ""
# =============================================================================
# Generación greedy / top-p
# =============================================================================
@torch.no_grad()
def generar(
modelo,
tokenizer,
prompt: str,
device,
max_tokens: int = 384,
temperature: float = 0.1,
repetition_penalty: float = 1.2,
rep_window: int = 32,
) -> str:
ids = tokenizer.Encode(prompt)
generados = list(ids)
for _ in range(max_tokens):
ctx = torch.tensor([generados[-512:]], dtype=torch.long, device=device)
logits, _, _ = modelo(ctx)
next_logits = logits[0, -1]
# Penalizar solo tokens en una ventana reciente (no destruir nombres)
if repetition_penalty != 1.0 and len(generados) > len(ids):
window_start = max(len(ids), len(generados) - rep_window)
seen = set(generados[window_start:])
for token_id in seen:
if next_logits[token_id] > 0:
next_logits[token_id] /= repetition_penalty
else:
next_logits[token_id] *= repetition_penalty
if temperature <= 0.0:
next_token = int(next_logits.argmax())
else:
next_logits = next_logits / temperature
probs = F.softmax(next_logits, dim=-1)
next_token = int(torch.multinomial(probs, 1))
generados.append(next_token)
decoded = tokenizer.Decode(generados[len(ids) :]).replace("\u2047", "\n")
# Stop: repetition detector — same line appearing 3+ times
dec_lines = decoded.split("\n")
if len(dec_lines) > 6:
last_line = dec_lines[-1].strip()
if last_line and sum(1 for l in dec_lines if l.strip() == last_line) >= 3:
# Trim to content before the repeated lines
clean = []
for l in dec_lines:
if l.strip() == last_line and len(clean) > 2:
break
clean.append(l)
return prompt + "\n".join(clean).rstrip()
# Parar si el modelo empieza una nueva sección (formato instrucción)
if "###" in decoded:
idx = decoded.index("###")
if idx > 10:
return prompt + decoded[:idx].rstrip()
# Parar cuando termina la función/clase (línea sin sangría después de contenido)
if len(dec_lines) > 3:
for i, line in enumerate(dec_lines[2:], 2):
if line and not line[0].isspace() and line.strip() not in ("", "pass"):
partial = "\n".join(dec_lines[:i])
return prompt + partial
if decoded.endswith("\n\n") and len(decoded) > 20:
break
return tokenizer.Decode(generados).replace("\u2047", "\n")
# =============================================================================
# Normalización de indentación
# =============================================================================
def _normalizar_indentacion(codigo: str) -> str:
"""Corregir indentación inconsistente (ej. 5 espacios → 4) redondeando a múltiplos de 4."""
lines = codigo.split("\n")
if not lines:
return codigo
fixed = [lines[0]] # Primera línea (def/class) se mantiene
for line in lines[1:]:
stripped = line.lstrip()
if not stripped:
fixed.append("")
continue
spaces = len(line) - len(stripped)
# Redondear a múltiplo de 4 más cercano, mínimo 4 si dentro de función/clase
normalized = round(spaces / 4) * 4
if normalized < 4 and lines[0].lstrip().startswith(("def ", "class ")):
normalized = 4
fixed.append(" " * normalized + stripped)
return "\n".join(fixed)
def _reparar_bloques_huerfanos(codigo: str) -> str:
"""
Repara el error 'expected an indented block after X statement'.
Cuando el modelo genera:
if condicion:
cuerpo_sin_indentar ← same indent as 'if' → SyntaxError
Lo convierte en:
if condicion:
cuerpo_sin_indentar ← indent + 4
Itera hasta que no detecte más bloques huérfanos (max 10 pasadas).
"""
HEADERS = (
"if ",
"elif ",
"else:",
"for ",
"while ",
"try:",
"except",
"finally:",
"with ",
"def ",
"class ",
)
for _ in range(10):
lines = codigo.splitlines()
changed = False
i = 0
new_lines: list[str] = []
while i < len(lines):
line = lines[i]
ls = line.lstrip()
li = len(line) - len(ls)
is_header = line.rstrip().endswith(":") and any(
ls.startswith(h) for h in HEADERS
)
if is_header and i + 1 < len(lines):
nxt = lines[i + 1]
ns = nxt.lstrip()
ni = len(nxt) - len(ns)
# Next non-blank line must be MORE indented to form a valid block
if ns and ni <= li:
expected = li + 4
new_lines.append(line)
i += 1
# Re-indent all contiguous lines at the "wrong" indent level
while i < len(lines):
curr = lines[i]
cs = curr.lstrip()
ci = len(curr) - len(cs)
if not cs: # blank line — include but don't fix
new_lines.append(curr)
i += 1
continue
if ci < li: # exited back to parent scope → stop
break
if ci == ni: # still at the wrong indent level → fix
new_lines.append(" " * expected + cs)
i += 1
else:
break # different indent → let next iteration handle
changed = True
continue # re-process from current i
new_lines.append(line)
i += 1
codigo = "\n".join(new_lines)
if not changed:
break
return codigo
def _extraer_primer_bloque(codigo: str) -> str:
"""Extraer solo la primera función/clase completa, descartando definiciones duplicadas."""
lines = codigo.split("\n")
if not lines:
return codigo
result: list[str] = []
found_def = False
for line in lines:
stripped = line.lstrip()
# Si ya encontramos una definición y aparece otra del mismo tipo → parar
if found_def and (stripped.startswith("def ") or stripped.startswith("class ")):
indent = len(line) - len(stripped)
if indent == 0:
break
if stripped.startswith("def ") or stripped.startswith("class "):
found_def = True
result.append(line)
return "\n".join(result).rstrip()
# =============================================================================
# Ejecución segura
# =============================================================================
def _extraer_bloques_codigo(texto: str) -> list[str]:
"""Extraer todos los bloques ```python...``` del texto, más el texto crudo como fallback."""
import textwrap
bloques: list[str] = []
# Extraer todos los bloques ```python ... ```
partes = texto.split("```python")
for parte in partes[1:]: # Skip antes del primer ```python
if "```" in parte:
bloque = parte.split("```", 1)[0]
else:
bloque = parte
bloque = _extraer_primer_bloque(textwrap.dedent(bloque).strip())
if bloque.strip():
bloques.append(bloque)
# Fallback: si no había ```python, intentar con ``` genérico
if not bloques and "```" in texto:
partes = texto.split("```")
for i in range(1, len(partes), 2): # bloques impares son código
bloque = _extraer_primer_bloque(textwrap.dedent(partes[i]).strip())
if bloque.strip():
bloques.append(bloque)
# Fallback final: el texto crudo (después de ### Solution: si existe)
if not bloques:
crudo = (
texto.split("### Solution:")[-1].lstrip("\n")
if "### Solution:" in texto
else texto
)
crudo = _extraer_primer_bloque(textwrap.dedent(crudo).strip())
if crudo.strip():
bloques.append(crudo)
return bloques
def ejecutar_y_verificar(codigo: str, verificador) -> tuple[str, str]:
import textwrap
# Si el output es formato instrucción, extraer solo el código después de ### Solution:
if "### Solution:" in codigo:
codigo = codigo.split("### Solution:")[-1].lstrip("\n")
# Extraer TODOS los bloques de código candidatos
bloques = _extraer_bloques_codigo(codigo)
# Intentar cada bloque — devolver el primero que PASA
ultimo_estado, ultimo_detalle = "SINTAXIS", "no se encontró código"
for bloque in bloques:
estado, detalle = _intentar_bloque(bloque, verificador)
if estado == "PASA":
return "PASA", ""
# Guardar el error más informativo (FALLA > ERROR_EXEC > SINTAXIS)
prioridad = {"FALLA": 3, "ERROR_EXEC": 2, "SINTAXIS": 1}
if prioridad.get(estado, 0) >= prioridad.get(ultimo_estado, 0):
ultimo_estado, ultimo_detalle = estado, detalle
return ultimo_estado, ultimo_detalle
def _intentar_bloque(codigo: str, verificador) -> tuple[str, str]:
try:
ast.parse(codigo)
except SyntaxError:
# Intento 1: normalizar espacios-a-múltiplos-de-4
codigo = _normalizar_indentacion(codigo)
try:
ast.parse(codigo)
except SyntaxError:
# Intento 2: reparar bloques huérfanos (if/for sin cuerpo indentado)
codigo = _reparar_bloques_huerfanos(codigo)
try:
ast.parse(codigo)
except SyntaxError as e:
return "SINTAXIS", str(e)
ns = {}
try:
exec(compile(codigo, "<generated>", "exec"), ns)
except NameError as e:
# Intento 3: reparar NameError causado por variable indefinida en comprehension.
# Patrón: el modelo genera [x * i for x in range(...)] donde 'i' no está definido
# → se reemplaza la variable indefinida por la variable del loop.
import re as _re
undef_match = _re.search(r"name '(\w+)' is not defined", str(e))
if undef_match:
undef = undef_match.group(1)
# Buscar comprehensions del tipo [EXP for VAR in ...] donde EXP usa undef
comp_matches = list(
_re.finditer(r"\[.*?\bfor\s+(\w+)\s+in\b", codigo, _re.DOTALL)
)
for cm in comp_matches:
loop_var = cm.group(1)
if loop_var != undef:
codigo_fix = _re.sub(
r"\b" + _re.escape(undef) + r"\b", loop_var, codigo
)
try:
ns2: dict = {}
exec(compile(codigo_fix, "<generated>", "exec"), ns2)
resultado = verificador(ns2)
return (
("PASA", "")
if resultado
else ("FALLA", "verificador → False")
)
except Exception:
pass
return "ERROR_EXEC", f"{type(e).__name__}: {e}"
except Exception as e:
return "ERROR_EXEC", f"{type(e).__name__}: {e}"
try:
resultado = verificador(ns)
return ("PASA", "") if resultado else ("FALLA", "verificador → False")
except KeyError as e:
return "FALLA", f"función no definida: {e}"
except NameError as e:
# NameError dentro del cuerpo de la función (e.g. [x * i for x in range(...)])
# El handler del exec no lo captura porque la función se define sin error.
import re as _re
undef_match = _re.search(r"name '(\w+)' is not defined", str(e))
if undef_match:
undef = undef_match.group(1)
comp_matches = list(
_re.finditer(r"\[.*?\bfor\s+(\w+)\s+in\b", codigo, _re.DOTALL)
)
for cm in comp_matches:
loop_var = cm.group(1)
if loop_var != undef:
codigo_fix = _re.sub(
r"\b" + _re.escape(undef) + r"\b", loop_var, codigo
)
try:
ns2: dict = {}
exec(compile(codigo_fix, "<generated>", "exec"), ns2)
resultado = verificador(ns2)
return (
("PASA", "")
if resultado
else ("FALLA", "verificador → False")
)
except Exception:
pass
return "FALLA", f"NameError: {e}"
except Exception as e:
return "FALLA", f"{type(e).__name__}: {e}"
# =============================================================================
# Main
# =============================================================================
def main():
parser = argparse.ArgumentParser()
parser.add_argument("--checkpoint", default="checkpoints/v3_train.pt")
parser.add_argument("--temp", type=float, default=0.1)
parser.add_argument("--max-tokens", type=int, default=512)
parser.add_argument("--rep-penalty", type=float, default=1.2)
parser.add_argument(
"--guided",
action="store_true",
help="Include function/class signature in prompt (HumanEval style)",
)
parser.add_argument("--verbose", action="store_true")
parser.add_argument(
"--device", type=str, default="auto", help="'auto', 'cuda' o 'cpu'"
)
args = parser.parse_args()
if args.device == "auto":
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
else:
device = torch.device(args.device)
checkpoint = Path(args.checkpoint)
print(f"\n{'═' * 65}")
print(f" EVAL HONESTA — PamparV3 Generalización")
print(
f" Checkpoint : {checkpoint.name} ({checkpoint.stat().st_size / 1e9:.2f} GB)"
)
mode_str = "GUIDED" if args.guided else "OPEN"
print(
f" Device : {device} | Temp: {args.temp} | RepPen: {args.rep_penalty}"
)
print(f" Mode : {mode_str}")
print(f" Prompts : {len(CASOS)} (nunca vistos en entrenamiento)")
print(f"{'═' * 65}\n")
print(" Cargando modelo...", end=" ", flush=True)
t0 = time.time()
modelo, tokenizer = load_model(checkpoint, device, verbose=False)
n_params = sum(p.numel() for p in modelo.parameters()) / 1e6
print(f"OK ({n_params:.1f}M params, {time.time() - t0:.1f}s)\n")
resultados = []
t_start = time.time()
for i, caso in enumerate(CASOS, 1):
print(
f" [{i:02d}/{len(CASOS)}] Nivel {caso['nivel']} — {caso['desc']}",
end=" ",
flush=True,
)
t_gen = time.time()
prompt_gen = caso["prompt"]
if args.guided:
firma = extraer_firma(caso["prompt"])
if firma:
# Incluir hint de indentación (4 espacios) para primar al modelo
prompt_gen = caso["prompt"] + "```python\n" + firma + "\n "
codigo = generar(
modelo,
tokenizer,
prompt_gen,
device,
args.max_tokens,
args.temp,
args.rep_penalty,
)
dt = time.time() - t_gen
estado, detalle = ejecutar_y_verificar(codigo, caso["verificar"])
ICONOS = {"PASA": "✅", "FALLA": "❌", "SINTAXIS": "⚠️", "ERROR_EXEC": "💥"}
icono = ICONOS.get(estado, "?")
print(f"[{dt:.1f}s] {icono} {estado}" + (f" — {detalle}" if detalle else ""))
if args.verbose or estado != "PASA":
print()
for line in codigo.splitlines():
print(f" {line}")
print()
resultados.append(
{"desc": caso["desc"], "nivel": caso["nivel"], "estado": estado}
)
# ── Resumen ──────────────────────────────────────────────────────────────
elapsed = time.time() - t_start
pasan = sum(1 for r in resultados if r["estado"] == "PASA")
fallan = sum(1 for r in resultados if r["estado"] == "FALLA")
sintax = sum(1 for r in resultados if r["estado"] == "SINTAXIS")
errores = sum(1 for r in resultados if r["estado"] == "ERROR_EXEC")
total = len(resultados)
por_nivel: dict = {}
for r in resultados:
n = r["nivel"]
por_nivel.setdefault(n, {"pasan": 0, "total": 0})
por_nivel[n]["total"] += 1
if r["estado"] == "PASA":
por_nivel[n]["pasan"] += 1
print(f"\n{'═' * 65}")
print(f" RESULTADO FINAL — {elapsed:.0f}s total")
print(f"{'═' * 65}")
print(f" ✅ Pasan : {pasan}/{total} ({pasan / total * 100:.0f}%)")
print(f" ❌ Fallan : {fallan}/{total}")
print(f" ⚠️ Sintaxis : {sintax}/{total}")
print(f" 💥 Error exec : {errores}/{total}")
print()
print(" Por nivel:")
for nivel in sorted(por_nivel):
d = por_nivel[nivel]
barra = "█" * d["pasan"] + "░" * (d["total"] - d["pasan"])
print(f" Nivel {nivel}: {barra} {d['pasan']}/{d['total']}")
print()
pct = pasan / total * 100
if pct >= 80:
veredicto = "🟢 GENERALIZA BIEN — el modelo aprendió de verdad"
elif pct >= 50:
veredicto = "🟡 PARCIAL — aprende patrones pero falla en casos nuevos"
elif pct >= 25:
veredicto = "🟠 PROBABLE MEMORIZACIÓN — mejora en benchmark pero no generaliza"
else:
veredicto = "🔴 NO GENERALIZA — 134k pasos no fueron suficientes"
print(f" {veredicto}")
print(f"{'═' * 65}\n")
if __name__ == "__main__":
main()
|