Zhaohan-Meng commited on
Commit
a66bec8
·
verified ·
1 Parent(s): af00b10

Add InteractBind benchmark dataset

Browse files
.gitattributes CHANGED
@@ -58,3 +58,13 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
61
+ data/affinity/data.csv filter=lfs diff=lfs merge=lfs -text
62
+ data/p_ood_25/test.csv filter=lfs diff=lfs merge=lfs -text
63
+ data/p_ood_25/train.csv filter=lfs diff=lfs merge=lfs -text
64
+ data/p_ood_25/validation.csv filter=lfs diff=lfs merge=lfs -text
65
+ data/p_ood_28/test.csv filter=lfs diff=lfs merge=lfs -text
66
+ data/p_ood_28/train.csv filter=lfs diff=lfs merge=lfs -text
67
+ data/p_ood_31/train.csv filter=lfs diff=lfs merge=lfs -text
68
+ data/p_ood_33/test.csv filter=lfs diff=lfs merge=lfs -text
69
+ data/p_ood_33/train.csv filter=lfs diff=lfs merge=lfs -text
70
+ data/p_ood_33/validation.csv filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,3 +1,121 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ configs:
4
+ - config_name: affinity
5
+ default: true
6
+ data_files:
7
+ - split: train
8
+ path: data/affinity/data.csv
9
+ - config_name: p_ood_25
10
+ data_dir: data/p_ood_25
11
+ - config_name: p_ood_28
12
+ data_dir: data/p_ood_28
13
+ - config_name: p_ood_31
14
+ data_dir: data/p_ood_31
15
+ - config_name: p_ood_33
16
+ data_dir: data/p_ood_33
17
+ ---
18
+
19
+ # InteractBind
20
+
21
+ > A physically grounded, large-scale protein–ligand interaction dataset
22
+ > for interpretable and interaction-aware binding prediction
23
+
24
+ ---
25
+
26
+ ## Motivation
27
+
28
+ Most existing protein–ligand binding datasets provide only coarse-grained supervision, such as binary labels or scalar affinity values. While effective for prediction, these signals compress complex molecular interaction processes into a single outcome, limiting interpretability and mechanistic understanding.
29
+
30
+ **InteractBind** addresses this limitation by explicitly modelling *non-covalent interaction patterns* derived from experimentally resolved protein–ligand complexes.
31
+
32
+ It enables **token-level supervision**, bridging sequence-based representations with physically meaningful interaction structures.
33
+
34
+ ---
35
+
36
+ ## Dataset Overview
37
+
38
+ InteractBind is constructed from high-quality experimentally resolved complexes and includes:
39
+
40
+ - Protein sequences (FASTA and structure-aware sequence)
41
+ - Ligand molecular representations (SMILES and SELFIES)
42
+ - Binding labels and affinity annotations
43
+ - Token-level non-covalent interaction maps
44
+
45
+ The dataset is designed to support both **prediction accuracy** and **mechanistic interpretability**.
46
+
47
+ ---
48
+ ## Dataset
49
+
50
+ This repository provides benchmark CSVs with true residue-level interaction maps for PLI prediction evaluation.
51
+
52
+ | Dataset | Type | Example Use |
53
+ |----------|------|--------------|
54
+ | InteractBind (affinity) | Binding affinity splits | Evaluate in-domain |
55
+ | InteractBind-P-25%/28%/31%/33% OOD | Protein OOD splits | Evaluate novel protein generalisation |
56
+
57
+ ## Files
58
+
59
+ The Hugging Face Dataset Viewer is configured to read the CSV subsets under `data/`:
60
+
61
+ - `affinity`: the full InteractBind affinity table.
62
+ - `p_ood_25`, `p_ood_28`, `p_ood_31`, `p_ood_33`: protein OOD benchmark subsets with `train`, `validation`, and `test` splits.
63
+
64
+ Each CSV includes seven residue-level binding-site fingerprint columns derived from the interaction maps:
65
+
66
+ - `Hydrogen bonding_binding_site`
67
+ - `Salt Bridges_binding_site`
68
+ - `π–π Stacking_binding_site`
69
+ - `Cation–π_binding_site`
70
+ - `Hydrophobic_binding_site`
71
+ - `Van der Waals_binding_site`
72
+ - `Overall_binding_site`
73
+
74
+ Each value is a binary list aligned to the protein FASTA sequence. For example, `[0,0,1,0]` marks the third residue as a binding-site residue. Negative protein-ligand pairs without contact-map entries are encoded as all-zero fingerprints.
75
+
76
+ ## Supported Interaction Types
77
+
78
+ Structured annotations are provided for major non-covalent interaction categories:
79
+
80
+ - Hydrogen bonds
81
+ - Hydrophobic interactions
82
+ - Salt bridges
83
+ - π–π stacking
84
+ - π–cation interactions
85
+ - Van der Waals contacts
86
+
87
+ Each interaction channel can be used independently or combined for multi-channel supervision.
88
+
89
+ ---
90
+
91
+ ## Key Features
92
+
93
+ - **Physically grounded supervision**
94
+ Derived from experimentally resolved complexes rather than heuristic attention signals.
95
+
96
+ - **Token-level interaction maps**
97
+ Enables fine-grained modelling of residue–atom interactions.
98
+
99
+ - **Model-agnostic integration**
100
+ Compatible with sequence-based encoders (e.g., ESM, SELFormer, and other protein–ligand models).
101
+
102
+ - **Interpretability support**
103
+ Facilitates binding residue identification and interaction pattern analysis.
104
+
105
+ - **Scalable design**
106
+ Allows large-scale training without requiring full structural modelling during inference.
107
+
108
+ ---
109
+
110
+ ## Research Applications
111
+
112
+ InteractBind supports a broad range of research directions:
113
+
114
+ - Protein–ligand binding prediction
115
+ - Binding site/pocket localisation
116
+ - Interaction-aware representation learning
117
+ - Mechanistic hypothesis generation
118
+ - Drug discovery and virtual screening
119
+ - Explainable AI for molecular modelling
120
+
121
+ ---
data/affinity/data.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37fc044e6a1310be68a8acf43ba021fd6cbebab75661e5884d1b9c55136d7f24
3
+ size 648036721
data/p_ood_25/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3703f566f5c934444db6d708984b4a29453b6dd5c04899be1032c12c0c5e14b7
3
+ size 26345047
data/p_ood_25/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eba3668a31c72b2b053adc6cf3047027243a92d80b6961c067988047ab824abd
3
+ size 47223200
data/p_ood_25/validation.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a81c9c8478e1db8beb0995cb80dd27cf512a4b020d53273f7e8777e50237e634
3
+ size 26320648
data/p_ood_28/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:63c28d51cd14f04165edbe886c4a1f04b0b2974f891baab7707913e94728ec71
3
+ size 10837203
data/p_ood_28/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d91e8f0c9b53a7c9cee2e3cdd66df2590d74edcf8d23426520ef333cd4d8c0e9
3
+ size 63381328
data/p_ood_28/validation.csv ADDED
The diff for this file is too large to render. See raw diff
 
data/p_ood_31/test.csv ADDED
The diff for this file is too large to render. See raw diff
 
data/p_ood_31/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f961a116a49b4750a12c87d3acf549aaa7c2d1d98610aef7431176147f8c484
3
+ size 82810047
data/p_ood_31/validation.csv ADDED
The diff for this file is too large to render. See raw diff
 
data/p_ood_33/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c254f25b4eedd12476cf8dac5a6a812d190961b60e7ff0f85975c8077997f0e2
3
+ size 19829688
data/p_ood_33/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f1b87c657700c0435bbb42a391dbc8b45b4e84ef6736f43b35848f1a2d4fb402
3
+ size 144232221
data/p_ood_33/validation.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59c5c23e9b74b09594c28d983048424d3ea416709d32ba9eccf39062f51b45ca
3
+ size 19776068