t2ance commited on
Commit
f43f0e5
·
verified ·
1 Parent(s): b74ddf4

Upload README.md with huggingface_hub

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