Update README.md
Browse files
README.md
CHANGED
|
@@ -45,3 +45,32 @@ configs:
|
|
| 45 |
- split: test
|
| 46 |
path: data/test-*
|
| 47 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
- split: test
|
| 46 |
path: data/test-*
|
| 47 |
---
|
| 48 |
+
|
| 49 |
+
# ChEBI-20-MM SMILES Captioning Dataset
|
| 50 |
+
|
| 51 |
+
## Dataset Transformation Summary
|
| 52 |
+
|
| 53 |
+
**Original Dataset**: `liupf/ChEBI-20-MM`
|
| 54 |
+
**Transformed Dataset**: `pkanithi/ChEBI-20-MM-SMILES-Captioning`
|
| 55 |
+
|
| 56 |
+
## Changes Made
|
| 57 |
+
|
| 58 |
+
### Added `messages` Column
|
| 59 |
+
- Added a new `messages` column in ChatML format
|
| 60 |
+
- Each example now contains a conversation structure with system, user, and assistant messages
|
| 61 |
+
|
| 62 |
+
### Chat Format Structure
|
| 63 |
+
Each example now has a `messages` array with:
|
| 64 |
+
1. **System message**: Instructions for molecular structure description
|
| 65 |
+
2. **User message**: SMILES string input
|
| 66 |
+
3. **Assistant message**: Molecular description from the dataset
|
| 67 |
+
|
| 68 |
+
The user message format:
|
| 69 |
+
```
|
| 70 |
+
Here is the molecular data:
|
| 71 |
+
- SMILES: [SMILES_string]
|
| 72 |
+
```
|
| 73 |
+
|
| 74 |
+
## Result
|
| 75 |
+
The dataset is now in ChatML format suitable for supervised fine-tuning of molecular captioning models, focusing on SMILES-to-description tasks.
|
| 76 |
+
|