plantcad/PlantCAD2_zero_shot_tasks
π± PlantCAD2 Zero-Shot Tasks Zero-shot evaluation tasks for plant genomics using PlantCAD2.This dataset contains tasks designed to evaluate model performance without task-specific training. π Available Tasks π¬ Cross-species Evolutionary Conservation Task Name Description Samples Metric conservation_within_andropogoneae Predict conserved vs non-conserved sites using alignments within 35 Andropogoneae genomes 19,030 vs 19,030 AUROCβ¦ See the full description on the dataset page: https://huggingface.co/datasets/plantcad/PlantCAD2_zero_shot_tasks.
π± PlantCAD2 Zero-Shot Tasks
Zero-shot evaluation tasks for plant genomics using PlantCAD2. This dataset contains tasks designed to evaluate model performance without task-specific training.
π Available Tasks
π¬ Cross-species Evolutionary Conservation
𧬠Key Junction Recovery
π½ Within-species Conservation (Maize)
π§© Structural Variant Effect
π Data Format
π Data Splits
π Usage Example
from datasets import load_dataset, get_dataset_config_names
# List all available tasks
tasks = get_dataset_config_names("plantcad/PlantCAD2_zero_shot_tasks")
print("Available tasks:", tasks)
# Example: Classification task
classification_data = load_dataset("plantcad/PlantCAD2_zero_shot_tasks", "conservation_within_poaceae_tis")
test_split = classification_data['test']
print(f"Test samples: {len(test_split)}")
print(f"Sample: {test_split[0]}")
# Example: TIS recovery task
recovery_data = load_dataset("plantcad/PlantCAD2_zero_shot_tasks", "tis_recovery")
if 'test_maize' in recovery_data:
maize_data = recovery_data['test_maize']
print(f"Maize recovery samples: {len(maize_data)}")