Spaces:
Running
Running
File size: 12,325 Bytes
502af73 |
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 |
/**
* Trigo Tree Agent - AI agent using tree attention for efficient move evaluation
*
* Uses evaluation mode ONNX model to score all valid moves in parallel.
* Organizes moves as a prefix tree where branches with same head token are merged.
*/
import { ModelInferencer } from "./modelInferencer";
import type { EvaluationInputs } from "./modelInferencer";
import { TrigoGame, StoneType } from "./trigo/game";
import type { Move, Stone, Position } from "./trigo/types";
import { encodeAb0yz } from "./trigo/ab0yz";
export interface ScoredMove {
move: Move;
score: number; // Log probability
notation: string; // TGN notation (e.g., "ab0")
}
export class TrigoTreeAgent {
private inferencer: ModelInferencer;
constructor(inferencer: ModelInferencer) {
this.inferencer = inferencer;
}
/**
* Convert Stone type to player string
*/
private stoneToPlayer(stone: Stone): "black" | "white" {
if (stone === StoneType.BLACK) return "black";
if (stone === StoneType.WHITE) return "white";
throw new Error(`Invalid stone type: ${stone}`);
}
/**
* Encode a position to TGN notation (3 characters for 5×5×5 board)
*/
private positionToTGN(pos: Position, shape: { x: number; y: number; z: number }): string {
const posArray = [pos.x, pos.y, pos.z];
const shapeArray = [shape.x, shape.y, shape.z];
return encodeAb0yz(posArray, shapeArray);
}
/**
* Convert string to byte tokens (ASCII encoding)
*/
private stringToTokens(str: string): number[] {
const tokens: number[] = [];
for (let i = 0; i < str.length; i++) {
tokens.push(str.charCodeAt(i));
}
return tokens;
}
/**
* Build prefix tree from token arrays using recursive merging
* Merges branches with the same token at EVERY level
*
* Algorithm:
* 1. Group sequences by their first token
* 2. For each group:
* - Create one node for the shared first token
* - Extract remaining tokens (residues)
* - Recursively build subtree from residues
* 3. Combine all subtrees and build attention mask
*
* Example for ["aa", "ab", "ba", "bb"]:
* Level 1: Group by first token → 'a': ["a","b"], 'b': ["a","b"]
* Level 2: Within 'a' group, build subtree for ["a","b"]
* Within 'b' group, build subtree for ["a","b"]
* Result: Two branches, each with properly merged second-level nodes
*
* @param tokenArrays - Array of token arrays
* @returns Flattened token array (length m), mask matrix (m×m), and move-to-position mapping
*/
private buildPrefixTree(tokenArrays: number[][]): {
evaluatedIds: number[];
mask: number[];
moveToLeafPos: number[];
} {
type Seq = { moveIndex: number; tokens: number[] };
interface Node {
token: number;
pos: number;
parent: number | null;
children: Node[];
moveEnds: number[];
}
let nextPos = 0;
// --- Build prefix tree through recursive grouping ---
function build(seqs: Seq[], parent: number | null): Node[] {
// group by token
const groups = new Map<number, Seq[]>();
for (const s of seqs) {
if (s.tokens.length === 0) continue;
const t = s.tokens[0];
if (!groups.has(t)) groups.set(t, []);
groups.get(t)!.push(s);
}
const levelNodes: Node[] = [];
for (const [token, group] of groups) {
const pos = nextPos++;
const node: Node = {
token,
pos,
parent,
children: [],
moveEnds: []
};
// split residues
const ends: number[] = [];
const residues: Seq[] = [];
for (const g of group) {
if (g.tokens.length === 1) ends.push(g.moveIndex);
else residues.push({ moveIndex: g.moveIndex, tokens: g.tokens.slice(1) });
}
node.moveEnds = ends;
// create sub nodes recursively
if (residues.length > 0) {
node.children = build(residues, pos);
}
levelNodes.push(node);
}
return levelNodes;
}
// Build roots
const seqs = tokenArrays.map((t, i) => ({ moveIndex: i, tokens: t }));
const roots = build(seqs, null);
const total = nextPos;
// --- Flatten tree ---
const evaluatedIds = new Array<number>(total);
const parent = new Array<number | null>(total).fill(null);
const moveToLeafPos = new Array<number>(tokenArrays.length).fill(-1);
function dfs(n: Node) {
evaluatedIds[n.pos] = n.token;
parent[n.pos] = n.parent;
for (const m of n.moveEnds) moveToLeafPos[m] = n.pos;
for (const c of n.children) dfs(c);
}
for (const r of roots) dfs(r);
// --- Build ancestor mask ---
const mask = new Array(total * total).fill(0);
for (let i = 0; i < total; i++) {
let p = i;
while (p !== null) {
mask[i * total + p] = 1;
p = parent[p]!;
}
}
return { evaluatedIds, mask, moveToLeafPos };
}
/**
* Build tree structure for all valid moves
* Returns prefix tokens and tree structure for batch evaluation
*/
private buildMoveTree(
game: TrigoGame,
moves: Move[]
): {
prefixTokens: number[];
evaluatedIds: number[];
mask: number[];
moveData: Array<{ move: Move; notation: string; leafPos: number; parentPos: number }>;
} {
// Get current TGN as prefix
const currentTGN = game.toTGN().trim();
// Build prefix (everything up to next move)
const lines = currentTGN.split("\n");
const lastLine = lines[lines.length - 1];
let prefix: string;
if (lastLine.match(/^\d+\./)) {
// Last line is a move number, include it
prefix = currentTGN + " ";
} else if (lastLine.trim() === "") {
// Empty line, add move number
const moveMatches = currentTGN.match(/\d+\.\s/g);
const moveNumber = moveMatches ? moveMatches.length + 1 : 1;
const isBlackTurn = game.getCurrentPlayer() === StoneType.BLACK;
if (isBlackTurn) {
prefix = currentTGN + `${moveNumber}. `;
} else {
prefix = currentTGN + " ";
}
} else {
// Last line has moves, add space
prefix = currentTGN + " ";
}
const prefixTokens = this.stringToTokens(prefix);
// Encode each move to tokens (only first 2 tokens)
const shape = game.getShape();
const movesWithTokens = moves.map((move) => {
let notation: string;
if (move.isPass) {
notation = "Pass";
} else if (move.x !== undefined && move.y !== undefined && move.z !== undefined) {
notation = this.positionToTGN({ x: move.x, y: move.y, z: move.z }, shape);
} else {
throw new Error("Invalid move: missing coordinates");
}
// Exclude the last token
const fullTokens = this.stringToTokens(notation);
const tokens = fullTokens.slice(0, fullTokens.length - 1);
return { move, notation, tokens };
});
// Build prefix tree
const tokenArrays = movesWithTokens.map((m) => m.tokens);
const { evaluatedIds, mask, moveToLeafPos } = this.buildPrefixTree(tokenArrays);
// Build move data with leaf positions and parent positions
const moveData = movesWithTokens.map((m, index) => {
const leafPos = moveToLeafPos[index];
// Find parent position (root position for this move)
// Parent is the first token position
const firstToken = m.tokens[0];
let parentPos = -1;
for (let i = 0; i < evaluatedIds.length; i++) {
if (evaluatedIds[i] === firstToken && i < leafPos) {
// This is a potential parent
// Check if it's in the same branch by checking mask
// If leafPos can see position i, then i might be the parent
if (mask[leafPos * evaluatedIds.length + i] === 1.0 && i !== leafPos) {
// Find the closest parent (maximum index less than leafPos that leaf can see)
if (i > parentPos) {
parentPos = i;
}
}
}
}
return {
move: m.move,
notation: m.notation,
leafPos,
parentPos
};
});
return { prefixTokens, evaluatedIds, mask, moveData };
}
/**
* Get tree structure for visualization (public method)
*/
getTreeStructure(
game: TrigoGame,
moves: Move[]
): {
evaluatedIds: number[];
mask: number[];
moveData: Array<{ move: Move; notation: string; leafPos: number; parentPos: number }>;
} {
return this.buildMoveTree(game, moves);
}
/**
* Select best move using tree attention
* Evaluates all valid moves in a single inference call
*/
async selectBestMove(game: TrigoGame): Promise<Move | null> {
if (!this.inferencer.isReady()) {
throw new Error("Inferencer not initialized");
}
// Get current player as string
const currentPlayer = this.stoneToPlayer(game.getCurrentPlayer());
// Get all valid moves
const validMoves: Move[] = game.validMovePositions().map((pos) => ({
x: pos.x,
y: pos.y,
z: pos.z,
player: currentPlayer
}));
validMoves.push({ player: currentPlayer, isPass: true }); // Add pass move
if (validMoves.length === 0) {
return null;
}
// Score all moves using tree attention
const scoredMoves = await this.scoreMoves(game, validMoves);
// Return move with highest score
if (scoredMoves.length === 0) {
return null;
}
scoredMoves.sort((a, b) => b.score - a.score);
return scoredMoves[0].move;
}
/**
* Score all moves using tree attention (batch evaluation)
*/
async scoreMoves(game: TrigoGame, moves: Move[]): Promise<ScoredMove[]> {
if (moves.length === 0) {
return [];
}
// Build tree structure
const { prefixTokens, evaluatedIds, mask, moveData } = this.buildMoveTree(game, moves);
console.debug(`Tree structure: ${evaluatedIds.length} nodes for ${moveData.length} moves`);
console.debug(`Evaluated IDs:`, evaluatedIds.map((id) => String.fromCharCode(id)).join(""));
//console.debug(
// `Move positions:`,
// moveData.map((m) => `${m.notation}@${m.leafPos}(parent=${m.parentPos})`)
//);
// Prepare inputs for evaluation
const inputs: EvaluationInputs = {
prefixIds: prefixTokens,
evaluatedIds: evaluatedIds,
evaluatedMask: mask
};
// Run inference
const output = await this.inferencer.runEvaluationInference(inputs);
const { logits, numEvaluated } = output;
console.debug(`Inference output: ${numEvaluated} evaluated positions`);
// Score each move by accumulating log probabilities for all tokens in the path
// For each move, traverse the full path from root to leaf and sum log probabilities
const scoredMoves: ScoredMove[] = [];
// Cache softmax results for each output position to avoid recomputation
const softmaxCache = new Map<number, Float32Array>();
const getSoftmax = (outputPos: number): Float32Array => {
if (!softmaxCache.has(outputPos)) {
softmaxCache.set(outputPos, this.inferencer.softmax(logits, outputPos));
}
return softmaxCache.get(outputPos)!;
};
for (const data of moveData) {
let logProb = 0;
// Reconstruct the full path from root to leaf using the mask
// The mask tells us which positions each position can attend to (ancestors)
// We need to find all positions from root (or first move token) to leaf
const leafPos = data.leafPos;
const path: number[] = [0];
// Build path by finding all ancestors that this leaf can see
// Start from position 0 and find all positions up to leafPos that are in the path
for (let pos = 0; pos <= leafPos; pos++) {
// Check if leaf can see this position (it's an ancestor or self)
if (mask[leafPos * evaluatedIds.length + pos] === 1) {
path.push(pos + 1);
}
}
//console.debug("path:", data.notation, "->", path);
// Now accumulate log probabilities for all transitions in the path
// For each token in the path, we need P(token[i] | context up to token[i-1])
// The logits at output position j predict the NEXT token after position j
// So to get P(token at position i | context), we look at output from parent position
for (let i = 0; i < path.length; i++) {
const currentPos = path[i];
const currentToken = data.notation.charCodeAt(i);
// Subsequent tokens: predicted from previous position
// The output at prevPos predicts the token at currentPos
console.assert(currentPos <= numEvaluated, `Output position ${currentPos} exceeds numEvaluated ${numEvaluated}`);
if (currentPos <= numEvaluated) {
const probs = getSoftmax(currentPos);
const prob = probs[currentToken];
if (prob > 0)
logProb += Math.log(prob);
else
logProb += -100;
}
else
logProb += -100;
}
scoredMoves.push({
move: data.move,
score: logProb,
notation: data.notation
});
}
return scoredMoves;
}
}
|