Dataset Viewer
Auto-converted to Parquet Duplicate
The dataset viewer is not available for this split.
Parquet error: Scan size limit exceeded: attempted to read 1169719642 bytes, limit is 300000000 bytes Make sure that 1. the Parquet files contain a page index to enable random access without loading entire row groups2. otherwise use smaller row-group sizes when serializing the Parquet files
Error code:   TooBigContentError

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.

Next K-mer Prediction

Abouts

The Next K-mer Prediction task is a zero-shot evaluation method introduced in the GENERator paper to assess the quality of pretrained models. It involves inputting a sequence segment into the model and having it predict the next K base pairs. The predicted sequence is then compared to the actual sequence to assess accuracy.

  • Sequence: The input sequence has a maximum length of 96k base pairs (bp). You can control the number of input tokens by applying left truncation.
  • Label: The next 128 bp immediately following the end of the input sequence.

Note: Prediction time may increase significantly for longer input sequences. It is strongly recommended to begin testing with a smaller number of input tokens to optimize performance.

How to use

from datasets import load_dataset

datasets = load_dataset("GenerTeam/next-kmer-prediction", "eukaryote") # or "bacteria" or "others"

Citation

@misc{wu2025generator,
    title={GENERator: A Long-Context Generative Genomic Foundation Model},
    author={Wei Wu and Qiuyi Li and Mingyang Li and Kun Fu and Fuli Feng and Jieping Ye and Hui Xiong and Zheng Wang},
    year={2025},
    eprint={2502.07272},
    archivePrefix={arXiv},
    primaryClass={cs.CL},
    url={https://arxiv.org/abs/2502.07272},
}
Downloads last month
401

Paper for GenerTeam/sequence-recovery