File size: 21,808 Bytes
baf15a5 | 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 | # Copyright 2026 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
Module containing utilities for the IJCAI-ECAI 2026 NeuroGolf Championship.
Version History:
* 2026-05-14:
* Puts back the _EXCLUDED_OP_TYPES check (thank you @cdeotte and @pavelsavchenkov!)
* Applies stronger sanitization to tensor & node names (thank you @linkinpony!)
* Rejects duplicate graph.value_info entries with the same tensor name (thank you @pavelsavchenkov!)
* 2026-05-06:
* Scalar parameters are now penalized with unit cost.
* Each tensor's memory footprint is set to the maximum size across all runs.
* Duplicate node names no longer create parameter undercount.
* Tensor names containing ONNX's special "kernel_time" string are disallowed.
* Runtime trace file prefixes are specified to prevent profile clobbering.
* Multi-input / multi-output graphs disallowed.
* 2026-05-04:
* Sequences and nonpositive tensor dimensions are disallowed.
* Accurate shape information derived from the ONNX Runtime Profiler.
* MACs no longer contribute to the objective criterion.
* 2026-05-04:
* Sequences and nonpositive tensor dimensions are disallowed.
* Accurate shape information derived from the ONNX Runtime Profiler.
* MACs no longer contribute to the objective criterion.
* 2026-04-30:
* Compress operators have been banned.
* Name collision between tensors and initializers are disallowed.
* Functions / custom domains / subgraphs are disallowed.
* Zero-cost networks now yield a full 25 points.
* 2026-04-28:
* Constant folding enabled to address the undercounting of parameters.
* Our "statically-defined shapes" constaint is now strictly enforced.
* Memory footprint calculation is now a sum of static shape sizes.
* Nodes with negative parameter counts or MACs are disallowed.
* 2026-04-21:
* Tests with grids larger than 30x30 are ignored.
* Nodes with negative memory values are disallowed.
* 2026-04-15:
* Initial version.
Contributors from the Kaggle Community:
* @anglolodorf
* @arc144
* @asalhi
* @calibrator
* @cdeotte
* @hengck23
* @jazivxt
* @jiweiliu
* @kameronkilchrist
* @kevinyuluo
* @kosirowada
* @linkinpony
* @maxjeblick
* @mukundan314
* @pavelsavchenkov
* @prokaj
* @robga
* @shinh0
* @tonylica
* @yeoyunsianggeremie
* @yiheng
"""
import itertools
import json
import math
import pathlib
import traceback
import IPython.display
import matplotlib.pyplot as plt
import numpy as np
import onnx
import onnx_tool
import onnxruntime
display = IPython.display.display
FileLink = IPython.display.FileLink
_BATCH_SIZE, _CHANNELS, _HEIGHT, _WIDTH = 1, 10, 30, 30
_NEUROGOLF_DIR = "/kaggle/input/competitions/neurogolf-2026/"
_COLORS = [
(0, 0, 0),
(30, 147, 255),
(250, 61, 49),
(78, 204, 48),
(255, 221, 0),
(153, 153, 153),
(229, 59, 163),
(255, 133, 28),
(136, 216, 241),
(147, 17, 49),
(240, 240, 240),
(146, 117, 86)
]
_DATA_TYPE = onnx.TensorProto.FLOAT
_EXCLUDED_OP_TYPES = ["LOOP", "SCAN", "NONZERO", "UNIQUE", "SCRIPT", "FUNCTION", "COMPRESS"]
_FILESIZE_LIMIT_IN_BYTES = 1.44 * 1024 * 1024
_GRID_SHAPE = [_BATCH_SIZE, _CHANNELS, _HEIGHT, _WIDTH]
_IR_VERSION, _OPSET_IMPORTS = 10, [onnx.helper.make_opsetid("", 10)]
_TASK_ZERO = {
"train": [{
"input": [
[5, 5, 5, 5, 5, 5, 5, 5, 5, 5],
[5, 1, 1, 1, 1, 1, 1, 5, 5, 5],
[5, 1, 1, 1, 1, 1, 1, 5, 5, 5],
[5, 1, 1, 1, 1, 1, 1, 5, 5, 5],
[5, 1, 1, 1, 1, 1, 1, 5, 5, 5],
[5, 1, 1, 1, 1, 1, 1, 5, 5, 5],
[5, 1, 1, 1, 1, 1, 1, 5, 5, 5],
[5, 5, 5, 5, 5, 5, 5, 5, 5, 5],
[5, 5, 5, 5, 5, 5, 5, 5, 5, 5],
[5, 5, 5, 5, 5, 5, 5, 5, 5, 5],
],
"output": [
[5, 5, 5, 5, 5, 5, 5, 5, 5, 5],
[5, 1, 1, 1, 1, 1, 1, 5, 5, 5],
[5, 1, 1, 1, 1, 1, 1, 0, 5, 5],
[5, 1, 1, 1, 1, 1, 1, 0, 5, 5],
[5, 1, 1, 1, 1, 1, 1, 0, 5, 5],
[5, 1, 1, 1, 1, 1, 1, 0, 5, 5],
[5, 1, 1, 1, 1, 1, 1, 0, 5, 5],
[5, 5, 0, 0, 0, 0, 0, 0, 5, 5],
[5, 5, 5, 5, 5, 5, 5, 5, 5, 5],
[5, 5, 5, 5, 5, 5, 5, 5, 5, 5],
],
}],
"test": [{
"input": [
[5, 5, 5, 5, 5, 5, 5, 5, 5, 5],
[5, 5, 4, 4, 4, 4, 4, 4, 5, 5],
[5, 5, 4, 4, 4, 4, 4, 4, 5, 5],
[5, 5, 5, 5, 5, 5, 5, 5, 5, 5],
[5, 5, 5, 5, 5, 5, 5, 5, 5, 5],
[5, 5, 4, 4, 4, 4, 4, 5, 5, 5],
[5, 5, 4, 5, 5, 5, 4, 5, 5, 5],
[5, 5, 4, 5, 5, 5, 4, 5, 5, 5],
[5, 5, 4, 4, 4, 4, 4, 5, 5, 5],
[5, 5, 5, 5, 5, 5, 5, 5, 5, 5],
],
"output": [
[5, 5, 5, 5, 5, 5, 5, 5, 5, 5],
[5, 5, 4, 4, 4, 4, 4, 4, 5, 5],
[5, 5, 4, 4, 4, 4, 4, 4, 0, 5],
[5, 5, 5, 0, 0, 0, 0, 0, 0, 5],
[5, 5, 5, 5, 5, 5, 5, 5, 5, 5],
[5, 5, 4, 4, 4, 4, 4, 5, 5, 5],
[5, 5, 4, 0, 0, 0, 4, 0, 5, 5],
[5, 5, 4, 0, 5, 5, 4, 0, 5, 5],
[5, 5, 4, 4, 4, 4, 4, 0, 5, 5],
[5, 5, 5, 0, 0, 0, 0, 0, 5, 5],
],
}],
"arc-gen": [{
"input": [
[5, 5, 5, 5, 5, 5, 5, 5, 5, 5],
[5, 5, 5, 5, 5, 5, 5, 5, 5, 5],
[5, 5, 2, 2, 2, 2, 2, 2, 5, 5],
[5, 5, 2, 5, 5, 5, 5, 2, 5, 5],
[5, 5, 2, 5, 5, 5, 5, 2, 5, 5],
[5, 5, 2, 5, 5, 5, 5, 2, 5, 5],
[5, 5, 2, 5, 5, 5, 5, 2, 5, 5],
[5, 5, 2, 2, 2, 2, 2, 2, 5, 5],
[5, 5, 5, 5, 5, 5, 5, 5, 5, 5],
[5, 5, 5, 5, 5, 5, 5, 5, 5, 5],
],
"output": [
[5, 5, 5, 5, 5, 5, 5, 5, 5, 5],
[5, 5, 5, 5, 5, 5, 5, 5, 5, 5],
[5, 5, 2, 2, 2, 2, 2, 2, 5, 5],
[5, 5, 2, 0, 0, 0, 0, 2, 0, 5],
[5, 5, 2, 0, 5, 5, 5, 2, 0, 5],
[5, 5, 2, 0, 5, 5, 5, 2, 0, 5],
[5, 5, 2, 0, 5, 5, 5, 2, 0, 5],
[5, 5, 2, 2, 2, 2, 2, 2, 0, 5],
[5, 5, 5, 0, 0, 0, 0, 0, 0, 5],
[5, 5, 5, 5, 5, 5, 5, 5, 5, 5],
],
}],
}
def calculate_memory(model, trace_path):
onnx.checker.check_model(model, full_check=True)
graph = onnx.shape_inference.infer_shapes(model, strict_mode=True).graph
if len(graph.input) > 1 or len(graph.output) > 1: return None
init_names = {init.name for init in graph.initializer}
init_names.update(init.name for init in graph.sparse_initializer)
io_names = {t.name for t in list(graph.input) + list(graph.output)}
if io_names.intersection(init_names): return None
if model.functions: return None
for opset in model.opset_import:
if opset.domain not in {"", "ai.onnx"}: return None
node_outputs = {}
tensor_names = set()
for node in graph.node:
for attr in node.attribute:
if attr.type in [onnx.AttributeProto.GRAPH,
onnx.AttributeProto.GRAPHS]:
return None
node_outputs[node.name] = list(node.output)
for output_name in node.output:
if output_name: tensor_names.add(output_name)
tensor_memory = {}
tensor_dtypes = {}
tensor_map = {
t.name: t for t in list(graph.input) + list(graph.value_info) + list(graph.output)
}
tensor_names.update(tensor_map.keys())
for tensor_name in tensor_names:
item = tensor_map.get(tensor_name)
if not item: return None
if item.type.HasField("sequence_type"): return None
if not item.type.HasField("tensor_type"): continue
tensor_type = item.type.tensor_type
if not tensor_type.HasField("shape"): return None
num_elements = 1
for dim in tensor_type.shape.dim:
if dim.HasField("dim_param"): return None
if not dim.HasField("dim_value"): return None
if dim.dim_value <= 0: return None
num_elements *= dim.dim_value
if tensor_name in ['input', 'output']: continue
np_dtype = onnx.helper.tensor_dtype_to_np_dtype(tensor_type.elem_type)
tensor_memory[tensor_name] = num_elements * np.dtype(np_dtype).itemsize
tensor_dtypes[tensor_name] = np_dtype
# Defensive check to verify uniqueness.
seen = set()
for item in list(graph.input) + list(graph.value_info) + list(graph.output):
if item.name in seen: return None
seen.add(item.name)
for node in graph.node:
for output_name in node.output:
if output_name and output_name != "output":
item = tensor_map.get(output_name)
if item is None or not item.type.HasField("tensor_type"):
return None
# Retrieve actual tensor shapes via the ONNX Runtime Profiler's JSON Trace.
with open(trace_path, 'r') as f:
trace_data = json.load(f)
for event in trace_data:
if event.get("cat") != "Node" or "args" not in event: continue
if "output_type_shape" not in event["args"]: continue
node_name = event.get("name").replace("_kernel_time", "")
if node_name not in node_outputs: continue
for i, shape_dict in enumerate(event["args"]["output_type_shape"]):
if i >= len(node_outputs[node_name]): continue
output_name = node_outputs[node_name][i]
if output_name not in tensor_dtypes: continue
itemsize = np.dtype(tensor_dtypes[output_name]).itemsize
mem = itemsize * sum(math.prod(dims) for dims in shape_dict.values())
tensor_memory[output_name] = max(tensor_memory[output_name], mem)
return sum(tensor_memory.values())
def check_network(filename):
file_path = pathlib.Path(filename)
if not file_path.is_file():
print(f"Error: File {filename} does not exist.")
return False
if (filesize := file_path.stat().st_size) > _FILESIZE_LIMIT_IN_BYTES:
print(f"Error: Filesize {filesize} exceeds {_FILESIZE_LIMIT_IN_BYTES}.")
return False
return True
def convert_to_numpy(example):
benchmark = {}
example_shape = (1, _CHANNELS, _HEIGHT, _WIDTH)
for mode in ["input", "output"]:
benchmark[mode] = np.zeros(example_shape, dtype=np.float32)
grid = example[mode]
if max(len(grid), len(grid[0])) > 30: return None
for r, _ in enumerate(grid):
for c, color in enumerate(grid[r]):
benchmark[mode][0][color][r][c] = 1.0
return benchmark
def convert_from_numpy(benchmark):
example = []
_, channels, height, width = benchmark.shape
for row in range(height):
cells = []
for col in range(width):
colors = [c for c in range(channels) if benchmark[0][c][row][col] == 1]
cells.append(colors[0] if len(colors) == 1 else (11 if colors else 10))
while cells and cells[-1] == 10:
cells.pop(-1)
example.append(cells)
while example and not example[-1]:
example.pop(-1)
return example
def calculate_params(model):
params = 0
for init in model.graph.initializer:
if any(d <= 0 for d in init.dims): return None
params += math.prod(init.dims)
for sparse_init in model.graph.sparse_initializer:
if any(d <= 0 for d in sparse_init.values.dims): return None
params += math.prod(sparse_init.values.dims)
for node in model.graph.node:
if node.op_type != 'Constant': continue
for attr in node.attribute:
if attr.name == 'value':
if any(d <= 0 for d in attr.t.dims): return None
params += math.prod(attr.t.dims)
elif attr.name == 'sparse_value':
if any(d <= 0 for d in attr.sparse_tensor.values.dims): return None
params += math.prod(attr.sparse_tensor.values.dims)
elif attr.name == 'value_floats':
params += len(attr.floats)
elif attr.name == 'value_ints':
params += len(attr.ints)
elif attr.name == 'value_strings':
params += len(attr.strings)
return params
def score_network(sanitized, trace_path):
for node in sanitized.graph.node:
if node.op_type.upper() in _EXCLUDED_OP_TYPES:
print(f"Error: Op type {node.op_type} is not permitted.")
return None, None
if "Sequence" in node.op_type:
print(f"Error: Op type {node.op_type} is not permitted.")
return None, None
return calculate_memory(sanitized, trace_path), calculate_params(sanitized)
def sanitize_model(model):
for node in model.graph.node:
node.name = node.output[0]
if "kernel_time" in node.output[0]: return None
name_map, counter = {}, 0
def get_safe_name(old_name):
nonlocal counter
if not old_name or old_name in ["input", "output"]: return old_name
if old_name not in name_map:
name_map[old_name] = f"safe_name_{counter}"
counter += 1
return name_map[old_name]
for inp in model.graph.input:
inp.name = get_safe_name(inp.name)
for init in model.graph.initializer:
init.name = get_safe_name(init.name)
for node in model.graph.node:
for i in range(len(node.input)):
node.input[i] = get_safe_name(node.input[i])
for i in range(len(node.output)):
node.output[i] = get_safe_name(node.output[i])
if len(node.output) > 0 and node.output[0]:
node.name = node.output[0]
for out in model.graph.output:
out.name = get_safe_name(out.name)
for vi in model.graph.value_info:
vi.name = get_safe_name(vi.name)
for node in model.graph.node:
node.name = node.output[0]
return model
def load_examples(task_num):
"""Loads relevant data from ARC-AGI and ARC-GEN."""
if not task_num:
return _TASK_ZERO
with open(_NEUROGOLF_DIR + f"task{task_num:03d}.json") as f:
examples = json.load(f)
return examples
def run_network(session, benchmark_input):
result = session.run(["output"], {"input": benchmark_input})
return (result[0] > 0.0).astype(float)
def show_examples(examples, bgcolor=(255, 255, 255)):
# Determine the dimensions of the image to be rendered.
width, height, offset = 0, 0, 1
for example in examples:
grid, output = example["input"], example["output"]
width += len(grid[0]) + 1 + len(output[0]) + 4
height = max(height, max(len(grid), len(output)) + 4)
# Determine the contents of the image.
image = [[bgcolor for _ in range(width)] for _ in range(height)]
for example in examples:
grid, output = example["input"], example["output"]
grid_width, output_width = len(grid[0]), len(output[0])
for r, row in enumerate(grid):
for c, cell in enumerate(row):
image[r + 2][offset + c + 1] = _COLORS[cell]
offset += grid_width + 1
for r, row in enumerate(output):
for c, cell in enumerate(row):
image[r + 2][offset + c + 1] = _COLORS[cell]
offset += output_width + 4
# Draw the image.
fig = plt.figure(figsize=(10, 5))
ax = fig.add_axes([0, 0, 1, 1])
ax.imshow(np.array(image))
# Draw the horizontal and vertical lines.
offset = 1
for example in examples:
grid, output = example["input"], example["output"]
grid_width, grid_height = len(grid[0]), len(grid)
output_width, output_height = len(output[0]), len(output)
ax.hlines([r + 1.5 for r in range(grid_height+1)],
xmin=offset+0.5, xmax=offset+grid_width+0.5, color="black")
ax.vlines([offset + c + 0.5 for c in range(grid_width+1)],
ymin=1.5, ymax=grid_height+1.5, color="black")
offset += grid_width + 1
ax.hlines([r + 1.5 for r in range(output_height+1)],
xmin=offset+0.5, xmax=offset+output_width+0.5, color="black")
ax.vlines([offset + c + 0.5 for c in range(output_width+1)],
ymin=1.5, ymax=output_height+1.5, color="black")
offset += output_width + 2
ax.vlines([offset+0.5], ymin=-0.5, ymax=height-0.5, color="black")
offset += 2
ax.set_xticks([])
ax.set_yticks([])
def show_legend():
image = [[(255, 255, 255) for _ in range(21)] for _ in range(5)]
for idx, color in enumerate(_COLORS[:10]):
image[1][2 * idx + 1] = color
for idx, color in enumerate(_COLORS[10:]):
for col in range(3):
image[3][12 * idx + col + 3] = color
fig = plt.figure(figsize=(10, 5))
ax = fig.add_axes([0, 0, 1, 1])
ax.imshow(np.array(image))
for idx, _ in enumerate(_COLORS[:10]):
color = "white" if idx in [0, 9] else "black"
ax.text(2 * idx + 0.9, 1.1, str(idx), color=color)
ax.text(3.4, 3.1, "no color", color="black")
ax.text(5.75, 3.1, "<--- special colors to indicate one-hot encoding errors --->", color="black")
ax.text(14.85, 3.1, "too many colors", color="white")
ax.set_xticks([])
ax.set_yticks([])
def single_layer_conv2d_network(weight_fn, kernel_size):
kernel_offsets = range(-kernel_size // 2 + 1, kernel_size // 2 + 1)
kernel_shape = [kernel_size, kernel_size]
w_shape = [_CHANNELS, _CHANNELS, kernel_size, kernel_size]
pads = [kernel_size // 2] * 4
weight_cells = itertools.product(range(_CHANNELS), range(_CHANNELS),
kernel_offsets, kernel_offsets)
weights = [weight_fn(o, i, (r, c)) for (o, i, r, c) in weight_cells]
x = onnx.helper.make_tensor_value_info("input", _DATA_TYPE, _GRID_SHAPE)
y = onnx.helper.make_tensor_value_info("output", _DATA_TYPE, _GRID_SHAPE)
w = onnx.helper.make_tensor("W", _DATA_TYPE, w_shape, weights)
node_def = onnx.helper.make_node("Conv", ["input", "W"], ["output"],
kernel_shape=kernel_shape, pads=pads)
graph_def = onnx.helper.make_graph([node_def], "graph", [x], [y], [w])
model_def = onnx.helper.make_model(graph_def, ir_version=_IR_VERSION,
opset_imports=_OPSET_IMPORTS)
return model_def
def verify_network(network, task_num, examples):
filename = "task{:03d}.onnx".format(task_num)
onnx.save(network, filename)
if not check_network(filename): return
try:
# Load the model, sanitize node names, and enable profiling.
sanitized = sanitize_model(onnx.load(filename))
if not sanitized: return
options = onnxruntime.SessionOptions()
options.enable_profiling = True
options.graph_optimization_level = onnxruntime.GraphOptimizationLevel.ORT_DISABLE_ALL
options.profile_file_prefix = f"{task_num:03}"
session = onnxruntime.InferenceSession(sanitized.SerializeToString(), options)
except onnxruntime.ONNXRuntimeError as e:
print(f"Error: Unable to load ONNX model: {e}")
return
arc_agi_right, arc_agi_wrong, arc_agi_expected = verify_subset(session, examples["train"] + examples["test"])
arc_gen_right, arc_gen_wrong, arc_gen_expected = verify_subset(session, examples["arc-gen"])
print(f"Results on ARC-AGI examples: {arc_agi_right} pass, {arc_agi_wrong} fail")
print(f"Results on ARC-GEN examples: {arc_gen_right} pass, {arc_gen_wrong} fail")
print()
memory, params = score_network(sanitized, session.end_profiling())
if memory is None or params is None:
print("Error: Your network performance could not be measured")
if memory < 0 or params < 0:
print("Error: Your network performance could not be measured")
elif arc_agi_wrong + arc_gen_wrong == 0:
print("Your network IS READY for submission!")
print()
print("Performance stats (memory values reported here are approximate):")
onnx_tool.model_profile(filename)
points = max(1.0, 25.0 - math.log(max(1.0, memory + params)))
print()
print(f"It appears to require {memory} bytes + {params} params, yielding {points:.3f} points.")
print()
print("Next steps:")
print(f" * Click the link below to download {filename} onto your local machine.")
print(" * Create a zip file containing that network along with all others.")
print(" * Submit that zip file to the Kaggle competition so that it can be officially scored.")
print()
display(FileLink(filename))
else:
print("Your network IS NOT ready for submission.")
expected = None
expected = arc_agi_expected if arc_agi_expected is not None else expected
expected = arc_gen_expected if arc_gen_expected is not None else expected
if expected is None: return
benchmark = convert_to_numpy(expected)
actual = {}
actual["input"] = expected["input"]
actual["output"] = convert_from_numpy(run_network(session, benchmark["input"]))
print("The expected result is shown in green; your actual result is shown in red.")
show_examples([expected], bgcolor=(200, 255, 200))
show_examples([actual], bgcolor=(255, 200, 200))
def verify_subset(session, example_subset):
right, wrong, expected, error = 0, 0, None, ""
for example in example_subset:
benchmark = convert_to_numpy(example)
if not benchmark: continue
try:
user_output = run_network(session, benchmark["input"])
if np.array_equal(user_output, benchmark["output"]):
right += 1
else:
expected = example
wrong += 1
except onnxruntime.ONNXRuntimeError:
error = traceback.format_exc()
wrong += 1
if error: print(f"Error: {error}")
return right, wrong, expected |