Spaces:
Sleeping
Sleeping
File size: 15,916 Bytes
15f353f |
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 |
/**
* TGN File Evaluation Tool
*
* This script evaluates TGN files using the value prediction model.
* It cleans TGN content by removing trailing comments, Pass moves, and spaces,
* then evaluates the position value using TrigoEvaluationAgent.
*
* Features:
* - Batch evaluation of all .tgn files in a directory
* - TGN cleaning (remove trailing comments, Pass moves, trim spaces)
* - Position value prediction in range [-1, 1]
* - Output results to console and optional JSON file
*
* Usage:
* npx tsx tools/evaluateTgnFiles.ts [options]
*
* Options:
* --model <path> Path to evaluation mode ONNX model (default: from ONNX_EVALUATION_MODEL env var)
* --input <path> Directory containing TGN files or single TGN file (default: ./tools/output/selfplay)
* --output <path> Optional JSON output file for results
* --verbose Enable verbose logging
* --help Show this help message
*
* Examples:
* # Evaluate all TGN files in directory (uses model from .env)
* npx tsx tools/evaluateTgnFiles.ts --input ./tools/output/selfplay
*
* # Evaluate with specific model
* npx tsx tools/evaluateTgnFiles.ts --model ./public/onnx/model.onnx --input ./tools/output/selfplay
*
* # Save results to JSON file
* npx tsx tools/evaluateTgnFiles.ts --model ./public/onnx/model.onnx --input ./games --output ./results.json
*/
import * as ort from "onnxruntime-node";
import * as path from "path";
import * as fs from "fs";
import { fileURLToPath } from "url";
import { TrigoGame } from "../inc/trigo/game";
import { ModelInferencer } from "../inc/modelInferencer";
import { TrigoEvaluationAgent } from "../inc/trigoEvaluationAgent";
import { initializeParsers } from "../inc/trigo/parserInit";
import { loadEnvConfig, getOnnxModelPaths, getAbsoluteModelPath, getOnnxSessionOptions } from "../inc/config";
// ES module equivalent of __dirname
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
// Load environment variables
await loadEnvConfig();
// Default model paths from environment
const defaultModelPaths = getOnnxModelPaths();
// Configuration
interface EvaluationConfig {
modelPath: string;
inputPath: string;
outputPath?: string;
verbose: boolean;
vocabSize: number;
seqLen: number;
}
// Evaluation result for a single TGN file
interface TgnEvaluationResult {
filename: string;
filepath: string;
value: number;
interpretation: string;
moveCount: number;
boardShape: string;
cleanedTgn: string;
commentValue?: number; // Value from tail comment
signMatch?: boolean; // Whether model and comment signs match
error?: string;
}
/**
* Parse command line arguments
*/
function parseArgs(): EvaluationConfig {
const args = process.argv.slice(2);
const config: EvaluationConfig = {
modelPath: getAbsoluteModelPath(defaultModelPaths.evaluationModel),
inputPath: path.join(__dirname, "output/selfplay"),
verbose: false,
vocabSize: 128,
seqLen: 256
};
for (let i = 0; i < args.length; i++) {
switch (args[i]) {
case "--model":
config.modelPath = args[++i];
break;
case "--input":
config.inputPath = args[++i];
break;
case "--output":
config.outputPath = args[++i];
break;
case "--verbose":
config.verbose = true;
break;
case "--help":
printHelp();
process.exit(0);
default:
if (args[i].startsWith("--")) {
console.error(`Unknown option: ${args[i]}`);
printHelp();
process.exit(1);
}
}
}
// Validate model path (now optional since we have default)
if (!config.modelPath) {
console.error("Error: --model argument is required or set ONNX_EVALUATION_MODEL env variable");
printHelp();
process.exit(1);
}
if (!fs.existsSync(config.modelPath)) {
console.error(`Error: Model file not found: ${config.modelPath}`);
process.exit(1);
}
if (!fs.existsSync(config.inputPath)) {
console.error(`Error: Input path not found: ${config.inputPath}`);
process.exit(1);
}
return config;
}
/**
* Print help message
*/
function printHelp(): void {
console.log(`
Usage: npx tsx tools/evaluateTgnFiles.ts [options]
Options:
--model <path> Path to evaluation mode ONNX model (default: from ONNX_EVALUATION_MODEL env var)
--input <path> Directory containing TGN files or single TGN file (default: ./tools/output/selfplay)
--output <path> Optional JSON output file for results
--verbose Enable verbose logging
--help Show this help message
Examples:
# Evaluate all TGN files in directory (uses model from .env)
npx tsx tools/evaluateTgnFiles.ts --input ./tools/output/selfplay
# Evaluate with specific model
npx tsx tools/evaluateTgnFiles.ts --model ./public/onnx/model.onnx --input ./tools/output/selfplay
# Save results to JSON file
npx tsx tools/evaluateTgnFiles.ts --model ./public/onnx/model.onnx --input ./games --output ./results.json
`);
}
/**
* Extract numeric value from tail comment before cleaning
* Returns undefined if no valid numeric comment found
*/
function extractCommentValue(tgnContent: string): number | undefined {
const lines = tgnContent.split('\n');
// Look for comment lines at the end (lines starting with ';')
for (let i = lines.length - 1; i >= 0; i--) {
const line = lines[i].trim();
// Skip empty lines
if (line === '') continue;
// Check if it's a comment line
if (line.startsWith(';')) {
// Extract numeric value from comment
// Format: "; -16" or "; 10" etc.
const match = line.match(/;\s*([+-]?\d+(?:\.\d+)?)/);
if (match) {
return parseFloat(match[1]);
}
} else {
// Stop at first non-empty, non-comment line
break;
}
}
return undefined;
}
/**
* Clean TGN content by removing trailing comments, Pass moves, and spaces
* Matches the behavior of test_evaluation_mode.js
*/
function cleanTGN(tgnContent: string): string {
let lines = tgnContent.split('\n');
// Remove trailing empty lines and comments (lines starting with ';')
while (lines.length > 0) {
const lastLine = lines[lines.length - 1].trim();
if (lastLine === '' || lastLine.startsWith(';')) {
lines.pop();
} else {
break;
}
}
// Remove trailing Pass moves
while (lines.length > 0) {
const lastLine = lines[lines.length - 1].trim();
// Check for Pass move: "P" or ending with " P"
if (lastLine === 'P' || lastLine.endsWith(' P')) {
lines.pop();
} else {
break;
}
}
// Join lines and trim trailing spaces
return lines.join('\n').trim();
}
/**
* Initialize the evaluation agent
*/
async function initializeAgent(config: EvaluationConfig): Promise<TrigoEvaluationAgent> {
console.log("Initializing Evaluation Agent...");
console.log(` Model: ${config.modelPath}`);
console.log(` Vocab Size: ${config.vocabSize}`);
console.log(` Sequence Length: ${config.seqLen}`);
const sessionOptions = getOnnxSessionOptions();
const session = await ort.InferenceSession.create(config.modelPath, sessionOptions);
const inferencer = new ModelInferencer(ort.Tensor as any, {
vocabSize: config.vocabSize,
seqLen: config.seqLen,
modelPath: config.modelPath
});
inferencer.setSession(session as any);
const agent = new TrigoEvaluationAgent(inferencer);
console.log("✓ Agent initialized\n");
return agent;
}
/**
* Evaluate a single TGN file
*/
async function evaluateTgnFile(
agent: TrigoEvaluationAgent,
filepath: string,
config: EvaluationConfig
): Promise<TgnEvaluationResult> {
const filename = path.basename(filepath);
try {
// Read TGN file
const rawContent = fs.readFileSync(filepath, "utf-8");
// Extract comment value BEFORE cleaning
const commentValue = extractCommentValue(rawContent);
// Clean TGN content
const cleanedTgn = cleanTGN(rawContent);
if (config.verbose) {
console.log(`\nProcessing: ${filename}`);
console.log(` Raw length: ${rawContent.length} chars`);
console.log(` Cleaned length: ${cleanedTgn.length} chars`);
if (commentValue !== undefined) {
console.log(` Comment value: ${commentValue}`);
}
}
// Parse TGN to create game
const game = TrigoGame.fromTGN(cleanedTgn);
if (config.verbose) {
console.log(` Game type: ${typeof game}`);
console.log(` Is TrigoGame: ${game instanceof TrigoGame}`);
console.log(` Has getHistory: ${typeof game.getHistory}`);
}
// Get board info
const boardShape = game.getShape();
const boardShapeStr = `${boardShape.x}×${boardShape.y}×${boardShape.z}`;
const moveCount = game.getHistory().length;
if (config.verbose) {
console.log(` Board: ${boardShapeStr}`);
console.log(` Moves: ${moveCount}`);
}
// Evaluate position
const evaluation = await agent.evaluatePosition(game);
// Compare signs if comment value exists
let signMatch: boolean | undefined = undefined;
if (commentValue !== undefined) {
// Note: There appears to be a sign inconsistency between model output and training data
const modelSign = Math.sign(evaluation.value);
const commentSign = Math.sign(commentValue);
signMatch = modelSign === commentSign;
}
if (config.verbose) {
console.log(` Value: ${evaluation.value.toFixed(4)}`);
console.log(` ${evaluation.interpretation}`);
if (commentValue !== undefined && signMatch !== undefined) {
console.log(` Comment: ${commentValue}, Sign match: ${signMatch ? '✓' : '✗'}`);
}
}
return {
filename,
filepath,
value: evaluation.value,
interpretation: evaluation.interpretation,
moveCount,
boardShape: boardShapeStr,
cleanedTgn,
commentValue,
signMatch
};
} catch (error) {
const errorMessage = error instanceof Error ? error.message : String(error);
console.error(`✗ Error evaluating ${filename}: ${errorMessage}`);
return {
filename,
filepath,
value: 0,
interpretation: "Error",
moveCount: 0,
boardShape: "Unknown",
cleanedTgn: "",
error: errorMessage
};
}
}
/**
* Get list of TGN files to evaluate
*/
function getTgnFiles(inputPath: string): string[] {
const stats = fs.statSync(inputPath);
if (stats.isFile()) {
// Single file
if (!inputPath.endsWith('.tgn')) {
console.error(`Error: Input file must be a .tgn file: ${inputPath}`);
process.exit(1);
}
return [inputPath];
} else if (stats.isDirectory()) {
// Directory - get all .tgn files
const files = fs.readdirSync(inputPath)
.filter(file => file.endsWith('.tgn'))
.map(file => path.join(inputPath, file));
if (files.length === 0) {
console.error(`Error: No .tgn files found in directory: ${inputPath}`);
process.exit(1);
}
return files;
} else {
console.error(`Error: Invalid input path: ${inputPath}`);
process.exit(1);
}
}
/**
* Main evaluation function
*/
async function evaluateDataset(config: EvaluationConfig): Promise<void> {
console.log("=".repeat(80));
console.log("TGN File Evaluation Tool");
console.log("=".repeat(80));
console.log(`Configuration:`);
console.log(` Model: ${config.modelPath}`);
console.log(` Input: ${config.inputPath}`);
if (config.outputPath) {
console.log(` Output: ${config.outputPath}`);
}
console.log(` Verbose: ${config.verbose}`);
console.log();
// Initialize TGN parser
console.log("Initializing TGN parser...");
await initializeParsers();
console.log("✓ Parser initialized\n");
// Get list of TGN files
const tgnFiles = getTgnFiles(config.inputPath);
console.log(`Found ${tgnFiles.length} TGN file(s) to evaluate\n`);
// Initialize agent
const agent = await initializeAgent(config);
// Evaluate all files
console.log("Evaluating files...");
console.log("=".repeat(80));
const results: TgnEvaluationResult[] = [];
const startTime = Date.now();
for (let i = 0; i < tgnFiles.length; i++) {
const filepath = tgnFiles[i];
const filename = path.basename(filepath);
const progress = ((i + 1) / tgnFiles.length * 100).toFixed(1);
// Evaluate file
const result = await evaluateTgnFile(agent, filepath, config);
results.push(result);
// Progress update
if (!config.verbose) {
const statusIcon = result.error ? "✗" : "✓";
const valueStr = result.error ? "ERROR" : result.value.toFixed(4);
const commentStr = result.commentValue !== undefined
? ` (comment: ${result.commentValue})`
: "";
const matchStr = result.signMatch !== undefined
? (result.signMatch ? " ✓" : " ✗")
: "";
console.log(
`[${progress}%] ${statusIcon} ${filename}: ${valueStr}${commentStr} - ${result.interpretation}${matchStr}`
);
}
}
const endTime = Date.now();
const duration = endTime - startTime;
// Calculate statistics
const successfulResults = results.filter(r => !r.error);
const failedResults = results.filter(r => r.error);
const averageValue = successfulResults.length > 0
? successfulResults.reduce((sum, r) => sum + r.value, 0) / successfulResults.length
: 0;
// Calculate sign accuracy
const resultsWithComments = successfulResults.filter(r => r.signMatch !== undefined);
const correctPredictions = resultsWithComments.filter(r => r.signMatch === true).length;
const accuracy = resultsWithComments.length > 0
? (correctPredictions / resultsWithComments.length) * 100
: 0;
// Print summary
console.log("=".repeat(80));
console.log("Evaluation Complete!");
console.log("=".repeat(80));
console.log(`Total files: ${results.length}`);
console.log(`Successful: ${successfulResults.length}`);
console.log(`Failed: ${failedResults.length}`);
console.log(`Average value: ${averageValue.toFixed(4)}`);
console.log(`Total time: ${(duration / 1000).toFixed(1)}s`);
console.log(`Average time per file: ${(duration / results.length).toFixed(0)}ms`);
// Sign accuracy statistics
if (resultsWithComments.length > 0) {
console.log(`\nSign Accuracy:`);
console.log(` Files with comments: ${resultsWithComments.length}`);
console.log(` Correct predictions: ${correctPredictions}`);
console.log(` Accuracy: ${accuracy.toFixed(1)}%`);
}
// Value distribution
if (successfulResults.length > 0) {
const blackAdvantage = successfulResults.filter(r => r.value > 0.1).length;
const balanced = successfulResults.filter(r => r.value >= -0.1 && r.value <= 0.1).length;
const whiteAdvantage = successfulResults.filter(r => r.value < -0.1).length;
console.log(`\nValue Distribution:`);
console.log(` Black advantage (>0.1): ${blackAdvantage} (${(blackAdvantage / successfulResults.length * 100).toFixed(1)}%)`);
console.log(` Balanced (-0.1 to 0.1): ${balanced} (${(balanced / successfulResults.length * 100).toFixed(1)}%)`);
console.log(` White advantage (<-0.1): ${whiteAdvantage} (${(whiteAdvantage / successfulResults.length * 100).toFixed(1)}%)`);
}
// Save results to JSON if output path provided
if (config.outputPath) {
const outputData = {
evaluationTime: new Date().toISOString(),
modelPath: config.modelPath,
inputPath: config.inputPath,
totalFiles: results.length,
successful: successfulResults.length,
failed: failedResults.length,
averageValue,
durationMs: duration,
signAccuracy: {
filesWithComments: resultsWithComments.length,
correctPredictions,
accuracy: accuracy.toFixed(1) + "%"
},
results: results.map(r => ({
filename: r.filename,
filepath: r.filepath,
value: r.value,
interpretation: r.interpretation,
moveCount: r.moveCount,
boardShape: r.boardShape,
commentValue: r.commentValue,
signMatch: r.signMatch,
error: r.error
}))
};
fs.writeFileSync(config.outputPath, JSON.stringify(outputData, null, 2), "utf-8");
console.log(`\n✓ Results saved to: ${config.outputPath}`);
}
console.log("=".repeat(80));
}
/**
* Main function
*/
async function main() {
try {
const config = parseArgs();
await evaluateDataset(config);
} catch (error) {
console.error("Error:", error);
process.exit(1);
}
}
// Run main function
main();
|