Datasets:
| 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 | |