Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- chemistry
|
| 5 |
+
- biology
|
| 6 |
+
pretty_name: PeptideMTR Pretraining Data
|
| 7 |
+
size_categories:
|
| 8 |
+
- 100M<n<1B
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# PeptideMTR Training Data
|
| 12 |
+
This repository contains the dataset for the **PeptideMTR** paper. It is designed for SMILES encoder models trained by masked-language modeling (MLM) and/or multi-target regression (MTR) tasks, focusing on mapping peptide sequences to biochemical properties.
|
| 13 |
+
|
| 14 |
+
Link to the manuscript will be added here when available.
|
| 15 |
+
|
| 16 |
+
## Dataset Summary
|
| 17 |
+
The dataset includes peptide sequences paired with **99 RDKit-derived descriptors** representing various physicochemical properties (e.g., molecular weight, LogP, surface area, and charge descriptors).
|
| 18 |
+
|
| 19 |
+
## Data Structure
|
| 20 |
+
* `SMILES`: The SMILES representation of the molecule.
|
| 21 |
+
* `descriptors`: 99 continuous numerical features generated via RDKit.
|
| 22 |
+
|
| 23 |
+
## Usage
|
| 24 |
+
To use this dataset with the Hugging Face `datasets` library:
|
| 25 |
+
|
| 26 |
+
```python
|
| 27 |
+
from datasets import load_dataset
|
| 28 |
+
|
| 29 |
+
ds = load_dataset("your-username/PeptideMTR_training_data")
|
| 30 |
+
```
|