Commit ·
7328666
1
Parent(s): 0d2ebe3
update readme
Browse files
README.md
CHANGED
|
@@ -8,8 +8,43 @@ tags:
|
|
| 8 |
---
|
| 9 |
|
| 10 |
# Benchmark for SeqScreen
|
|
|
|
| 11 |
The paper is under review.
|
| 12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
## Citation
|
| 14 |
|
| 15 |
The paper is under review. As soon as it is accepted, we will update this section.
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
# Benchmark for SeqScreen
|
| 11 |
+
|
| 12 |
The paper is under review.
|
| 13 |
|
| 14 |
+
\[[Github Repo](https://github.com/pcdslab/SeqScreen)\] | \[[Model Collection](https://huggingface.co/collections/SaeedLab/seqscreen)\] | \[[Cite](#citation)\]
|
| 15 |
+
|
| 16 |
+
## Abstract
|
| 17 |
+
|
| 18 |
+
Virtual screening aims to identify candidate molecules that bind to a target protein, playing a central role in computational drug discovery. Sequence-based deep learning methods offer an applicable alternative to structure-based approaches, but typically process one protein-molecule pair at a time, limiting their scalability to large molecular libraries. Contrastive learning methods inspired by CLIP have shown promise for learning joint protein-molecule representations, but standard CLIP training was designed for symmetric tasks and does not account for the asymmetric and one-to-many nature of protein-molecule binding. In this paper, we introduce *SeqScreen*, a sequence-based virtual screening method built on a dual-encoder contrastive architecture. SeqScreen introduces a protein-centric batch construction strategy and an asymmetric multi-positive InfoNCE loss to cope with the protein-centric nature of virtual screening. We conduct a systematic evaluation across 8 protein language models and 3 molecular language model variants. The protein-centric batch construction consistently outperforms standard CLIP training across all evaluated encoders, while requiring approximately 32 times fewer training epochs and 7 times fewer forward passes during inference compared to pair-based methods. On the LIT-PCBA dataset, SeqScreen outperforms all sequence-based baselines, achieving a relative improvement of up to 39% in EF at 0.5 over the best competing method, while remaining competitive with traditional docking approaches without requiring 3D structural information.
|
| 19 |
+
|
| 20 |
+
## Dataset Details
|
| 21 |
+
|
| 22 |
+
### ChEMBL
|
| 23 |
+
The dataset consists of 1,492 proteins, 394,190 molecules, and 583,960 positive pairs for training; 334 proteins, 101,586 molecules, and 147,676 positive pairs for validation; 326 proteins, 105,048 molecules, and 130,281 positive pairs for testing. The dataset was generated using ChEMBL 36, split by protein sequence similarity.
|
| 24 |
+
|
| 25 |
+
### LIT-PCBA
|
| 26 |
+
The dataset consists of 1,452 proteins, 375,120 molecules, and 548,294 positive pairs for training; 326 proteins, 97,213 molecules, and 143,088 positive pairs for validation; 15 proteins, 404,586 molecules, and 2,776,973 pairs (positives and negatives) for testing. The training and validation datasets were generated using a filtered version of the ChEMBL dataset. The test set is the [LIT-PCBA dataset](https://pubs.acs.org/doi/10.1021/acs.jcim.0c00155).
|
| 27 |
+
|
| 28 |
+
## Dataset Usage
|
| 29 |
+
|
| 30 |
+
### ChEMBL
|
| 31 |
+
|
| 32 |
+
Use the code below to load the ChEMBL dataset.
|
| 33 |
+
```py
|
| 34 |
+
from datasets import load_dataset
|
| 35 |
+
|
| 36 |
+
dataset_dict = load_dataset("SaeedLab/SeqScreen", data_dir="chembl")
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
### LIT-PCBA
|
| 40 |
+
|
| 41 |
+
Use the code below to load the LIT-PCBA dataset.
|
| 42 |
+
```py
|
| 43 |
+
from datasets import load_dataset
|
| 44 |
+
|
| 45 |
+
dataset_dict = load_dataset("SaeedLab/SeqScreen", data_dir="lit_pcba")
|
| 46 |
+
```
|
| 47 |
+
|
| 48 |
## Citation
|
| 49 |
|
| 50 |
The paper is under review. As soon as it is accepted, we will update this section.
|