Datasets:
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
task_categories:
|
3 |
+
- zero-shot-classification
|
4 |
+
tags:
|
5 |
+
- biology
|
6 |
+
- genomics
|
7 |
+
- long-context
|
8 |
+
---
|
9 |
+
|
10 |
+
## Abouts
|
11 |
+
The human reference genome data is sourced from the [NCBI website](https://www.ncbi.nlm.nih.gov/datasets/genome/GCF_000001405.40/).
|
12 |
+
We have applied minor formatting adjustments to the dataset to facilitate streamlined data analysis.
|
13 |
+
|
14 |
+
## How to use
|
15 |
+
|
16 |
+
```python
|
17 |
+
from datasets import load_dataset
|
18 |
+
|
19 |
+
datasets = load_dataset("GenerTeam/hg38")
|
20 |
+
```
|