The dataset viewer is not available for this split.
Error code: StreamingRowsError
Exception: ParserError
Message: Error tokenizing data. C error: Expected 1 fields in line 462, saw 2
Traceback: Traceback (most recent call last):
File "/src/services/worker/src/worker/utils.py", line 99, in get_rows_or_raise
return get_rows(
^^^^^^^^^
File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
return func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^
File "/src/services/worker/src/worker/utils.py", line 77, in get_rows
rows_plus_one = list(itertools.islice(ds, rows_max_number + 1))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2690, in __iter__
for key, example in ex_iterable:
^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 464, in __iter__
yield from self.ex_iterable
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 363, in __iter__
for key, pa_table in self.generate_tables_fn(**gen_kwags):
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/csv/csv.py", line 198, in _generate_tables
for batch_idx, df in enumerate(csv_file_reader):
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/pandas/io/parsers/readers.py", line 1843, in __next__
return self.get_chunk()
^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/pandas/io/parsers/readers.py", line 1985, in get_chunk
return self.read(nrows=size)
^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/pandas/io/parsers/readers.py", line 1923, in read
) = self._engine.read( # type: ignore[attr-defined]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/pandas/io/parsers/c_parser_wrapper.py", line 234, in read
chunks = self._reader.read_low_memory(nrows)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "pandas/_libs/parsers.pyx", line 850, in pandas._libs.parsers.TextReader.read_low_memory
File "pandas/_libs/parsers.pyx", line 905, in pandas._libs.parsers.TextReader._read_rows
File "pandas/_libs/parsers.pyx", line 874, in pandas._libs.parsers.TextReader._tokenize_rows
File "pandas/_libs/parsers.pyx", line 891, in pandas._libs.parsers.TextReader._check_tokenize_status
File "pandas/_libs/parsers.pyx", line 2061, in pandas._libs.parsers.raise_parser_error
pandas.errors.ParserError: Error tokenizing data. C error: Expected 1 fields in line 462, saw 2Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
PaxBench
This dataset provides the Paxbench data artifacts for cross-species protein abundance prediction.
Dataset Summary
The benchmark contains 88,337 protein abundance observations across seven species. The target is log10_abundance, a log10-transformed whole-organism integrated protein abundance value. Each observation includes a protein sequence and, where available, CDS, mRNA, and cDNA sequence fields.
Species included:
- Arabidopsis thaliana
- Mus musculus
- Homo sapiens
- Drosophila melanogaster
- Saccharomyces cerevisiae
- Schizosaccharomyces pombe
- Escherichia coli
Files
paxbench_tracka.parquet: main benchmark table in Parquet format.paxbench_tracka.csv.gz: compressed CSV version of the main benchmark table.paxbench_tracka.pkl: local pickle copy of the main benchmark table.metadata/dataset_summary.json: dataset-level summary statistics, species counts, split counts, sequence coverage, and CDS repair summary.metadata/schema.tsv: column schema with field names, non-null counts, and dtypes.metadata/id_mapping.tsv.gz: mapping from publicpaxbench_idvalues to source identifiers and source metadata.metadata/cds_terminal_trim_report.tsv: report for CDS terminal trimming repairs.results/: compact summary outputs for embedding, LoRA, and zero-shot experiments.demo/paxbench_demo.tsv: tiny 30 train / 3 validation / 3 test demo table used by the companion code repository.
Main Table Columns
paxbench_id: public row identifier used for benchmark joins and prediction files.species: species name for the observation.protein_sequence: amino-acid sequence.cds_sequence: coding DNA sequence, when available.mrna_sequence: mRNA sequence, when available.cdna_sequence: cDNA transcript sequence, when available.log10_abundance: regression target, expressed as log10-transformed integrated protein abundance.split_species: species holdout split.split_homology: homology-aware split.split_highlow: abundance-stratified high/low split.split_random: random row split.split_fungi2fungi: fungi-to-fungi split; non-fungal species are missing.split_fungirandom: random split restricted to fungal species; non-fungal species are missing.split_cluster: sequence-cluster split.split_species2: alternate species holdout split.split_species3: alternate species holdout split.
Split columns use train, validation, and test labels when a row belongs to that split. Some specialized split columns contain missing values for rows outside the relevant species subset.
Metadata
The metadata/ directory makes the benchmark auditable without duplicating the main sequence table.
dataset_summary.jsonrecords dataset size, column names, species counts, split counts, sequence coverage, and the number of CDS terminal trim repairs.schema.tsvrecords each main-table field, non-null count, and dtype.id_mapping.tsv.gzlinkspaxbench_idto source-level identifiers and source metadata.cds_terminal_trim_report.tsvlists the 40 CDS records where one or two terminal nucleotides were removed so the CDS length is divisible by three and remains consistent with the protein sequence.
Results
The results/ directory contains compact summary score tables:
results/embedding/embedding_score.csv: embedding extraction plus ML regressor results.results/lora/lora_score.csv: LoRA finetuning results.results/zeroshot/zeroshot_score.csv: zero-shot scoring results.
These files summarize experiments and are not required to load the benchmark.
Intended Use
This dataset is intended for benchmarking sequence-derived and multimodal predictors of protein abundance, including cross-species generalization using protein, CDS, mRNA, or cDNA sequence inputs.
Limitations
The abundance labels are integrated whole-organism estimates and may reflect biological condition, assay protocol, source dataset, and integration effects. CDS and mRNA coverage is incomplete, and missingness is not random. Cross-species evaluation may reflect both biological differences and dataset-source effects.
Responsible Use
This benchmark should not be interpreted as condition-specific abundance ground truth. It is not intended for clinical, regulatory, or direct drug-discovery decision-making without further validation.
Loading
import pandas as pd
df = pd.read_parquet("paxbench_tracka.parquet")
print(df.head())
For environments without Parquet support:
import pandas as pd
df = pd.read_csv("paxbench_tracka.csv.gz")
print(df.head())
- Downloads last month
- 17