--- license: other pretty_name: SciModelingBench Design-Bench Data tags: - benchmark - scientific-machine-learning - black-box-optimization - agent configs: - config_name: tfbind8 data_files: - split: six6_ref_r1 path: data/tfbind8/six6_ref_r1.parquet - config_name: cell_dag_nas data_files: - split: architectures path: data/cell_dag_nas/architectures.parquet - config_name: hopper_controller data_files: - split: policies path: data/hopper_controller/policies.parquet - config_name: superconductor data_files: - split: composition_groups path: data/superconductor/composition_groups.parquet - config_name: tfbind10_pho4 data_files: - split: observations path: data/tfbind10_pho4/observations.parquet - config_name: utr_mrl_egfp_unmodified data_files: - split: measurements path: data/utr_mrl_egfp_unmodified/measurements.parquet - config_name: gfp data_files: - split: protein_genotypes path: data/gfp/protein_genotypes.parquet - config_name: drugmatrix_clinical_pathology data_files: - split: observations path: data/drugmatrix_clinical_pathology/observations.parquet ---
Canonical, provenance-tracked observations for scientific modeling and design Tasks.
GitHub · Python Package · Documentation · Organization
This repository stores the scientific observation layer used by the SciModelingBench Design-Bench suite. The Python package supplies validators, Agent-visible Protocols, trusted Objectives, submission contracts, and Task metrics. Data and evaluation logic are versioned separately so experiments can pin both. ## Quick Start Load one canonical table with Hugging Face Datasets: ```python from datasets import load_dataset observations = load_dataset( "sci-modeling-bench/design-bench", name="drugmatrix_clinical_pathology", split="observations", ) ``` Or construct an end-to-end benchmark Task from the current package release: ```python from sci_modeling_bench.suites.design_bench import TFBind8BlackBoxOptimizationTask task = TFBind8BlackBoxOptimizationTask.from_hub() agent_input = task.build_input() ``` For reproducible work, pass an immutable Hub commit through the suite's `revision=` argument rather than relying on the current default branch. ## Available Configs | Config | Scientific object | Canonical rows | Evaluation setting | |---|---|---:|---| | `tfbind8` | Complete SIX6 DNA 8-mer binding landscape | 65,536 | Exact lookup; free-form black-box optimization | | `tfbind10_pho4` | Pho4 BET-seq raw count observations | 4,160,533 | Replicate-count posterior; black-box optimization | | `utr_mrl_egfp_unmodified` | Synthetic 50-nt 5' UTRs | 318,468 | Measured MRL; compositional pool ranking | | `gfp` | Sarkisyan GFP protein genotypes | 51,715 | Measured median brightness; pool ranking | | `superconductor` | Normalized elemental compositions | 15,164 | Measured group-median critical temperature; pool ranking | | `drugmatrix_clinical_pathology` | Individual-animal rat toxicology observations | 10,605 | Matched-control measured endpoints; pool ranking | | `cell_dag_nas` | Canonical NASBench-101 cell DAGs | 423,624 | Official repeated NAS records; black-box optimization | | `hopper_controller` | Structured PPO policy checkpoints | 3,200 | 500 frozen Hopper-v5 rollouts per policy; pool ranking | Canonical rows are not always the final candidate-pool size. Protocols derive Agent-visible observations and label-hidden candidates from the pinned table without persisting candidate ranks or evaluator-only labels. ## Trust Model SciModelingBench does not use one evaluator type for every scientific domain: - **Exact:** complete tabulated or analytic mappings, such as TFBind8. - **Measured:** retained experimental observations or repeated simulator outcomes, such as GFP, Superconductor, DrugMatrix, and Hopper Controller. - **Posterior-derived:** deterministic aggregation grounded in raw replicate counts, such as TFBind10 Pho4. - **Legacy learned surrogate:** documented when relevant, but not silently treated as experimental truth when more reliable source measurements exist. An Objective can be exact with respect to a frozen aggregation rule while the underlying scientific measurement remains noisy. Each config's documentation states that distinction explicitly. ## Repository Layout ```text README.md scimodelingbench.json data/