File size: 12,760 Bytes
eea0011 | 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 | """
TRM Solver β NN Executor for ARC-AGI NeuroGolf
Takes a parsed transform (from Kilo/DeepSeek) and executes it as a
tiny neural network. Each transform is implemented as a minimal NN
that can be exported to ONNX.
Architecture:
- Each transform is a PyTorch nn.Module with frozen weights
- Weights encode the transform parameters (not learned β set directly)
- ONNX export produces a tiny model per task
"""
import torch
import torch.nn as nn
import torch.nn.functional as F
import numpy as np
from typing import Dict, List, Tuple, Optional
from dataclasses import dataclass
import json
# βββ Data Structures βββββββββββββββββββββββββββββββββββββββββββ
@dataclass
class TransformSpec:
"""Parsed output from Kilo/DeepSeek."""
name: str
params: Dict
objects: List[Dict] = None
def __post_init__(self):
if self.objects is None:
self.objects = []
# βββ Base NN Transform βββββββββββββββββββββββββββββββββββββββββ
class BaseTransformNN(nn.Module):
"""Base class for all transform NNs. Subclasses implement _forward_impl."""
def __init__(self, spec: TransformSpec):
super().__init__()
self.spec = spec
self.max_size = 30 # ARC max grid size
def forward(self, x: torch.Tensor) -> torch.Tensor:
"""
Args:
x: Input grid [B, 1, H, W] or [1, H, W] β values 0-9
Returns:
Output grid [B, 1, H_out, W_out] β values 0-9
"""
if x.dim() == 3:
x = x.unsqueeze(0)
if x.dim() == 2:
x = x.unsqueeze(0).unsqueeze(0)
return self._forward_impl(x)
def _forward_impl(self, x: torch.Tensor) -> torch.Tensor:
raise NotImplementedError
def count_params(self) -> int:
return sum(p.numel() for p in self.parameters())
# βββ Identity ββββββββββββββββββββββββββββββββββββββββββββββββββ
class IdentityNN(BaseTransformNN):
"""Output equals input."""
def _forward_impl(self, x):
return x
# βββ Color Map βββββββββββββββββββββββββββββββββββββββββββββββββ
class ColorMapNN(BaseTransformNN):
"""Per-pixel color remapping. 100 params."""
def __init__(self, spec: TransformSpec):
super().__init__(spec)
lut = spec.params.get("color_map", list(range(10)))
self.lut = nn.Conv2d(10, 10, kernel_size=1, bias=False)
weight = torch.zeros(10, 10, 1, 1)
for i, j in enumerate(lut):
weight[j, i, 0, 0] = 1.0
self.lut.weight = nn.Parameter(weight, requires_grad=False)
def _forward_impl(self, x):
B, _, H, W = x.shape
x_flat = x.long().squeeze(1).clamp(0, 9)
onehot = F.one_hot(x_flat, num_classes=10).permute(0, 3, 1, 2).float()
out = self.lut(onehot)
return out.argmax(dim=1, keepdim=True).float()
# βββ Geometric βββββββββββββββββββββββββββββββββββββββββββββββββ
class FlipNN(BaseTransformNN):
def _forward_impl(self, x):
direction = self.spec.params.get("direction", "horizontal")
dim = 3 if direction == "horizontal" else 2
return torch.flip(x, [dim])
class TransposeNN(BaseTransformNN):
def _forward_impl(self, x):
return x.transpose(2, 3)
class RotateNN(BaseTransformNN):
def _forward_impl(self, x):
k = self.spec.params.get("k", 1)
return torch.rot90(x, k, [2, 3])
# βββ Upscale βββββββββββββββββββββββββββββββββββββββββββββββββββ
class UpscaleNN(BaseTransformNN):
"""Nearest-neighbor upscaling. ~scale**2 params."""
def __init__(self, spec: TransformSpec):
super().__init__(spec)
self.scale = spec.params.get("scale", 2)
th = spec.params.get("output_shape", [30, 30])[0]
tw = spec.params.get("output_shape", [30, 30])[1]
self.target_h = th
self.target_w = tw
def _forward_impl(self, x):
x = x.repeat_interleave(self.scale, dim=2).repeat_interleave(self.scale, dim=3)
return x[:, :, :self.target_h, :self.target_w]
# βββ Kronecker Self-Similar ββββββββββββββββββββββββββββββββββββ
class KronSelfSimilarNN(BaseTransformNN):
"""output = kron((input != 0), input). 0 learnable params."""
def _forward_impl(self, x):
mask = (x != 0).float()
B, _, H_in, W_in = x.shape
inp_e = x.unsqueeze(2).unsqueeze(2)
mask_e = mask.unsqueeze(4).unsqueeze(4)
result = (mask_e * inp_e).float()
result = result.permute(0, 1, 2, 4, 3, 5).contiguous()
H_out, W_out = H_in * H_in, W_in * W_in
return result.view(B, 1, H_out, W_out)
class TileRepeatNN(BaseTransformNN):
def _forward_impl(self, x):
hr = self.spec.params.get("h_repeat", 2)
wr = self.spec.params.get("w_repeat", 2)
return x.repeat(1, 1, hr, wr)
# βββ Concat Patterns βββββββββββββββββββββββββββββββββββββββββββ
class ConcatPatternsNN(BaseTransformNN):
"""Concatenate transformed copies horizontally/vertically."""
def _forward_impl(self, x):
axis = self.spec.params.get("axis", "horizontal")
ops = self.spec.params.get("operations", ["identity", "identity"])
pieces = []
for op in ops:
if op == "flip_h": pieces.append(torch.flip(x, [3]))
elif op == "flip_v": pieces.append(torch.flip(x, [2]))
elif op == "transpose": pieces.append(x.transpose(2, 3))
elif op == "rot90": pieces.append(torch.rot90(x, 1, [2, 3]))
elif op == "rot180": pieces.append(torch.rot90(x, 2, [2, 3]))
elif op == "rot270": pieces.append(torch.rot90(x, 3, [2, 3]))
else: pieces.append(x)
dim = 3 if axis == "horizontal" else 2
return torch.cat(pieces, dim=dim)
# βββ Position Color LUT ββββββββββββββββββββββββββββββββββββββββ
class PositionColorLUTNN(BaseTransformNN):
"""Per-position color lookup. H*W params."""
def __init__(self, spec: TransformSpec):
super().__init__(spec)
lut = spec.params.get("lut", {})
self.h_o = spec.params.get("output_shape", [30, 30])[0]
self.w_o = spec.params.get("output_shape", [30, 30])[1]
self.lut = nn.Parameter(torch.zeros(1, 1, self.h_o, self.w_o), requires_grad=False)
with torch.no_grad():
for k, v in lut.items():
h, w = map(int, k.split(","))
if h < self.h_o and w < self.w_o:
self.lut[0, 0, h, w] = float(v)
def _forward_impl(self, x):
B = x.shape[0]
out = self.lut.expand(B, -1, -1, -1)
mask = (x[:, :, :self.h_o, :self.w_o] != 0).float()
return mask * out
# βββ Spatial Gather ββββββββββββββββββββββββββββββββββββββββββββ
class SpatialGatherNN(BaseTransformNN):
"""Rearrange pixels via gather map. H*W*2 params."""
def __init__(self, spec: TransformSpec):
super().__init__(spec)
gmap = spec.params.get("gather_map", {})
self.h_o = spec.params.get("output_shape", [30, 30])[0]
self.w_o = spec.params.get("output_shape", [30, 30])[1]
self.gh = nn.Parameter(torch.zeros(self.h_o, self.w_o, dtype=torch.long), requires_grad=False)
self.gw = nn.Parameter(torch.zeros(self.h_o, self.w_o, dtype=torch.long), requires_grad=False)
with torch.no_grad():
for k, v in gmap.items():
h, w = map(int, k.split(","))
sh, sw = map(int, v.split(","))
if h < self.h_o and w < self.w_o:
self.gh[h, w] = sh
self.gw[h, w] = sw
def _forward_impl(self, x):
B, C, Hi, Wi = x.shape
gh = self.gh.clamp(0, Hi - 1)
gw = self.gw.clamp(0, Wi - 1)
return x[:, :, gh, gw]
# βββ One-Hot Convolution βββββββββββββββββββββββββββββββββββββββ
class OneHotConvNN(BaseTransformNN):
"""One-hot encode, convolve, argmax decode. K^2*100 params."""
def __init__(self, spec: TransformSpec):
super().__init__(spec)
kh = spec.params.get("kernel_h", 3)
kw = spec.params.get("kernel_w", 3)
self.conv = nn.Conv2d(10, 10, kernel_size=(kh, kw), padding='same', bias=False)
if "weights" in spec.params:
w = torch.tensor(spec.params["weights"], dtype=torch.float32)
self.conv.weight = nn.Parameter(w.view(10, 10, kh, kw), requires_grad=False)
def _forward_impl(self, x):
B, _, H, W = x.shape
onehot = F.one_hot(x.long().squeeze(1).clamp(0, 9), 10).permute(0, 3, 1, 2).float()
return self.conv(onehot).argmax(dim=1, keepdim=True).float()
class OneHotLinearNN(BaseTransformNN):
"""One-hot encode, linear, argmax. 100 params."""
def __init__(self, spec: TransformSpec):
super().__init__(spec)
self.linear = nn.Linear(10, 10, bias=False)
if "weights" in spec.params:
self.linear.weight = nn.Parameter(
torch.tensor(spec.params["weights"], dtype=torch.float32), requires_grad=False)
def _forward_impl(self, x):
onehot = F.one_hot(x.long().squeeze(1).clamp(0, 9), 10).float()
return self.linear(onehot).argmax(dim=-1).unsqueeze(1).float()
# βββ Factory & Parser ββββββββββββββββββββββββββββββββββββββββββ
TRANSFORM_REGISTRY = {
"identity": IdentityNN,
"color_map": ColorMapNN,
"flip": FlipNN,
"transpose": TransposeNN,
"rotate": RotateNN,
"upscale": UpscaleNN,
"kron_self_similar": KronSelfSimilarNN,
"tile_repeat": TileRepeatNN,
"concat_patterns": ConcatPatternsNN,
"pos_color_lut": PositionColorLUTNN,
"spatial_gather": SpatialGatherNN,
"onehot_conv": OneHotConvNN,
"onehot_linear": OneHotLinearNN,
}
def create_transform_nn(spec: TransformSpec) -> BaseTransformNN:
cls = TRANSFORM_REGISTRY.get(spec.name)
if cls is None:
raise ValueError(f"Unknown transform: {spec.name}")
return cls(spec)
def parse_kilo_output(md: str) -> TransformSpec:
"""Parse Kilo markdown into TransformSpec."""
lines = md.strip().split('\n')
name, params, section = None, {}, None
for line in lines:
line = line.strip()
if line.startswith('## '):
section = line[3:].strip().lower()
continue
if section == 'transform' and line.startswith('name:'):
name = line.split(':', 1)[1].strip()
elif section == 'parameters' and line.startswith('- '):
kv = line[2:].split(':', 1)
if len(kv) == 2:
k, v = kv[0].strip(), kv[1].strip()
try:
import ast
params[k] = ast.literal_eval(v)
except (ValueError, SyntaxError):
params[k] = v
if not name:
raise ValueError("No transform name in Kilo output")
return TransformSpec(name=name, params=params)
# βββ ONNX Export βββββββββββββββββββββββββββββββββββββββββββββββ
def export_to_onnx(model: BaseTransformNN, input_shape: Tuple[int, int],
output_path: str, opset: int = 17):
model.eval()
H, W = input_shape
dummy = torch.zeros(1, 1, H, W)
torch.onnx.export(model, dummy, output_path,
input_names=["input"], output_names=["output"],
dynamic_axes={"input": {0: "batch"}, "output": {0: "batch"}},
opset_version=opset, do_constant_folding=True)
import os
kb, p = os.path.getsize(output_path) / 1024, model.count_params()
print(f"Exported {output_path}: {kb:.1f} KB, {p} params")
return output_path |