| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| """ |
| 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 |
|
|
| |
| 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 |
|
|
| |
| 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)): |
| |
| 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) |
| |
| 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 |
| |
| fig = plt.figure(figsize=(10, 5)) |
| ax = fig.add_axes([0, 0, 1, 1]) |
| ax.imshow(np.array(image)) |
| |
| 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: |
| |
| 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 |