Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- text2text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- biology
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
## Dataset Details
|
| 10 |
+
|
| 11 |
+
### Dataset Description
|
| 12 |
+
|
| 13 |
+
The original dataset is encoded using ProstT5 tokenizer, this version is decoded to be used for training without preprocessing.
|
| 14 |
+
|
| 15 |
+
### Dataset Sources
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
- **Repository:** [https://huggingface.co/datasets/Rostlab/ProstT5Dataset]
|
| 19 |
+
- **Paper [optional]:** [https://www.biorxiv.org/content/10.1101/2023.07.23.550085v1]
|
| 20 |
+
|
| 21 |
+
### How to use
|
| 22 |
+
```python
|
| 23 |
+
from datasets import load_dataset
|
| 24 |
+
|
| 25 |
+
ds = load_dataset("hazemessam/prostt5_dataset")
|
| 26 |
+
```
|