Dataset Organization
The PPD Promoter dataset is organized by species and context length. Each species has multiple subsets corresponding to different context lengths.
Instructions to download
You can load a dataset using HF's API, with an example below.
from datasets import load_dataset
bacillus_data = load_dataset("wanglab/ppd_promoter", 'Bacillus_subtilis_subsp._subtilis_str._168_256')
# access the train data for a specific context length
bacillus_256_data = bacillus_data['train']
- Downloads last month
- 43