yangheng commited on
Commit
8f0b3c6
Β·
1 Parent(s): 4d066cd
README.md CHANGED
@@ -2,26 +2,62 @@
2
  license: apache-2.0
3
  ---
4
 
5
- # 🧬 OmniGenBench Hub: Curated Genomic Datasets for AI Research
6
 
7
  [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
8
- [![Datasets](https://img.shields.io/badge/Datasets-3-green.svg)](#available-datasets)
 
9
  [![Framework](https://img.shields.io/badge/Framework-OmniGenBench-orange.svg)](https://github.com/yangheng95/OmniGenBench)
10
 
11
- Welcome to **OmniGenBench Hub** - your one-stop repository for high-quality, curated genomic datasets designed specifically for AI and machine learning research in computational biology. Our hub provides seamlessly integrated datasets that work directly with the OmniGenBench framework, enabling researchers to focus on model development rather than data preprocessing.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
 
13
  ## 🎯 What is OmniGenBench Hub?
14
 
15
- OmniGenBench Hub is a centralized collection of genomic datasets that have been:
16
- - βœ… **Carefully curated** and quality-controlled for research use
17
- - βœ… **Standardized** for consistent formatting and structure
18
- - βœ… **Optimized** for seamless integration with OmniGenBench framework
19
- - βœ… **Validated** through extensive testing and benchmarking
20
- - βœ… **Documented** with comprehensive metadata and usage examples
 
 
21
 
22
  ## πŸš€ Quick Start
23
 
24
- Getting started with our datasets is incredibly simple:
 
 
 
 
 
 
 
 
 
 
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 any dataset from the hub
33
  datasets = OmniDatasetForSequenceClassification.from_hub(
34
  dataset_name="deepsea_tfb_prediction",
35
  tokenizer=tokenizer,
36
  max_length=512
37
  )
38
 
39
- # That's it! Your datasets are ready for training and evaluation
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
- ## πŸ“Š Available Datasets
47
 
48
- Our hub currently hosts **3 high-quality datasets** spanning multiple genomic AI tasks. Each dataset is carefully organized with data files and configuration scripts.
 
49
 
50
- ### πŸ“‹ Dataset Categories and Overview
 
 
 
 
 
51
 
52
- | Category | Dataset Name | Task Type | Description | Size |
53
- |----------|-------------|-----------|-------------|------|
54
- | **🧬 Gene Regulation** | [`deepsea_tfb_prediction`](https://huggingface.co/datasets/yangheng/OmniGenBench_Hub/resolve/main/deepsea_tfb_prediction.zip) | Classification | Transcription Factor Binding Site Prediction | 822 MB |
55
- | **πŸ”¬ Protein Synthesis** | [`translation_efficiency_prediction`](https://huggingface.co/datasets/yangheng/OmniGenBench_Hub/resolve/main/translation_efficiency_prediction.zip) | Regression | mRNA Translation Efficiency Prediction | 868 KB |
56
- | **βš—οΈ Functional Genomics** | [`variant_effective_prediction`](https://huggingface.co/datasets/yangheng/OmniGenBench_Hub/resolve/main/variant_effective_prediction.zip) | Multi-class | Variant Effect Prediction on Protein Function | 1.64 GB |
 
 
57
 
58
- ### πŸ“– Detailed Dataset Descriptions
59
 
60
- #### 1. 🧬 DeepSEA TFB Prediction (`deepsea_tfb_prediction`)
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
- tokenizer = OmniTokenizer.from_pretrained("yangheng/OmniGenome-52M")
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
- #### 2. πŸ”¬ Translation Efficiency Prediction (`translation_efficiency_prediction`)
84
- - **Research Area**: Protein Synthesis and mRNA Biology
85
- - **Task**: Regression for predicting ribosome loading efficiency
86
- - **Applications**:
87
- - mRNA therapeutic design
88
- - Protein production optimization
89
- - Synthetic biology applications
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
- tokenizer = OmniTokenizer.from_pretrained("yangheng/OmniGenome-52M")
97
- translation_datasets = OmniDatasetForSequenceRegression.from_hub(
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
- #### 3. βš—οΈ Variant Effect Prediction (`variant_effective_prediction`)
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
- tokenizer = OmniTokenizer.from_pretrained("yangheng/OmniGenome-52M")
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
- ## πŸ“ Dataset Structure
 
 
 
 
 
 
130
 
131
- Each dataset in our hub follows a standardized structure for consistency and ease of use:
 
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
- ## πŸ› οΈ Integration with OmniGenBench
 
 
 
 
145
 
146
- Our datasets are designed to work seamlessly with the OmniGenBench ecosystem:
147
 
148
- ### For Classification Tasks
149
- ```python
150
- from omnigenbench import OmniDatasetForSequenceClassification, OmniTokenizer
151
 
152
- # Initialize tokenizer
153
- tokenizer = OmniTokenizer.from_pretrained("yangheng/OmniGenome-52M")
154
 
155
- # Load classification datasets
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
- ### For Regression Tasks
169
- ```python
170
- from omnigenbench import OmniDatasetForSequenceRegression, OmniTokenizer
171
 
172
- # Initialize tokenizer
173
- tokenizer = OmniTokenizer.from_pretrained("yangheng/OmniGenome-52M")
174
 
175
- # Load regression datasets
176
- datasets = OmniDatasetForSequenceRegression.from_hub(
177
- dataset_name="translation_efficiency_prediction",
178
- tokenizer=tokenizer,
179
- max_length=256
180
- )
181
 
182
- # Access individual splits
183
- train_dataset = datasets['train']
184
- valid_dataset = datasets['valid']
185
- test_dataset = datasets['test']
 
 
 
 
 
 
 
 
 
 
 
186
  ```
187
 
188
- ### For Token-level Tasks
189
- ```python
190
- from omnigenbench import OmniDatasetForTokenClassification, OmniTokenizer
 
 
 
 
 
 
 
 
 
 
 
 
191
 
192
- # Initialize tokenizer
193
- tokenizer = OmniTokenizer.from_pretrained("yangheng/OmniGenome-52M")
194
 
195
- # Load token-level datasets
196
- datasets = OmniDatasetForTokenClassification.from_hub(
197
- dataset_name="variant_effective_prediction",
198
- tokenizer=tokenizer,
199
- max_length=1024
200
- )
201
 
202
- # Access individual splits
203
- train_dataset = datasets['train']
204
- valid_dataset = datasets['valid']
205
- test_dataset = datasets['test']
206
  ```
207
 
208
- ## πŸŽ“ Educational Resources
 
 
 
209
 
210
- Each dataset comes with comprehensive educational materials:
211
 
212
- - **πŸ“š Tutorial Notebooks**: Step-by-step guides for using each dataset
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
- ## 🌟 Key Features
 
 
218
 
219
- ### ✨ **Plug-and-Play Integration**
220
- - One-line dataset loading with automatic preprocessing
221
- - Compatible with all major deep learning frameworks
222
- - Seamless integration with Hugging Face ecosystem
223
 
224
- ### πŸ”§ **Standardized Format**
225
- - Consistent data structure across all datasets
226
- - Unified API for different task types
227
- - Automatic train/validation/test splitting
 
 
228
 
229
- ### πŸ“ˆ **Research-Ready**
230
- - High-quality, peer-reviewed datasets
231
- - Comprehensive evaluation metrics
232
- - Reproducible benchmark results
 
 
 
 
 
 
 
 
233
 
234
- ### πŸš€ **Performance Optimized**
235
- - Efficient data loading and caching
236
- - Memory-optimized for large-scale training
237
- - Multi-processing support for faster iteration
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
238
 
239
- ## πŸ“‹ Usage Guidelines
240
 
241
- ### Basic Usage Pattern
242
  ```python
243
- # 1. Import the framework
244
- from omnigenbench import (
245
- OmniDatasetForSequenceClassification,
246
- OmniTokenizer,
247
- OmniModelForSequenceClassification,
248
- Trainer
249
- )
250
 
251
- # 2. Initialize tokenizer
252
  tokenizer = OmniTokenizer.from_pretrained("yangheng/OmniGenome-52M")
253
 
254
- # 3. Load your chosen dataset
255
  datasets = OmniDatasetForSequenceClassification.from_hub(
256
  dataset_name="deepsea_tfb_prediction",
257
  tokenizer=tokenizer,
258
  max_length=512
259
  )
260
 
261
- # 4. Initialize model
262
- model = OmniModelForSequenceClassification(
263
- model_name_or_path="yangheng/OmniGenome-52M",
264
- tokenizer=tokenizer,
265
- num_labels=2 # Adjust based on your task
266
- )
267
 
268
- # 5. Create trainer and start training
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
- # 6. Train the model
279
- trainer.train()
280
 
281
- # 7. Evaluate on test set
282
- test_results = trainer.evaluate(datasets['test'])
283
- print(f"Test results: {test_results}")
 
 
 
284
 
285
- # 8. Inference on new sequences
286
- predictions = model.inference(["ATCGATCGATCG", "GCTAGCTAGCTA"])
287
- print(f"Predictions: {predictions}")
 
 
 
288
  ```
289
 
290
- ### Advanced Configuration
291
- ```python
292
- from omnigenbench import OmniDatasetForSequenceRegression, OmniTokenizer
293
 
294
- # Initialize tokenizer
295
- tokenizer = OmniTokenizer.from_pretrained("yangheng/OmniGenome-52M")
 
 
 
 
 
296
 
297
- # Custom configuration for specific needs
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
- # Create DataLoader with custom settings
306
- train_loader = datasets['train'].get_dataloader(
307
- batch_size=32,
308
- shuffle=True,
309
- num_workers=4,
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 dataset collection! If you have a high-quality genomic dataset that would benefit the research community:
324
 
325
- 1. **Format your dataset** according to our standards
326
- 2. **Include comprehensive documentation** and metadata
327
- 3. **Provide benchmark results** using standard evaluation metrics
328
- 4. **Submit a pull request** with your dataset and documentation
329
 
330
- ## πŸ“„ Licensing
331
 
332
- All datasets in OmniGenBench Hub are released under the **Apache 2.0 License**, ensuring:
333
- - βœ… Free use for research and commercial applications
334
- - βœ… Modification and redistribution rights
335
- - βœ… Patent protection for users
336
- - βœ… Clear attribution requirements
337
 
338
- ## πŸ“ž Support and Contact
339
 
340
- - **Documentation**: [OmniGenBench Docs](https://omnigenbench.readthedocs.io/)
341
- - **Issues**: [GitHub Issues](https://github.com/yangheng95/OmniGenBench/issues)
342
- - **Discussions**: [GitHub Discussions](https://github.com/yangheng95/OmniGenBench/discussions)
343
- - **Email**: Contact the maintainer at [yangheng@exeter.ac.uk]
344
 
345
- ## 🎯 Roadmap
346
 
347
- ### Coming Soon
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
- ### Future Releases
354
- - **10+ new datasets** covering diverse genomic tasks
355
- - **Automated benchmarking** pipeline for consistent evaluation
356
- - **Multi-modal datasets** combining sequence, structure, and functional data
357
- - **Real-time dataset updates** and version control
 
 
 
 
 
358
 
359
- ## πŸ† Acknowledgments
 
 
 
 
 
 
360
 
361
- OmniGenBench Hub is built on the foundation of outstanding research from the genomics and AI communities. We thank:
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
- ## πŸ“Š Dataset Statistics Summary
 
 
 
 
 
368
 
369
- | Metric | Total |
370
- |--------|--------|
371
- | **Total Datasets** | 3 |
372
- | **Total Size** | 2.46 GB |
373
- | **Task Types** | Classification, Regression, Multi-class |
374
- | **Sequence Types** | DNA, RNA, Protein |
375
- | **Research Areas** | Gene Regulation, Protein Synthesis, Functional Genomics |
376
 
377
  ---
378
 
379
- **🧬 Start your genomic AI journey today with OmniGenBench Hub!**
380
 
381
- *Empowering researchers worldwide with high-quality genomic datasets for breakthrough discoveries in computational biology.*
 
2
  license: apache-2.0
3
  ---
4
 
5
+ # 🧬 OmniGenBench Hub: Unified Repository for Genomic Foundation Model Resources
6
 
7
  [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
8
+ [![Benchmarks](https://img.shields.io/badge/Benchmarks-5-blue.svg)](#benchmarks)
9
+ [![Datasets](https://img.shields.io/badge/Datasets-5-green.svg)](#datasets)
10
  [![Framework](https://img.shields.io/badge/Framework-OmniGenBench-orange.svg)](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:82d1692328f1c8a98ad83f4bc4e653ce216016b1e6c54dc463489dedb9d0309f
3
- size 52857177
 
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:083e9003a9143d5fe73f999942588595c9fdb95eb7878ba70875ebb27c111b92
3
- size 88580305
 
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:66bb1f573e2329a0d0dc9240269f5386ed46cccfafd0c3fbcb4be2b5a38191b9
3
- size 83819968
 
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:3fc6cbb2f414e73913da9918096706be4c14b6349ec5be15458365a6b29424b6
3
- size 127772856
 
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:1c2afd894cc2823599d527375f99e02a732ae941155c4ba58aa29b370bf17d6c
3
- size 35101774
 
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
+ }