Datasets:
File size: 866 Bytes
f43f0e5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
---
license: mit
task_categories:
- tabular-classification
size_categories:
- 100K<n<1M
---
# ProteinCompound Dataset
This dataset contains RNA-compound interaction data for training protein-compound classifiers.
## Dataset Structure
The dataset is provided as a single CSV file: `sampled.csv`
### Columns
- `rna_sequence`: RNA sequence
- `smiles_sequence`: SMILES representation of the compound
- `label`: Binary label indicating interaction (0/1)
## Usage
```python
from datasets import load_dataset
dataset = load_dataset("t2ance/ProteinCompound")
```
Or directly with pandas:
```python
import pandas as pd
df = pd.read_csv("hf://datasets/t2ance/ProteinCompound/sampled.csv")
```
## Dataset Size
- File size: ~105 MB
- Format: CSV
## Citation
If you use this dataset, please cite the associated repository:
https://github.com/t2ance/ProteinCompound
|