Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,29 +1,19 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
dtype: string
|
| 6 |
-
- name: tgt
|
| 7 |
-
dtype: string
|
| 8 |
-
splits:
|
| 9 |
-
- name: train
|
| 10 |
-
num_bytes: 51464
|
| 11 |
-
num_examples: 240
|
| 12 |
-
- name: validation
|
| 13 |
-
num_bytes: 12866
|
| 14 |
-
num_examples: 60
|
| 15 |
-
- name: test
|
| 16 |
-
num_bytes: 12866
|
| 17 |
-
num_examples: 60
|
| 18 |
-
download_size: 53879
|
| 19 |
-
dataset_size: 77196
|
| 20 |
-
configs:
|
| 21 |
-
- config_name: default
|
| 22 |
-
data_files:
|
| 23 |
-
- split: train
|
| 24 |
-
path: data/train-*
|
| 25 |
-
- split: validation
|
| 26 |
-
path: data/validation-*
|
| 27 |
-
- split: test
|
| 28 |
-
path: data/test-*
|
| 29 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: mit
|
| 3 |
+
language:
|
| 4 |
+
- en
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
---
|
| 6 |
+
|
| 7 |
+
# DNA → Amino Acid Translation Dataset
|
| 8 |
+
|
| 9 |
+
### Description
|
| 10 |
+
This dataset contains randomly generated DNA sequences (A, C, G, T)
|
| 11 |
+
and their amino-acid translations using the standard genetic code.
|
| 12 |
+
It is suitable for Seq2Seq learning and translation model training.
|
| 13 |
+
|
| 14 |
+
### Dataset Structure
|
| 15 |
+
- **Fields**
|
| 16 |
+
- `src`: input DNA sequence (string)
|
| 17 |
+
- `tgt`: translated amino acid sequence (string)
|
| 18 |
+
- **Splits**
|
| 19 |
+
- `train`, `validation`, `test`
|