--- license: apache-2.0 pretty_name: TadA-Bench size_categories: - 1MTadA-Bench

A Million-Variant Benchmark for Future-Round Discovery Toward Agentic Protein Engineering

arXiv Project Page GitHub ICML 2026 Accepted License

Jin Gao1, Juntu Zhao1, Zirui Zeng1, Jiaqi Shen1, Junhao Shi1, Dukun Zhao1, Yuming Lu1,†, Dequan Wang1,2,†

1Shanghai Jiao Tong University   ยท   2Shanghai Innovation Institute
Corresponding authors

TadA-Bench overview

## Dataset Summary TadA-Bench is a fixed-data wet-lab replay benchmark built from 31 rounds of TadA directed evolution. The benchmark asks whether biological language models can use earlier experimental evidence to rank variants that appear only in later rounds, matching the candidate prioritization problem faced by iterative protein-engineering workflows. The release provides aligned protein, DNA, and RNA views for the same TadA engineering campaign. Each example is sequence-defined and includes a Seq2Graph-derived activity label, enabling reproducible future-round evaluation without rerunning wet-lab experiments. ## Splits Official comparisons should use the fixed chronological splits without reshuffling. In the paper protocol, models train on rounds 1-27, validate on round 28, and test on rounds 29-31. | View | Train split | Val split | Test split | Train | Val | Test | | --- | --- | --- | --- | ---: | ---: | ---: | | Protein | `all.AA.train` | `all.AA.val` | `all.AA.test` | 256,429 | 45,208 | 108,232 | | DNA | `all.DNA.train` | `all.DNA.val` | `all.DNA.test` | 729,302 | 148,014 | 149,884 | | RNA | `all.RNA.train` | `all.RNA.val` | `all.RNA.test` | 729,302 | 148,014 | 149,884 | ## Fields | Column | Type | Description | | --- | --- | --- | | `Sequence` | string | Protein, DNA, or RNA sequence, depending on the selected split. | | `Value` | float64 | Seq2Graph activity label used for ranking and regression evaluation. | | `Domain` | sequence[string] | Domain metadata associated with the sequence. | ## Loading Use the fixed data revision for reproducible ICML 2026 comparisons. This SHA identifies the released benchmark data files used for the official experiments. ```python from datasets import load_dataset REVISION = "07168448caaafab4efb26eca04ec3e503edf1c04" ds = load_dataset( "JinGao/TadA-Bench", split="all.AA.test", revision=REVISION, ) print(ds[0]) ``` To inspect every split: ```python from datasets import load_dataset REVISION = "07168448caaafab4efb26eca04ec3e503edf1c04" ds = load_dataset( "JinGao/TadA-Bench", revision=REVISION, ) print(ds) ``` For lightweight inspection, use streaming: ```python from datasets import load_dataset from itertools import islice REVISION = "07168448caaafab4efb26eca04ec3e503edf1c04" ds = load_dataset( "JinGao/TadA-Bench", split="all.AA.test", revision=REVISION, streaming=True, ) print(list(islice(ds, 3))) ``` ## Evaluation Code The official code repository provides fixed-split loaders, baseline configs, metric utilities, and leaderboard validation: ```text https://github.com/shiyegao/TadA-Bench ``` Leaderboard submissions should report Spearman, Recall@10%, and nDCG@10% on the selected fixed split. See the GitHub repository for submission metadata schema, format-only validation, and full-split validation commands. ## Citation If you use TadA-Bench, please cite the accompanying ICML 2026 paper: [arXiv:2606.02624](https://arxiv.org/abs/2606.02624). ```bibtex @inproceedings{gao2026tadabench, title = {TadA-Bench: A Million-Variant Benchmark for Future-Round Discovery Toward Agentic Protein Engineering}, author = {Gao, Jin and Zhao, Juntu and Zeng, Zirui and Shen, Jiaqi and Shi, Junhao and Zhao, Dukun and Lu, Yuming and Wang, Dequan}, booktitle = {Proceedings of the 43rd International Conference on Machine Learning}, year = {2026} } ``` ## License This dataset is released under the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ## Contact Jin Gao: [Homepage](https://jingao.online/) | [gaojin@sjtu.edu.cn](mailto:gaojin@sjtu.edu.cn)