swhitfield/biomap-research-localization_prediction
localization_prediction Sourced from biomap-research/localization_prediction and prepared for Hugging Face datasets usage. Data files Parquet files are stored under data/ using Hugging Face split naming conventions (train-*, validation-*, test-*). Preparation Preprocess mode: minimal. Seed: 1957723. No max sequence length filter was applied. Renamed source columns: label -> targets, seq -> sequence. Columns: id, sequence, targets, split. Validation… See the full description on the dataset page: https://huggingface.co/datasets/swhitfield/biomap-research-localization_prediction.
localization_prediction
Sourced from biomap-research/localization_prediction and prepared for Hugging Face datasets usage.
Data files
Parquet files are stored under data/ using Hugging Face split naming conventions (train-*, validation-*, test-*).
Preparation
- Preprocess mode:
minimal. - Seed:
1957723. - No max sequence length filter was applied.
- Renamed source columns:
label->targets,seq->sequence. - Columns:
id,sequence,targets,split. - Validation handling: upstream did not provide a validation split, so
validationwas sampled fromtrainusing seed1957723and matched to thetestsplit size. MMseqs2 cluster boundaries were used when themmseqsbinary was available, with seeded random row sampling as the fallback. - Split subsets: canonical
train/validation/testpreserve the downloaded source splits;_random,_stratified, and_clustersuffixes select pooled alternative partitions generated with seed1957723. Each pooled partition reuses the canonical split sizes.
Sequence clustering
MMseqs2 (mmseqs easy-linclust) settings used for cluster-based split assignment:
- Minimum sequence identity (
--min-seq-id):0.3 - Minimum coverage (
-c):0.8 - Coverage mode (
--cov-mode):1 - Threads:
1 - Seed (cluster ordering / tie-breaking):
1957723
Split sizes
test: 1842 rowstest_cluster: 1842 rowstest_random: 1842 rowstest_stratified: 1842 rowstrain: 4780 rowstrain_cluster: 4780 rowstrain_random: 4780 rowstrain_stratified: 4780 rowsvalidation: 1842 rowsvalidation_cluster: 1842 rowsvalidation_random: 1842 rowsvalidation_stratified: 1842 rows
Loading
from datasets import load_dataset
ds = load_dataset("<owner>/<repo>")
print(ds)