fgs-dti-prediction-eval
Fine-Grained Selective Similarity Integration for Drug-Target Interaction Prediction — Liu et al. (2022) (arXiv:2212.00543, 2022)
What this evaluates
Evaluates a fine-grained selective similarity integration framework for drug-target interaction prediction. It tests the model's ability to dynamically weight multiple drug and target similarity views based on local interaction consistency to predict binary interaction labels.
Datasets
Metrics
AUC (primary) — range: [0, 1]
- Area under the receiver operating characteristic curve, measuring the trade-off between true positive rate and false positive rate across classification thresholds.
Input / output format
Input: Multiple similarity matrices for drugs (e.g., chemical structure, side effects) and targets (e.g., amino-acid sequence, PPI), combined with a binary interaction label matrix.
Output: Predicted interaction scores/labels for drug-target pairs, and integrated similarity weights per entity.
Scoring recipe
def compute_auc(y_true, y_pred):
from sklearn.metrics import roc_auc_score
return roc_auc_score(y_true, y_pred)
Common pitfalls
- Dataset splits (train/val/test) are not specified in the provided text.
- Similarity matrices are updated with newer database versions (KEGG, DrugBank, ChEMBL), requiring careful version pinning for reproducibility.
- Evaluation metrics are not explicitly listed in the provided excerpt.
Evidence (verbatim from paper)
In the experiments, we utilize five benchmark DTI datasets, including four collected by Yamanishi [26], namely Nuclear Receptors (NR), G-protein coupled receptors (GPCR), Ion Channel (IC), and Enzyme (E), and one obtained from [22] (denoted as Luo).
Citation
@misc{liu2022fgs,
title={Fine-Grained Selective Similarity Integration for Drug-Target Interaction Prediction},
author={Liu et al. (2022)},
year={2022},
note={arXiv:2212.00543}
}
1---2name: fgs-dti-prediction-eval3description: Evaluates a fine-grained selective similarity integration framework for drug-target interaction prediction. It tests the model's ability to dynamically weight multiple drug and target similarity views based on local interaction consistency to predict binary interaction labels. Use when the user wants to benchmark on Nuclear Receptors (NR), G-protein coupled receptors (GPCR), Ion Channel (IC), Enzyme (E), Luo, or asks about evaluating this task. Reports AUC.4---56# fgs-dti-prediction-eval78> Fine-Grained Selective Similarity Integration for Drug-Target Interaction Prediction — Liu et al. (2022) (arXiv:2212.00543, 2022)910## What this evaluates1112Evaluates a fine-grained selective similarity integration framework for drug-target interaction prediction. It tests the model's ability to dynamically weight multiple drug and target similarity views based on local interaction consistency to predict binary interaction labels.1314## Datasets1516- **Nuclear Receptors (NR)** — total 175; splits: unspecified (-1); repo https://github.com/Nanfeizhilu/FGS_DTI_Prediction17- **G-protein coupled receptors (GPCR)** — total 1350; splits: unspecified (-1); repo https://github.com/Nanfeizhilu/FGS_DTI_Prediction18- **Ion Channel (IC)** — total 3201; splits: unspecified (-1); repo https://github.com/Nanfeizhilu/FGS_DTI_Prediction19- **Enzyme (E)** — total 4640; splits: unspecified (-1); repo https://github.com/Nanfeizhilu/FGS_DTI_Prediction20- **Luo** — total 1923; splits: unspecified (-1); repo https://github.com/Nanfeizhilu/FGS_DTI_Prediction2122## Metrics2324- `AUC` **(primary)** — range: [0, 1]25 - Area under the receiver operating characteristic curve, measuring the trade-off between true positive rate and false positive rate across classification thresholds.2627## Input / output format2829**Input**: Multiple similarity matrices for drugs (e.g., chemical structure, side effects) and targets (e.g., amino-acid sequence, PPI), combined with a binary interaction label matrix.3031**Output**: Predicted interaction scores/labels for drug-target pairs, and integrated similarity weights per entity.3233## Scoring recipe3435```python36def compute_auc(y_true, y_pred):37 from sklearn.metrics import roc_auc_score38 return roc_auc_score(y_true, y_pred)39```4041## Common pitfalls4243- Dataset splits (train/val/test) are not specified in the provided text.44- Similarity matrices are updated with newer database versions (KEGG, DrugBank, ChEMBL), requiring careful version pinning for reproducibility.45- Evaluation metrics are not explicitly listed in the provided excerpt.4647## Evidence (verbatim from paper)4849> In the experiments, we utilize five benchmark DTI datasets, including four collected by Yamanishi [26], namely Nuclear Receptors (NR), G-protein coupled receptors (GPCR), Ion Channel (IC), and Enzyme (E), and one obtained from [22] (denoted as Luo).5051## Citation5253```bibtex54@misc{liu2022fgs,55 title={Fine-Grained Selective Similarity Integration for Drug-Target Interaction Prediction},56 author={Liu et al. (2022)},57 year={2022},58 note={arXiv:2212.00543}59}60```6162- arXiv: 2212.00543