update
Browse files- README.md +274 -272
- STRUCTURE.md +170 -0
- BEACON.zip β benchmarks/BEACON.zip +2 -2
- GB.zip β benchmarks/GB.zip +2 -2
- GUE.zip β benchmarks/GUE.zip +2 -2
- PGB.zip β benchmarks/PGB.zip +2 -2
- RGB.zip β benchmarks/RGB.zip +2 -2
- benchmarks/benchmarks_info.json +57 -0
- RNA-SSP-Archive2.zip β datasets/RNA-SSP-Archive2.zip +0 -0
- RNA-mRNA.zip β datasets/RNA-mRNA.zip +0 -0
- datasets/datasets_info.json +52 -0
- deepsea_tfb_prediction.zip β datasets/deepsea_tfb_prediction.zip +0 -0
- translation_efficiency_prediction.zip β datasets/translation_efficiency_prediction.zip +0 -0
- variant_effect_prediction.zip β datasets/variant_effect_prediction.zip +0 -0
- models/models_info.json +4 -0
- pipelines/pipelines_info.json +4 -0
README.md
CHANGED
|
@@ -2,26 +2,62 @@
|
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
| 4 |
|
| 5 |
-
# 𧬠OmniGenBench Hub:
|
| 6 |
|
| 7 |
[](https://opensource.org/licenses/Apache-2.0)
|
| 8 |
-
[](https://github.com/yangheng95/OmniGenBench)
|
| 10 |
|
| 11 |
-
Welcome to **OmniGenBench Hub** -
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
|
| 13 |
## π― What is OmniGenBench Hub?
|
| 14 |
|
| 15 |
-
OmniGenBench Hub
|
| 16 |
-
|
| 17 |
-
- β
**
|
| 18 |
-
- β
**
|
| 19 |
-
- β
**
|
| 20 |
-
- β
**
|
|
|
|
|
|
|
| 21 |
|
| 22 |
## π Quick Start
|
| 23 |
|
| 24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
|
| 26 |
```python
|
| 27 |
from omnigenbench import OmniDatasetForSequenceClassification, OmniTokenizer
|
|
@@ -29,353 +65,319 @@ from omnigenbench import OmniDatasetForSequenceClassification, OmniTokenizer
|
|
| 29 |
# Initialize tokenizer
|
| 30 |
tokenizer = OmniTokenizer.from_pretrained("yangheng/OmniGenome-52M")
|
| 31 |
|
| 32 |
-
# Load
|
| 33 |
datasets = OmniDatasetForSequenceClassification.from_hub(
|
| 34 |
dataset_name="deepsea_tfb_prediction",
|
| 35 |
tokenizer=tokenizer,
|
| 36 |
max_length=512
|
| 37 |
)
|
| 38 |
|
| 39 |
-
#
|
| 40 |
-
# Access train, validation, and test splits
|
| 41 |
train_dataset = datasets['train']
|
| 42 |
valid_dataset = datasets['valid']
|
| 43 |
test_dataset = datasets['test']
|
| 44 |
```
|
| 45 |
|
| 46 |
-
##
|
| 47 |
|
| 48 |
-
|
|
|
|
| 49 |
|
| 50 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
|
|
|
|
|
|
| 57 |
|
| 58 |
-
##
|
| 59 |
|
| 60 |
-
###
|
| 61 |
-
- **Research Area**: Gene Regulation and Transcription Factor Binding
|
| 62 |
-
- **Task**: Binary/Multi-class classification of transcription factor binding sites
|
| 63 |
-
- **Applications**:
|
| 64 |
-
- Regulatory element discovery
|
| 65 |
-
- Gene expression prediction
|
| 66 |
-
- Epigenomic analysis
|
| 67 |
-
- Drug target identification
|
| 68 |
-
- **Data Format**: DNA sequences with binding labels
|
| 69 |
-
- **Usage Example**:
|
| 70 |
-
```python
|
| 71 |
-
from omnigenbench import OmniDatasetForSequenceClassification, OmniTokenizer
|
| 72 |
|
| 73 |
-
|
| 74 |
-
tfb_datasets = OmniDatasetForSequenceClassification.from_hub(
|
| 75 |
-
dataset_name="deepsea_tfb_prediction",
|
| 76 |
-
tokenizer=tokenizer,
|
| 77 |
-
max_length=512
|
| 78 |
-
)
|
| 79 |
-
# Access the training dataset
|
| 80 |
-
train_data = tfb_datasets['train']
|
| 81 |
-
```
|
| 82 |
|
| 83 |
-
|
| 84 |
-
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
|
| 90 |
-
- Gene expression engineering
|
| 91 |
-
- **Data Format**: mRNA sequences with continuous efficiency scores
|
| 92 |
-
- **Usage Example**:
|
| 93 |
-
```python
|
| 94 |
-
from omnigenbench import OmniDatasetForSequenceRegression, OmniTokenizer
|
| 95 |
|
| 96 |
-
|
| 97 |
-
|
| 98 |
-
dataset_name="translation_efficiency_prediction",
|
| 99 |
-
tokenizer=tokenizer,
|
| 100 |
-
max_length=256
|
| 101 |
-
)
|
| 102 |
-
# Access the training dataset
|
| 103 |
-
train_data = translation_datasets['train']
|
| 104 |
-
```
|
| 105 |
|
| 106 |
-
###
|
| 107 |
-
- **Research Area**: Functional Genomics and Precision Medicine
|
| 108 |
-
- **Task**: Multi-class classification of genetic variant effects
|
| 109 |
-
- **Applications**:
|
| 110 |
-
- Clinical variant interpretation
|
| 111 |
-
- Precision medicine
|
| 112 |
-
- Pharmacogenomics
|
| 113 |
-
- Disease risk assessment
|
| 114 |
-
- **Data Format**: Protein sequences with variant effect annotations
|
| 115 |
-
- **Usage Example**:
|
| 116 |
-
```python
|
| 117 |
-
from omnigenbench import OmniDatasetForTokenClassification, OmniTokenizer
|
| 118 |
|
| 119 |
-
|
| 120 |
-
variant_datasets = OmniDatasetForTokenClassification.from_hub(
|
| 121 |
-
dataset_name="variant_effective_prediction",
|
| 122 |
-
tokenizer=tokenizer,
|
| 123 |
-
max_length=1024
|
| 124 |
-
)
|
| 125 |
-
# Access the training dataset
|
| 126 |
-
train_data = variant_datasets['train']
|
| 127 |
-
```
|
| 128 |
|
| 129 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 130 |
|
| 131 |
-
|
|
|
|
| 132 |
|
| 133 |
-
|
| 134 |
-
dataset_name.zip
|
| 135 |
-
βββ data/
|
| 136 |
-
β βββ train.csv # Training data
|
| 137 |
-
β βββ valid.csv # Validation data
|
| 138 |
-
β βββ test.csv # Test data
|
| 139 |
-
β βββ metadata.json # Dataset metadata
|
| 140 |
-
βββ config.py # Dataset configuration and loading scripts
|
| 141 |
-
βββ README.md # Dataset-specific documentation
|
| 142 |
-
```
|
| 143 |
|
| 144 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 145 |
|
| 146 |
-
|
| 147 |
|
| 148 |
-
###
|
| 149 |
-
```python
|
| 150 |
-
from omnigenbench import OmniDatasetForSequenceClassification, OmniTokenizer
|
| 151 |
|
| 152 |
-
|
| 153 |
-
tokenizer = OmniTokenizer.from_pretrained("yangheng/OmniGenome-52M")
|
| 154 |
|
| 155 |
-
|
| 156 |
-
datasets = OmniDatasetForSequenceClassification.from_hub(
|
| 157 |
-
dataset_name="deepsea_tfb_prediction",
|
| 158 |
-
tokenizer=tokenizer,
|
| 159 |
-
max_length=512
|
| 160 |
-
)
|
| 161 |
|
| 162 |
-
# Access individual splits
|
| 163 |
-
train_dataset = datasets['train']
|
| 164 |
-
valid_dataset = datasets['valid']
|
| 165 |
-
test_dataset = datasets['test']
|
| 166 |
-
```
|
| 167 |
|
| 168 |
-
##
|
| 169 |
-
```python
|
| 170 |
-
from omnigenbench import OmniDatasetForSequenceRegression, OmniTokenizer
|
| 171 |
|
| 172 |
-
#
|
| 173 |
-
tokenizer = OmniTokenizer.from_pretrained("yangheng/OmniGenome-52M")
|
| 174 |
|
| 175 |
-
|
| 176 |
-
datasets = OmniDatasetForSequenceRegression.from_hub(
|
| 177 |
-
dataset_name="translation_efficiency_prediction",
|
| 178 |
-
tokenizer=tokenizer,
|
| 179 |
-
max_length=256
|
| 180 |
-
)
|
| 181 |
|
| 182 |
-
#
|
| 183 |
-
|
| 184 |
-
|
| 185 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 186 |
```
|
| 187 |
|
| 188 |
-
###
|
| 189 |
-
```
|
| 190 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 191 |
|
| 192 |
-
#
|
| 193 |
-
tokenizer = OmniTokenizer.from_pretrained("yangheng/OmniGenome-52M")
|
| 194 |
|
| 195 |
-
|
| 196 |
-
datasets = OmniDatasetForTokenClassification.from_hub(
|
| 197 |
-
dataset_name="variant_effective_prediction",
|
| 198 |
-
tokenizer=tokenizer,
|
| 199 |
-
max_length=1024
|
| 200 |
-
)
|
| 201 |
|
| 202 |
-
|
| 203 |
-
|
| 204 |
-
valid_dataset = datasets['valid']
|
| 205 |
-
test_dataset = datasets['test']
|
| 206 |
```
|
| 207 |
|
| 208 |
-
|
|
|
|
|
|
|
|
|
|
| 209 |
|
| 210 |
-
|
| 211 |
|
| 212 |
-
|
| 213 |
-
- **π¬ Scientific Background**: Detailed biological context and significance
|
| 214 |
-
- **π‘ Best Practices**: Recommended approaches and methodologies
|
| 215 |
-
- **π Benchmark Results**: Performance baselines from state-of-the-art models
|
| 216 |
|
| 217 |
-
|
|
|
|
|
|
|
| 218 |
|
| 219 |
-
|
| 220 |
-
|
| 221 |
-
|
| 222 |
-
- Seamless integration with Hugging Face ecosystem
|
| 223 |
|
| 224 |
-
#
|
| 225 |
-
|
| 226 |
-
|
| 227 |
-
|
|
|
|
|
|
|
| 228 |
|
| 229 |
-
###
|
| 230 |
-
|
| 231 |
-
|
| 232 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 233 |
|
| 234 |
-
###
|
| 235 |
-
|
| 236 |
-
|
| 237 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 238 |
|
| 239 |
-
##
|
| 240 |
|
| 241 |
-
### Basic Usage Pattern
|
| 242 |
```python
|
| 243 |
-
|
| 244 |
-
from omnigenbench import (
|
| 245 |
-
OmniDatasetForSequenceClassification,
|
| 246 |
-
OmniTokenizer,
|
| 247 |
-
OmniModelForSequenceClassification,
|
| 248 |
-
Trainer
|
| 249 |
-
)
|
| 250 |
|
| 251 |
-
#
|
| 252 |
tokenizer = OmniTokenizer.from_pretrained("yangheng/OmniGenome-52M")
|
| 253 |
|
| 254 |
-
#
|
| 255 |
datasets = OmniDatasetForSequenceClassification.from_hub(
|
| 256 |
dataset_name="deepsea_tfb_prediction",
|
| 257 |
tokenizer=tokenizer,
|
| 258 |
max_length=512
|
| 259 |
)
|
| 260 |
|
| 261 |
-
#
|
| 262 |
-
|
| 263 |
-
|
| 264 |
-
|
| 265 |
-
|
| 266 |
-
)
|
| 267 |
|
| 268 |
-
#
|
| 269 |
-
trainer = Trainer(
|
| 270 |
-
model=model,
|
| 271 |
-
train_dataset=datasets['train'],
|
| 272 |
-
valid_dataset=datasets['valid'],
|
| 273 |
-
epochs=10,
|
| 274 |
-
batch_size=16,
|
| 275 |
-
learning_rate=1e-4
|
| 276 |
-
)
|
| 277 |
|
| 278 |
-
|
| 279 |
-
|
| 280 |
|
| 281 |
-
#
|
| 282 |
-
|
| 283 |
-
|
|
|
|
|
|
|
|
|
|
| 284 |
|
| 285 |
-
#
|
| 286 |
-
|
| 287 |
-
|
|
|
|
|
|
|
|
|
|
| 288 |
```
|
| 289 |
|
| 290 |
-
##
|
| 291 |
-
```python
|
| 292 |
-
from omnigenbench import OmniDatasetForSequenceRegression, OmniTokenizer
|
| 293 |
|
| 294 |
-
|
| 295 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 296 |
|
| 297 |
-
#
|
| 298 |
-
datasets = OmniDatasetForSequenceRegression.from_hub(
|
| 299 |
-
dataset_name="translation_efficiency_prediction",
|
| 300 |
-
tokenizer=tokenizer,
|
| 301 |
-
max_length=512,
|
| 302 |
-
cache_dir="./cache"
|
| 303 |
-
)
|
| 304 |
|
| 305 |
-
|
| 306 |
-
|
| 307 |
-
|
| 308 |
-
|
| 309 |
-
|
| 310 |
-
pin_memory=True
|
| 311 |
-
)
|
| 312 |
-
|
| 313 |
-
# Use in training loop
|
| 314 |
-
for batch in train_loader:
|
| 315 |
-
input_ids = batch['input_ids']
|
| 316 |
-
attention_mask = batch['attention_mask']
|
| 317 |
-
labels = batch['labels']
|
| 318 |
-
# Your training code here...
|
| 319 |
-
```
|
| 320 |
|
| 321 |
## π€ Contributing
|
| 322 |
|
| 323 |
-
We welcome contributions to expand our
|
| 324 |
|
| 325 |
-
1.
|
| 326 |
-
2.
|
| 327 |
-
3.
|
| 328 |
-
4.
|
| 329 |
|
| 330 |
-
## π
|
| 331 |
|
| 332 |
-
All
|
| 333 |
-
-
|
| 334 |
-
-
|
| 335 |
-
-
|
| 336 |
-
-
|
| 337 |
|
| 338 |
-
## π Support
|
| 339 |
|
| 340 |
-
- **
|
| 341 |
-
- **
|
| 342 |
-
- **
|
| 343 |
-
- **Email**: Contact the maintainer at [yangheng@exeter.ac.uk]
|
| 344 |
|
| 345 |
-
##
|
| 346 |
|
| 347 |
-
|
| 348 |
-
- π **Additional Dataset Categories**: Epigenomics, Proteomics, Multi-omics
|
| 349 |
-
- π§ **Enhanced Tools**: Advanced preprocessing utilities and evaluation metrics
|
| 350 |
-
- π **Community Features**: User-contributed datasets and collaborative benchmarks
|
| 351 |
-
- π± **API Expansion**: REST API for programmatic access
|
| 352 |
|
| 353 |
-
|
| 354 |
-
|
| 355 |
-
|
| 356 |
-
|
| 357 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 358 |
|
| 359 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 360 |
|
| 361 |
-
|
| 362 |
-
- The original dataset creators and research teams
|
| 363 |
-
- The open-source community for tools and frameworks
|
| 364 |
-
- Beta testers and early adopters for valuable feedback
|
| 365 |
-
- The Hugging Face team for hosting infrastructure
|
| 366 |
|
| 367 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 368 |
|
| 369 |
-
|
| 370 |
-
|
| 371 |
-
|
| 372 |
-
|
| 373 |
-
|
| 374 |
-
|
| 375 |
-
| **Research Areas** | Gene Regulation, Protein Synthesis, Functional Genomics |
|
| 376 |
|
| 377 |
---
|
| 378 |
|
| 379 |
-
**π§¬
|
| 380 |
|
| 381 |
-
*
|
|
|
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
| 4 |
|
| 5 |
+
# 𧬠OmniGenBench Hub: Unified Repository for Genomic Foundation Model Resources
|
| 6 |
|
| 7 |
[](https://opensource.org/licenses/Apache-2.0)
|
| 8 |
+
[](#benchmarks)
|
| 9 |
+
[](#datasets)
|
| 10 |
[](https://github.com/yangheng95/OmniGenBench)
|
| 11 |
|
| 12 |
+
Welcome to **OmniGenBench Hub** - the unified, centralized repository for genomic foundation model resources. This hub consolidates all benchmarks, datasets, models, and pipelines required by the OmniGenBench framework, providing researchers with a single source of truth for reproducible genomic AI research.
|
| 13 |
+
|
| 14 |
+
## π¦ Repository Structure
|
| 15 |
+
|
| 16 |
+
```
|
| 17 |
+
OmniGenBench_Hub/
|
| 18 |
+
βββ benchmarks/ # Benchmark suites (RGB, GUE, BEACON, etc.)
|
| 19 |
+
β βββ benchmarks_info.json
|
| 20 |
+
β βββ RGB.zip
|
| 21 |
+
β βββ GUE.zip
|
| 22 |
+
β βββ BEACON.zip
|
| 23 |
+
β βββ GB.zip
|
| 24 |
+
β βββ PGB.zip
|
| 25 |
+
β βββ ...
|
| 26 |
+
βββ datasets/ # Individual datasets
|
| 27 |
+
β βββ datasets_info.json
|
| 28 |
+
β βββ deepsea_tfb_prediction.zip
|
| 29 |
+
β βββ translation_efficiency_prediction.zip
|
| 30 |
+
β βββ variant_effect_prediction.zip
|
| 31 |
+
βββ models/ # Pre-trained models (future)
|
| 32 |
+
β βββ models_info.json
|
| 33 |
+
βββ pipelines/ # Ready-to-use pipelines (future)
|
| 34 |
+
βββ pipelines_info.json
|
| 35 |
+
```
|
| 36 |
|
| 37 |
## π― What is OmniGenBench Hub?
|
| 38 |
|
| 39 |
+
OmniGenBench Hub serves as the **unified data infrastructure** for the OmniGenBench framework, providing:
|
| 40 |
+
|
| 41 |
+
- β
**Centralized Storage**: All resources in one place instead of scattered repositories
|
| 42 |
+
- β
**Organized Structure**: Clear subdirectories (benchmarks/, datasets/, models/, pipelines/)
|
| 43 |
+
- β
**Metadata Rich**: Comprehensive JSON metadata files for programmatic access
|
| 44 |
+
- β
**Backward Compatible**: Seamless migration from legacy Space repositories
|
| 45 |
+
- β
**Standardized Formats**: Consistent data formats and structures across all resources
|
| 46 |
+
- β
**Validated Content**: All resources tested through the OmniGenBench framework
|
| 47 |
|
| 48 |
## π Quick Start
|
| 49 |
|
| 50 |
+
### Download Benchmarks
|
| 51 |
+
|
| 52 |
+
```bash
|
| 53 |
+
# Using OmniGenBench CLI (automatically uses this hub)
|
| 54 |
+
ogb autobench -m yangheng/PlantRNA-FM -b RGB
|
| 55 |
+
|
| 56 |
+
# The framework will automatically download from:
|
| 57 |
+
# https://huggingface.co/datasets/yangheng/OmniGenBench_Hub/resolve/main/benchmarks/RGB.zip
|
| 58 |
+
```
|
| 59 |
+
|
| 60 |
+
### Download Datasets
|
| 61 |
|
| 62 |
```python
|
| 63 |
from omnigenbench import OmniDatasetForSequenceClassification, OmniTokenizer
|
|
|
|
| 65 |
# Initialize tokenizer
|
| 66 |
tokenizer = OmniTokenizer.from_pretrained("yangheng/OmniGenome-52M")
|
| 67 |
|
| 68 |
+
# Load dataset from hub (automatically downloads from this repository)
|
| 69 |
datasets = OmniDatasetForSequenceClassification.from_hub(
|
| 70 |
dataset_name="deepsea_tfb_prediction",
|
| 71 |
tokenizer=tokenizer,
|
| 72 |
max_length=512
|
| 73 |
)
|
| 74 |
|
| 75 |
+
# Access splits
|
|
|
|
| 76 |
train_dataset = datasets['train']
|
| 77 |
valid_dataset = datasets['valid']
|
| 78 |
test_dataset = datasets['test']
|
| 79 |
```
|
| 80 |
|
| 81 |
+
### Direct Download via HuggingFace Hub API
|
| 82 |
|
| 83 |
+
```python
|
| 84 |
+
from huggingface_hub import snapshot_download
|
| 85 |
|
| 86 |
+
# Download entire benchmark
|
| 87 |
+
benchmark_path = snapshot_download(
|
| 88 |
+
repo_id="yangheng/OmniGenBench_Hub",
|
| 89 |
+
repo_type="dataset",
|
| 90 |
+
allow_patterns="benchmarks/RGB.zip"
|
| 91 |
+
)
|
| 92 |
|
| 93 |
+
# Download specific dataset
|
| 94 |
+
dataset_path = snapshot_download(
|
| 95 |
+
repo_id="yangheng/OmniGenBench_Hub",
|
| 96 |
+
repo_type="dataset",
|
| 97 |
+
allow_patterns="datasets/translation_efficiency_prediction.zip"
|
| 98 |
+
)
|
| 99 |
+
```
|
| 100 |
|
| 101 |
+
## π Available Resources
|
| 102 |
|
| 103 |
+
### π§ͺ Benchmarks
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 104 |
|
| 105 |
+
Our hub hosts **5 comprehensive benchmark suites** covering RNA and DNA analysis tasks:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 106 |
|
| 107 |
+
| Benchmark | Genome | Tasks | Task Types | Species | Description |
|
| 108 |
+
|-----------|--------|-------|------------|---------|-------------|
|
| 109 |
+
| **RGB** | RNA | 10 | Classification, Token Classification | Multi-species | RNA Genome Benchmark - Comprehensive RNA understanding |
|
| 110 |
+
| **BEACON** | RNA | 13 | Classification, Regression | Multi-species | Benchmarking Environment for RNA Computational Methods |
|
| 111 |
+
| **GUE** | DNA | 28 | Classification | Multi-species | Genomic Understanding Evaluation |
|
| 112 |
+
| **GB** | DNA | 9 | Classification | Multi-species | Classic Genomic Benchmark |
|
| 113 |
+
| **PGB** | DNA | 7 | Classification, Regression | Plant | Plant Genomics Benchmark |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 114 |
|
| 115 |
+
**Download locations**: `benchmarks/<benchmark_name>.zip`
|
| 116 |
+
**Metadata**: `benchmarks/benchmarks_info.json`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 117 |
|
| 118 |
+
### π Datasets
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 119 |
|
| 120 |
+
**5 curated individual datasets** for specific genomic tasks:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 121 |
|
| 122 |
+
| Dataset | Genome | Task Type | Species | Description |
|
| 123 |
+
|---------|--------|-----------|---------|-------------|
|
| 124 |
+
| **deepsea_tfb_prediction** | DNA | Classification | Human | Transcription Factor Binding prediction |
|
| 125 |
+
| **translation_efficiency_prediction** | RNA | Regression | Multi-species | mRNA translation efficiency |
|
| 126 |
+
| **variant_effect_prediction** | DNA | Classification | Human | Genomic variant effect prediction |
|
| 127 |
+
| **RNA-SSP-Archive2** | RNA | Token Classification | Multi-species | RNA Secondary Structure Prediction |
|
| 128 |
+
| **RNA-mRNA** | RNA | Classification | Multi-species | RNA mRNA classification |
|
| 129 |
|
| 130 |
+
**Download locations**: `datasets/<dataset_name>.zip`
|
| 131 |
+
**Metadata**: `datasets/datasets_info.json`
|
| 132 |
|
| 133 |
+
### π€ Models (Coming Soon)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 134 |
|
| 135 |
+
Pre-trained genomic foundation models will be hosted here in future releases. Currently, models are available directly on HuggingFace Hub:
|
| 136 |
+
- [yangheng/OmniGenome-186M](https://huggingface.co/yangheng/OmniGenome-186M)
|
| 137 |
+
- [yangheng/OmniGenome-52M](https://huggingface.co/yangheng/OmniGenome-52M)
|
| 138 |
+
- [yangheng/PlantRNA-FM](https://huggingface.co/yangheng/PlantRNA-FM)
|
| 139 |
+
- And 30+ more models...
|
| 140 |
|
| 141 |
+
**Metadata**: `models/models_info.json`
|
| 142 |
|
| 143 |
+
### οΏ½ Pipelines (Coming Soon)
|
|
|
|
|
|
|
| 144 |
|
| 145 |
+
Ready-to-use analysis pipelines will be added in future releases.
|
|
|
|
| 146 |
|
| 147 |
+
**Metadata**: `pipelines/pipelines_info.json`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 148 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 149 |
|
| 150 |
+
## π§ Technical Details
|
|
|
|
|
|
|
| 151 |
|
| 152 |
+
### Metadata Files
|
|
|
|
| 153 |
|
| 154 |
+
Each resource category includes a metadata JSON file for programmatic access:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 155 |
|
| 156 |
+
#### `benchmarks/benchmarks_info.json`
|
| 157 |
+
```json
|
| 158 |
+
{
|
| 159 |
+
"RGB": {
|
| 160 |
+
"filename": "RGB.zip",
|
| 161 |
+
"genome": "RNA",
|
| 162 |
+
"species": "multi-species",
|
| 163 |
+
"task_number": 10,
|
| 164 |
+
"task_type": "sequence_classification, token_classification",
|
| 165 |
+
"description": "RNA Genome Benchmark",
|
| 166 |
+
"url": "https://huggingface.co/datasets/yangheng/OmniGenBench_Hub",
|
| 167 |
+
"author": "YANG, HENG",
|
| 168 |
+
"license": "Apache-2.0"
|
| 169 |
+
}
|
| 170 |
+
}
|
| 171 |
```
|
| 172 |
|
| 173 |
+
#### `datasets/datasets_info.json`
|
| 174 |
+
```json
|
| 175 |
+
{
|
| 176 |
+
"deepsea_tfb_prediction": {
|
| 177 |
+
"filename": "deepsea_tfb_prediction.zip",
|
| 178 |
+
"genome": "DNA",
|
| 179 |
+
"species": "human",
|
| 180 |
+
"task_type": "sequence_classification",
|
| 181 |
+
"description": "DeepSEA TFB prediction",
|
| 182 |
+
"url": "https://huggingface.co/datasets/yangheng/OmniGenBench_Hub",
|
| 183 |
+
"author": "YANG, HENG",
|
| 184 |
+
"license": "Apache-2.0"
|
| 185 |
+
}
|
| 186 |
+
}
|
| 187 |
+
```
|
| 188 |
|
| 189 |
+
### Download URLs
|
|
|
|
| 190 |
|
| 191 |
+
All resources follow a consistent URL pattern:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 192 |
|
| 193 |
+
```
|
| 194 |
+
https://huggingface.co/datasets/yangheng/OmniGenBench_Hub/resolve/main/<category>/<filename>
|
|
|
|
|
|
|
| 195 |
```
|
| 196 |
|
| 197 |
+
Examples:
|
| 198 |
+
- Benchmark: `https://huggingface.co/datasets/yangheng/OmniGenBench_Hub/resolve/main/benchmarks/RGB.zip`
|
| 199 |
+
- Dataset: `https://huggingface.co/datasets/yangheng/OmniGenBench_Hub/resolve/main/datasets/deepsea_tfb_prediction.zip`
|
| 200 |
+
- Metadata: `https://huggingface.co/datasets/yangheng/OmniGenBench_Hub/resolve/main/benchmarks/benchmarks_info.json`
|
| 201 |
|
| 202 |
+
### Automated Downloads
|
| 203 |
|
| 204 |
+
The OmniGenBench framework automatically downloads resources from this hub with fallback support:
|
|
|
|
|
|
|
|
|
|
| 205 |
|
| 206 |
+
1. **Primary**: New unified Hub structure (this repository)
|
| 207 |
+
2. **Fallback**: Legacy Space repository (deprecated)
|
| 208 |
+
3. **Cache**: Local cache if network unavailable
|
| 209 |
|
| 210 |
+
```python
|
| 211 |
+
# Framework handles downloads automatically
|
| 212 |
+
from omnigenbench import AutoBench
|
|
|
|
| 213 |
|
| 214 |
+
# This will automatically download RGB.zip from this hub
|
| 215 |
+
bench = AutoBench(benchmark="RGB", config_or_model="yangheng/OmniGenome-186M")
|
| 216 |
+
bench.run()
|
| 217 |
+
```
|
| 218 |
+
|
| 219 |
+
## π Standard Data Structure
|
| 220 |
|
| 221 |
+
### Benchmark Structure
|
| 222 |
+
```
|
| 223 |
+
<benchmark_name>.zip
|
| 224 |
+
βββ <task_1>/
|
| 225 |
+
β βββ train.json
|
| 226 |
+
β βββ test.json
|
| 227 |
+
β βββ config.py
|
| 228 |
+
β βββ metadata.py
|
| 229 |
+
βββ <task_2>/
|
| 230 |
+
β βββ ...
|
| 231 |
+
βββ metadata.py
|
| 232 |
+
```
|
| 233 |
|
| 234 |
+
### Dataset Structure
|
| 235 |
+
```
|
| 236 |
+
<dataset_name>.zip
|
| 237 |
+
βββ data/
|
| 238 |
+
β βββ train.json
|
| 239 |
+
β βββ valid.json
|
| 240 |
+
β βββ test.json
|
| 241 |
+
β βββ metadata.json
|
| 242 |
+
βββ config.py
|
| 243 |
+
βββ README.md
|
| 244 |
+
```
|
| 245 |
+
|
| 246 |
+
## π οΈ Integration with OmniGenBench
|
| 247 |
+
|
| 248 |
+
### Using Benchmarks
|
| 249 |
+
|
| 250 |
+
```bash
|
| 251 |
+
# Download and evaluate on RGB benchmark
|
| 252 |
+
ogb autobench -m yangheng/PlantRNA-FM -b RGB
|
| 253 |
+
|
| 254 |
+
# Download and evaluate on multiple benchmarks
|
| 255 |
+
ogb autobench -m yangheng/OmniGenome-186M -b RGB,GUE,BEACON
|
| 256 |
+
```
|
| 257 |
|
| 258 |
+
### Using Datasets
|
| 259 |
|
|
|
|
| 260 |
```python
|
| 261 |
+
from omnigenbench import OmniDatasetForSequenceClassification, OmniTokenizer
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 262 |
|
| 263 |
+
# Initialize tokenizer
|
| 264 |
tokenizer = OmniTokenizer.from_pretrained("yangheng/OmniGenome-52M")
|
| 265 |
|
| 266 |
+
# Load dataset (automatically downloads from this hub)
|
| 267 |
datasets = OmniDatasetForSequenceClassification.from_hub(
|
| 268 |
dataset_name="deepsea_tfb_prediction",
|
| 269 |
tokenizer=tokenizer,
|
| 270 |
max_length=512
|
| 271 |
)
|
| 272 |
|
| 273 |
+
# Access splits
|
| 274 |
+
train_dataset = datasets['train']
|
| 275 |
+
valid_dataset = datasets['valid']
|
| 276 |
+
test_dataset = datasets['test']
|
| 277 |
+
```
|
|
|
|
| 278 |
|
| 279 |
+
### Direct HuggingFace Hub API
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 280 |
|
| 281 |
+
```python
|
| 282 |
+
from huggingface_hub import hf_hub_download
|
| 283 |
|
| 284 |
+
# Download specific file
|
| 285 |
+
file_path = hf_hub_download(
|
| 286 |
+
repo_id="yangheng/OmniGenBench_Hub",
|
| 287 |
+
filename="benchmarks/RGB.zip",
|
| 288 |
+
repo_type="dataset"
|
| 289 |
+
)
|
| 290 |
|
| 291 |
+
# Download metadata
|
| 292 |
+
metadata_path = hf_hub_download(
|
| 293 |
+
repo_id="yangheng/OmniGenBench_Hub",
|
| 294 |
+
filename="benchmarks/benchmarks_info.json",
|
| 295 |
+
repo_type="dataset"
|
| 296 |
+
)
|
| 297 |
```
|
| 298 |
|
| 299 |
+
## π Key Features
|
|
|
|
|
|
|
| 300 |
|
| 301 |
+
- β
**Unified Repository**: All resources in one centralized location
|
| 302 |
+
- β
**Organized Structure**: Clear subdirectories for benchmarks, datasets, models, pipelines
|
| 303 |
+
- β
**Metadata Rich**: Comprehensive JSON metadata for programmatic access
|
| 304 |
+
- β
**Auto-Download**: Framework automatically downloads from this hub
|
| 305 |
+
- β
**Backward Compatible**: Fallback support for legacy repositories
|
| 306 |
+
- β
**Standardized Formats**: Consistent data structures across all resources
|
| 307 |
+
- β
**Research-Ready**: Validated and tested with OmniGenBench framework
|
| 308 |
|
| 309 |
+
## οΏ½ Documentation
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 310 |
|
| 311 |
+
For comprehensive guides and tutorials, please visit:
|
| 312 |
+
- **Framework Documentation**: [OmniGenBench Docs](https://github.com/yangheng95/OmniGenBench)
|
| 313 |
+
- **Getting Started Guide**: [GETTING_STARTED.md](https://github.com/yangheng95/OmniGenBench/blob/main/docs/GETTING_STARTED.md)
|
| 314 |
+
- **API Reference**: [API Documentation](https://github.com/yangheng95/OmniGenBench/tree/main/docs)
|
| 315 |
+
- **Example Notebooks**: [examples/](https://github.com/yangheng95/OmniGenBench/tree/main/examples)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 316 |
|
| 317 |
## π€ Contributing
|
| 318 |
|
| 319 |
+
We welcome contributions to expand our resource collection! To contribute:
|
| 320 |
|
| 321 |
+
1. Format your resource according to our standards
|
| 322 |
+
2. Include comprehensive metadata and documentation
|
| 323 |
+
3. Test with OmniGenBench framework
|
| 324 |
+
4. Submit a pull request to [OmniGenBench repository](https://github.com/yangheng95/OmniGenBench)
|
| 325 |
|
| 326 |
+
## π License
|
| 327 |
|
| 328 |
+
All resources in OmniGenBench Hub are released under the **Apache 2.0 License**, ensuring:
|
| 329 |
+
- Free use for research and commercial applications
|
| 330 |
+
- Modification and redistribution rights
|
| 331 |
+
- Patent protection for users
|
| 332 |
+
- Clear attribution requirements
|
| 333 |
|
| 334 |
+
## π Support
|
| 335 |
|
| 336 |
+
- **GitHub Issues**: [Report bugs or request features](https://github.com/yangheng95/OmniGenBench/issues)
|
| 337 |
+
- **GitHub Discussions**: [Ask questions and share ideas](https://github.com/yangheng95/OmniGenBench/discussions)
|
| 338 |
+
- **Email**: yangheng@exeter.ac.uk
|
|
|
|
| 339 |
|
| 340 |
+
## οΏ½ Citation
|
| 341 |
|
| 342 |
+
If you use resources from OmniGenBench Hub in your research, please cite:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 343 |
|
| 344 |
+
```bibtex
|
| 345 |
+
@software{omnigenbench2025,
|
| 346 |
+
author = {Yang, Heng},
|
| 347 |
+
title = {OmniGenBench: A Unified Framework for Genomic Foundation Models},
|
| 348 |
+
year = {2025},
|
| 349 |
+
url = {https://github.com/yangheng95/OmniGenBench}
|
| 350 |
+
}
|
| 351 |
+
```
|
| 352 |
+
|
| 353 |
+
## π Statistics
|
| 354 |
|
| 355 |
+
| Category | Count | Description |
|
| 356 |
+
|----------|-------|-------------|
|
| 357 |
+
| **Benchmarks** | 5 | Comprehensive evaluation suites (RGB, GUE, BEACON, GB, PGB) |
|
| 358 |
+
| **Datasets** | 5 | Curated individual datasets for specific tasks |
|
| 359 |
+
| **Models** | Coming Soon | Pre-trained genomic foundation models |
|
| 360 |
+
| **Pipelines** | Coming Soon | Ready-to-use analysis pipelines |
|
| 361 |
+
| **Total Tasks** | 67+ | Combined tasks across all benchmarks |
|
| 362 |
|
| 363 |
+
## πΊοΈ Roadmap
|
|
|
|
|
|
|
|
|
|
|
|
|
| 364 |
|
| 365 |
+
### Current Release (v1.0)
|
| 366 |
+
- β
7 benchmark suites with 69+ tasks
|
| 367 |
+
- β
3 curated datasets
|
| 368 |
+
- β
Organized folder structure
|
| 369 |
+
- β
Comprehensive metadata files
|
| 370 |
+
- β
Automated download integration
|
| 371 |
|
| 372 |
+
### Future Releases
|
| 373 |
+
- π¦ Pre-trained model hosting
|
| 374 |
+
- οΏ½ Analysis pipeline templates
|
| 375 |
+
- π Additional benchmark suites
|
| 376 |
+
- π More individual datasets
|
| 377 |
+
- π Continuous updates and improvements
|
|
|
|
| 378 |
|
| 379 |
---
|
| 380 |
|
| 381 |
+
**𧬠OmniGenBench Hub - Unified Infrastructure for Genomic Foundation Model Research**
|
| 382 |
|
| 383 |
+
*Maintained by YANG, HENG | [Homepage](https://yangheng95.github.io) | [GitHub](https://github.com/yangheng95)*
|
STRUCTURE.md
ADDED
|
@@ -0,0 +1,170 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# OmniGenBench Hub Directory Structure
|
| 2 |
+
|
| 3 |
+
This document describes the organization of resources in the OmniGenBench Hub repository.
|
| 4 |
+
|
| 5 |
+
## Directory Layout
|
| 6 |
+
|
| 7 |
+
```
|
| 8 |
+
OmniGenBench_Hub/
|
| 9 |
+
βββ benchmarks/ # Benchmark suites for model evaluation
|
| 10 |
+
β βββ benchmarks_info.json # Metadata for all benchmarks
|
| 11 |
+
β βββ RGB.zip # RNA Genome Benchmark
|
| 12 |
+
β βββ BEACON.zip # RNA Computational Methods Benchmark
|
| 13 |
+
β βββ GUE.zip # Genomic Understanding Evaluation
|
| 14 |
+
β βββ GB.zip # Classic Genomic Benchmark
|
| 15 |
+
β βββ PGB.zip # Plant Genomics Benchmark
|
| 16 |
+
β
|
| 17 |
+
βββ datasets/ # Individual curated datasets
|
| 18 |
+
β βββ datasets_info.json # Metadata for all datasets
|
| 19 |
+
β βββ deepsea_tfb_prediction.zip
|
| 20 |
+
β βββ translation_efficiency_prediction.zip
|
| 21 |
+
β βββ variant_effect_prediction.zip
|
| 22 |
+
β βββ RNA-SSP-Archive2.zip # RNA Secondary Structure Prediction
|
| 23 |
+
β βββ RNA-mRNA.zip # RNA mRNA Classification
|
| 24 |
+
β
|
| 25 |
+
βββ models/ # Pre-trained models (future)
|
| 26 |
+
β βββ models_info.json # Metadata for models
|
| 27 |
+
β
|
| 28 |
+
βββ pipelines/ # Analysis pipelines (future)
|
| 29 |
+
β βββ pipelines_info.json # Metadata for pipelines
|
| 30 |
+
β
|
| 31 |
+
βββ README.md # Main documentation
|
| 32 |
+
|
| 33 |
+
```
|
| 34 |
+
|
| 35 |
+
## Resource Categories
|
| 36 |
+
|
| 37 |
+
### Benchmarks (benchmarks/)
|
| 38 |
+
Comprehensive evaluation suites containing multiple tasks:
|
| 39 |
+
- **RGB**: 10 RNA understanding tasks
|
| 40 |
+
- **BEACON**: 13 RNA computational tasks
|
| 41 |
+
- **GUE**: 28 genomic understanding tasks
|
| 42 |
+
- **GB**: 9 classic DNA classification tasks
|
| 43 |
+
- **PGB**: 7 plant genomic tasks
|
| 44 |
+
|
| 45 |
+
### Datasets (datasets/)
|
| 46 |
+
Individual curated datasets for specific tasks:
|
| 47 |
+
- **deepsea_tfb_prediction**: Transcription factor binding prediction (784 MB)
|
| 48 |
+
- **translation_efficiency_prediction**: mRNA translation efficiency (848 KB)
|
| 49 |
+
- **variant_effect_prediction**: Genomic variant effects (1.6 GB)
|
| 50 |
+
- **RNA-SSP-Archive2**: RNA secondary structure prediction (49 KB)
|
| 51 |
+
- **RNA-mRNA**: RNA mRNA classification (3.0 MB)
|
| 52 |
+
|
| 53 |
+
### Models (models/)
|
| 54 |
+
Pre-trained genomic foundation models (coming soon).
|
| 55 |
+
Current models are hosted on HuggingFace Hub:
|
| 56 |
+
- yangheng/OmniGenome-186M
|
| 57 |
+
- yangheng/OmniGenome-52M
|
| 58 |
+
- yangheng/PlantRNA-FM
|
| 59 |
+
- And 30+ more...
|
| 60 |
+
|
| 61 |
+
### Pipelines (pipelines/)
|
| 62 |
+
Ready-to-use analysis pipelines (coming soon).
|
| 63 |
+
|
| 64 |
+
## Download URLs
|
| 65 |
+
|
| 66 |
+
All resources follow this URL pattern:
|
| 67 |
+
```
|
| 68 |
+
https://huggingface.co/datasets/yangheng/OmniGenBench_Hub/resolve/main/<category>/<filename>
|
| 69 |
+
```
|
| 70 |
+
|
| 71 |
+
Examples:
|
| 72 |
+
- Benchmark: `https://huggingface.co/datasets/yangheng/OmniGenBench_Hub/resolve/main/benchmarks/RGB.zip`
|
| 73 |
+
- Dataset: `https://huggingface.co/datasets/yangheng/OmniGenBench_Hub/resolve/main/datasets/deepsea_tfb_prediction.zip`
|
| 74 |
+
- Metadata: `https://huggingface.co/datasets/yangheng/OmniGenBench_Hub/resolve/main/benchmarks/benchmarks_info.json`
|
| 75 |
+
|
| 76 |
+
## Metadata Files
|
| 77 |
+
|
| 78 |
+
Each category contains a `*_info.json` file with comprehensive metadata:
|
| 79 |
+
|
| 80 |
+
### benchmarks_info.json
|
| 81 |
+
```json
|
| 82 |
+
{
|
| 83 |
+
"RGB": {
|
| 84 |
+
"filename": "RGB.zip",
|
| 85 |
+
"genome": "RNA",
|
| 86 |
+
"species": "multi-species",
|
| 87 |
+
"task_number": 10,
|
| 88 |
+
"task_type": "sequence_classification, token_classification",
|
| 89 |
+
"description": "RNA Genome Benchmark",
|
| 90 |
+
"url": "https://huggingface.co/datasets/yangheng/OmniGenBench_Hub",
|
| 91 |
+
"author": "YANG, HENG",
|
| 92 |
+
"license": "Apache-2.0"
|
| 93 |
+
}
|
| 94 |
+
}
|
| 95 |
+
```
|
| 96 |
+
|
| 97 |
+
### datasets_info.json
|
| 98 |
+
```json
|
| 99 |
+
{
|
| 100 |
+
"deepsea_tfb_prediction": {
|
| 101 |
+
"filename": "deepsea_tfb_prediction.zip",
|
| 102 |
+
"genome": "DNA",
|
| 103 |
+
"species": "human",
|
| 104 |
+
"task_type": "sequence_classification",
|
| 105 |
+
"description": "DeepSEA TFB prediction",
|
| 106 |
+
"url": "https://huggingface.co/datasets/yangheng/OmniGenBench_Hub",
|
| 107 |
+
"author": "YANG, HENG",
|
| 108 |
+
"license": "Apache-2.0"
|
| 109 |
+
}
|
| 110 |
+
}
|
| 111 |
+
```
|
| 112 |
+
|
| 113 |
+
## Usage with OmniGenBench
|
| 114 |
+
|
| 115 |
+
The OmniGenBench framework automatically downloads from this organized structure:
|
| 116 |
+
|
| 117 |
+
```bash
|
| 118 |
+
# Benchmarks
|
| 119 |
+
ogb autobench -m yangheng/PlantRNA-FM -b RGB
|
| 120 |
+
|
| 121 |
+
# Downloads from: benchmarks/RGB.zip
|
| 122 |
+
```
|
| 123 |
+
|
| 124 |
+
```python
|
| 125 |
+
# Datasets
|
| 126 |
+
from omnigenbench import OmniDatasetForSequenceClassification, OmniTokenizer
|
| 127 |
+
|
| 128 |
+
tokenizer = OmniTokenizer.from_pretrained("yangheng/OmniGenome-52M")
|
| 129 |
+
datasets = OmniDatasetForSequenceClassification.from_hub(
|
| 130 |
+
dataset_name="deepsea_tfb_prediction",
|
| 131 |
+
tokenizer=tokenizer
|
| 132 |
+
)
|
| 133 |
+
# Downloads from: datasets/deepsea_tfb_prediction.zip
|
| 134 |
+
```
|
| 135 |
+
|
| 136 |
+
## File Sizes
|
| 137 |
+
|
| 138 |
+
### Benchmarks
|
| 139 |
+
- RGB.zip: 34 MB
|
| 140 |
+
- BEACON.zip: 51 MB
|
| 141 |
+
- GUE.zip: 80 MB
|
| 142 |
+
- GB.zip: 85 MB
|
| 143 |
+
- PGB.zip: 122 MB
|
| 144 |
+
- **Total**: ~372 MB
|
| 145 |
+
|
| 146 |
+
### Datasets
|
| 147 |
+
- deepsea_tfb_prediction.zip: 784 MB
|
| 148 |
+
- translation_efficiency_prediction.zip: 848 KB
|
| 149 |
+
- variant_effect_prediction.zip: 1.6 GB
|
| 150 |
+
- RNA-SSP-Archive2.zip: 49 KB
|
| 151 |
+
- RNA-mRNA.zip: 3.0 MB
|
| 152 |
+
- **Total**: ~2.4 GB
|
| 153 |
+
|
| 154 |
+
### Grand Total
|
| 155 |
+
~2.8 GB of curated genomic data for AI research
|
| 156 |
+
|
| 157 |
+
## Migration Notes
|
| 158 |
+
|
| 159 |
+
This repository replaces the legacy Space-based storage:
|
| 160 |
+
- **Old**: `https://huggingface.co/spaces/yangheng/OmniGenomeLeaderboard/`
|
| 161 |
+
- **New**: `https://huggingface.co/datasets/yangheng/OmniGenBench_Hub/`
|
| 162 |
+
|
| 163 |
+
The OmniGenBench framework (v0.3.29+) automatically uses the new structure with fallback to legacy.
|
| 164 |
+
|
| 165 |
+
## Maintenance
|
| 166 |
+
|
| 167 |
+
**Last Updated**: November 8, 2025
|
| 168 |
+
**Maintainer**: YANG, HENG
|
| 169 |
+
**Contact**: yangheng@exeter.ac.uk
|
| 170 |
+
**License**: Apache 2.0
|
BEACON.zip β benchmarks/BEACON.zip
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e3b8bce0a693cf9618c36d94a3864c1471d98ce33bae5b0fbf7781e6bb2d6b5f
|
| 3 |
+
size 58926037
|
GB.zip β benchmarks/GB.zip
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7340a31fd9e53a063f7ab31b7bda72c3ebf057de85103e304d0fb109e5cf2710
|
| 3 |
+
size 88522741
|
GUE.zip β benchmarks/GUE.zip
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:71c4b05d92320f3964c63a76e58332dc26f2517b1a886e48180d0586d9c72327
|
| 3 |
+
size 75866865
|
PGB.zip β benchmarks/PGB.zip
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:53aff3fb85b5598045cd4e897999b253ab50f39f8074c55a2e3c7db3508948f7
|
| 3 |
+
size 127678083
|
RGB.zip β benchmarks/RGB.zip
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a7cc52cf4660fc383dc6de89fe1a5365027a1206eb3d361248472d1b4a3a860b
|
| 3 |
+
size 35388889
|
benchmarks/benchmarks_info.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"RGB": {
|
| 3 |
+
"filename": "RGB.zip",
|
| 4 |
+
"genome": "RNA",
|
| 5 |
+
"species": "multi-species",
|
| 6 |
+
"task_number": 10,
|
| 7 |
+
"task_type": "sequence_classification, token_classification",
|
| 8 |
+
"description": "RNA Genome Benchmark - Comprehensive evaluation suite for RNA sequence understanding",
|
| 9 |
+
"url": "https://huggingface.co/datasets/yangheng/OmniGenBench_Hub",
|
| 10 |
+
"author": "YANG, HENG",
|
| 11 |
+
"license": "Apache-2.0"
|
| 12 |
+
},
|
| 13 |
+
"BEACON": {
|
| 14 |
+
"filename": "BEACON.zip",
|
| 15 |
+
"genome": "RNA",
|
| 16 |
+
"species": "multi-species",
|
| 17 |
+
"task_number": 13,
|
| 18 |
+
"task_type": "sequence_classification, regression",
|
| 19 |
+
"description": "Benchmarking Environment for RNA Computational Methods",
|
| 20 |
+
"url": "https://huggingface.co/datasets/yangheng/OmniGenBench_Hub",
|
| 21 |
+
"author": "YANG, HENG",
|
| 22 |
+
"license": "Apache-2.0"
|
| 23 |
+
},
|
| 24 |
+
"GUE": {
|
| 25 |
+
"filename": "GUE.zip",
|
| 26 |
+
"genome": "DNA",
|
| 27 |
+
"species": "multi-species",
|
| 28 |
+
"task_number": 28,
|
| 29 |
+
"task_type": "sequence_classification",
|
| 30 |
+
"description": "Genomic Understanding Evaluation - DNA sequence classification benchmark",
|
| 31 |
+
"url": "https://huggingface.co/datasets/yangheng/OmniGenBench_Hub",
|
| 32 |
+
"author": "YANG, HENG",
|
| 33 |
+
"license": "Apache-2.0"
|
| 34 |
+
},
|
| 35 |
+
"GB": {
|
| 36 |
+
"filename": "GB.zip",
|
| 37 |
+
"genome": "DNA",
|
| 38 |
+
"species": "multi-species",
|
| 39 |
+
"task_number": 9,
|
| 40 |
+
"task_type": "sequence_classification",
|
| 41 |
+
"description": "Genomic Benchmark - Classic DNA classification tasks",
|
| 42 |
+
"url": "https://huggingface.co/datasets/yangheng/OmniGenBench_Hub",
|
| 43 |
+
"author": "YANG, HENG",
|
| 44 |
+
"license": "Apache-2.0"
|
| 45 |
+
},
|
| 46 |
+
"PGB": {
|
| 47 |
+
"filename": "PGB.zip",
|
| 48 |
+
"genome": "DNA",
|
| 49 |
+
"species": "plant",
|
| 50 |
+
"task_number": 7,
|
| 51 |
+
"task_type": "sequence_classification, regression",
|
| 52 |
+
"description": "Plant Genomics Benchmark - Plant-specific genomic understanding tasks",
|
| 53 |
+
"url": "https://huggingface.co/datasets/yangheng/OmniGenBench_Hub",
|
| 54 |
+
"author": "YANG, HENG",
|
| 55 |
+
"license": "Apache-2.0"
|
| 56 |
+
}
|
| 57 |
+
}
|
RNA-SSP-Archive2.zip β datasets/RNA-SSP-Archive2.zip
RENAMED
|
File without changes
|
RNA-mRNA.zip β datasets/RNA-mRNA.zip
RENAMED
|
File without changes
|
datasets/datasets_info.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"deepsea_tfb_prediction": {
|
| 3 |
+
"filename": "deepsea_tfb_prediction.zip",
|
| 4 |
+
"genome": "DNA",
|
| 5 |
+
"species": "human",
|
| 6 |
+
"task_type": "sequence_classification",
|
| 7 |
+
"description": "DeepSEA Transcription Factor Binding prediction dataset",
|
| 8 |
+
"url": "https://huggingface.co/datasets/yangheng/OmniGenBench_Hub",
|
| 9 |
+
"author": "YANG, HENG",
|
| 10 |
+
"license": "Apache-2.0"
|
| 11 |
+
},
|
| 12 |
+
"translation_efficiency_prediction": {
|
| 13 |
+
"filename": "translation_efficiency_prediction.zip",
|
| 14 |
+
"genome": "RNA",
|
| 15 |
+
"species": "multi-species",
|
| 16 |
+
"task_type": "regression",
|
| 17 |
+
"description": "Translation efficiency prediction for mRNA sequences",
|
| 18 |
+
"url": "https://huggingface.co/datasets/yangheng/OmniGenBench_Hub",
|
| 19 |
+
"author": "YANG, HENG",
|
| 20 |
+
"license": "Apache-2.0"
|
| 21 |
+
},
|
| 22 |
+
"variant_effect_prediction": {
|
| 23 |
+
"filename": "variant_effect_prediction.zip",
|
| 24 |
+
"genome": "DNA",
|
| 25 |
+
"species": "human",
|
| 26 |
+
"task_type": "sequence_classification",
|
| 27 |
+
"description": "Variant effect prediction for genomic variants",
|
| 28 |
+
"url": "https://huggingface.co/datasets/yangheng/OmniGenBench_Hub",
|
| 29 |
+
"author": "YANG, HENG",
|
| 30 |
+
"license": "Apache-2.0"
|
| 31 |
+
},
|
| 32 |
+
"RNA-SSP-Archive2": {
|
| 33 |
+
"filename": "RNA-SSP-Archive2.zip",
|
| 34 |
+
"genome": "RNA",
|
| 35 |
+
"species": "multi-species",
|
| 36 |
+
"task_type": "token_classification",
|
| 37 |
+
"description": "RNA Secondary Structure Prediction - Archive 2 dataset",
|
| 38 |
+
"url": "https://huggingface.co/datasets/yangheng/OmniGenBench_Hub",
|
| 39 |
+
"author": "YANG, HENG",
|
| 40 |
+
"license": "Apache-2.0"
|
| 41 |
+
},
|
| 42 |
+
"RNA-mRNA": {
|
| 43 |
+
"filename": "RNA-mRNA.zip",
|
| 44 |
+
"genome": "RNA",
|
| 45 |
+
"species": "multi-species",
|
| 46 |
+
"task_type": "sequence_classification",
|
| 47 |
+
"description": "RNA mRNA classification dataset",
|
| 48 |
+
"url": "https://huggingface.co/datasets/yangheng/OmniGenBench_Hub",
|
| 49 |
+
"author": "YANG, HENG",
|
| 50 |
+
"license": "Apache-2.0"
|
| 51 |
+
}
|
| 52 |
+
}
|
deepsea_tfb_prediction.zip β datasets/deepsea_tfb_prediction.zip
RENAMED
|
File without changes
|
translation_efficiency_prediction.zip β datasets/translation_efficiency_prediction.zip
RENAMED
|
File without changes
|
variant_effect_prediction.zip β datasets/variant_effect_prediction.zip
RENAMED
|
File without changes
|
models/models_info.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"models": {},
|
| 3 |
+
"note": "Model files will be added in future releases. Currently, pre-trained models are hosted directly on HuggingFace Hub under yangheng/ namespace (e.g., yangheng/OmniGenome-186M, yangheng/PlantRNA-FM)."
|
| 4 |
+
}
|
pipelines/pipelines_info.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"pipelines": {},
|
| 3 |
+
"note": "Pipeline files will be added in future releases."
|
| 4 |
+
}
|