The dataset viewer is not available for this subset.
Exception: SplitsNotFoundError
Message: The split names could not be parsed from the dataset config.
Traceback: Traceback (most recent call last):
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 290, in _generate_tables
pa_table = paj.read_json(
io.BytesIO(batch), read_options=paj.ReadOptions(block_size=block_size)
)
File "pyarrow/_json.pyx", line 342, in pyarrow._json.read_json
File "pyarrow/error.pxi", line 155, in pyarrow.lib.pyarrow_internal_check_status
return check_status(status)
File "pyarrow/error.pxi", line 92, in pyarrow.lib.check_status
raise convert_status(status)
pyarrow.lib.ArrowInvalid: JSON parse error: Column(/task/examples/[]/input/[]) changed from string to number in row 0
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
for split_generator in builder._split_generators(
~~~~~~~~~~~~~~~~~~~~~~~~~^
StreamingDownloadManager(base_path=builder.base_path, download_config=download_config)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 101, in _split_generators
pa_table = next(iter(self._generate_tables(**splits[0].gen_kwargs, allow_full_read=False)))[1]
~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 304, in _generate_tables
batch = json_encode_fields_in_json_lines(original_batch, json_field_paths)
File "/usr/local/lib/python3.14/site-packages/datasets/utils/json.py", line 111, in json_encode_fields_in_json_lines
examples = [ujson_loads(line) for line in original_batch.splitlines()]
~~~~~~~~~~~^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/utils/json.py", line 20, in ujson_loads
return pd.io.json.ujson_loads(*args, **kwargs)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
ValueError: Expected object or value
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 66, in compute_split_names_from_streaming_response
for split in get_dataset_split_names(
~~~~~~~~~~~~~~~~~~~~~~~^
path=dataset,
^^^^^^^^^^^^^
config_name=config,
^^^^^^^^^^^^^^^^^^^
token=hf_token,
^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
info = get_dataset_config_info(
path,
...<6 lines>...
**config_kwargs,
)
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
AgenticInterpBench
A benchmark for evaluating language-model agents on transformer circuit explanation. Given an already-localized circuit, the agent must recover what each component does: a functional role tag from a 5-class taxonomy, a task-specific natural-language note, and a derived description of the overall task.
The benchmark has 84 semi-synthetic circuits with 163 annotated components, plus a manually annotated real-model circuit (three-operand addition in Llama-3-8B). It was introduced in Can Language Model Agents be Helpful Circuit Explainers in Mechanistic Interpretability? and is used to evaluate the HyVE (Hypothesize, Validate, Explain) agent framework.
Contents
annotations/case_{id}.json # 84 (task specifications, I/O examples, gold component roles)
real_circuits/llama3_abc_annotations.json # The AF1 Circuit / Llama-3-8B reference annotation (10 components)
Each annotations/case_{id}.json carries the task summary, up to five input–output examples, the originating RASP program, the target model, and the localized components. Every component has an id, a TransformerLens hook, and a gold role (tag + task-specific note), following the running frac_prevs example:
[
{
"id": "L0_MLP",
"hook": "blocks.0.mlp.hook_post",
"role": {
"tag": "INDICATOR",
"note": "Computes per-position feature indicating whether the token at that position is 'x' or not."
},
"labels": ["is_x_3"]
},
{
"id": "L1H2_ATTN",
"hook": "blocks.1.attn.hook_result[2]",
"role": {
"tag": "AGGREGATOR",
"note": "Aggregates prefix fraction by attending over previous positions."
},
"labels": ["frac_prevs_1"]
}
]
real_circuits/llama3_abc_annotations.json holds reference roles for the 10-component AF1 circuit (Mamidanna et al., 2025), with per-component notes, and supporting findings.
Role taxonomy
| Tag | Description |
|---|---|
| INDICATOR | Detects a property of the current token and emits a binary/predicate signal. |
| AGGREGATOR | Summarizes selected positions into a count, fraction, or accumulated quantity. |
| ROUTER | Moves content between positions via positional or index-based selection. |
| MAPPER | Transforms each position independently into a non-binary output. |
| COMBINER | Fuses two or more upstream signals into one output. |
Statistics
| Circuits | 84 |
| Annotated components | 163 |
| MLP / attention components | 120 / 43 |
| Components per circuit (avg / min / max) | 1.94 / 1 / 10 |
| Tags (MAPPER / COMBINER / AGGREGATOR / INDICATOR / ROUTER) | 72 / 33 / 32 / 15 / 11 |
Provenance & license
The annotation layer here is the authors' own work, released under the MIT License. The synthetic tasks and circuits derive from InterpBench (Gupta et al., 2025), which retrains Tracr-compiled RASP programs; the two IOI tasks are excluded. Model weights live in the InterpBench repo and are loaded separately at runtime by HyVE.
Citation
@misc{khan2026languagemodelagentshelpful,
title={Can Language Model Agents be Helpful Circuit Explainers in Mechanistic Interpretability?},
author={Ayan Antik Khan and Harsh Kohli and Yuekun Yao and Huan Sun and Ziyu Yao},
year={2026},
eprint={2606.24026},
archivePrefix={arXiv},
primaryClass={cs.AI},
url={https://arxiv.org/abs/2606.24026},
}
- Downloads last month
- 1