REVIEW 4 major objections 8 minor 32 references
Swapping the loss function lifts drug-interaction prediction accuracy by 19 points
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · glm-5.2
2026-07-09 04:56 UTC pith:FYK3HVP7
load-bearing objection Asymmetric focal loss applied to graph-based DDI prediction; the controlled experimental design is sound but the BCE baseline is suspiciously weak, making the headline 19.3 pp gain hard to trust. the 4 major comments →
Asymmetric Focal Loss Improves Graph Neural Network Prediction of Drug-Drug Interactions
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
The central object is ClinicalFocal loss, an asymmetric variant of focal loss that splits the positive and negative terms of cross-entropy with different focusing exponents and class weights. For positive (observed interaction) examples, the loss uses γ_fn = 2.0 and α_fn = 0.75; for negative examples, γ_fp = 0.5 and α_fp = 0.25. This asymmetry forces the optimizer to spend more capacity on hard positive examples—interactions the model struggles to identify—while still down-weighting easy negatives but less aggressively. The paper shows that this single change, applied to a relation-aware graph convolutional network on TWOSIDES with 4.5 million positive triples across 963 side-effect relation
What carries the argument
ClinicalFocal loss formula: L = w_r [α_fn(1-p)^{γ_fn} × y + α_fp × p^{γ_fp} × (1-y)] × CE(p,y), where CE is standard cross-entropy, y is the binary label, p is the predicted probability, and the asymmetry (γ_fn > γ_fp, α_fn > α_fp) is the design choice that drives the improvement.
Load-bearing premise
The binary cross-entropy baseline is correctly implemented and competitively tuned, so that the 19-point improvement reflects the loss function's effect rather than a weak starting point.
What would settle it
If a properly tuned BCE baseline on the same TWOSIDES splits achieves AUROC comparable to ClinicalFocal's 0.914, then the improvement is an artifact of baseline misconfiguration, not a property of the asymmetric focal objective.
If this is right
- If the loss function alone accounts for a 19-point accuracy swing, then architectural complexity in DDI prediction models may be less important than previously assumed, and existing simpler models could be retrofitted with asymmetric focal objectives at near-zero cost.
- The reduction in false-negative rate from 29.8% to 9.1% is the clinically actionable result: in pharmacovigilance, missed interactions cause preventable harm, so a loss function that explicitly penalizes false negatives could shift the deployment calculus for computational DDI screening.
- The approach is architecture-agnostic in principle: any graph-based link prediction model trained with cross-entropy could substitute an asymmetric focal objective, making the method broadly portable across biomedical knowledge graph tasks beyond DDI prediction.
- The asymmetric parameter design (stronger focus on positives, gentler on negatives) suggests a general recipe for safety-critical classification where the cost asymmetry between false negatives and false positives is large and known.
- If the gains hold on external datasets and under prospective validation, loss-function design could become a standard axis of model development in computational pharmacology, alongside architecture and feature engineering.
Where Pith is reading between the lines
- The paper's baseline BCE model achieves AUROC 0.766 on TWOSIDES, which is substantially lower than published results for comparable architectures on the same dataset (e.g., SkipGNN at 0.892). If the baseline is undertrained or misconfigured, the reported 19-point gain may partly reflect recovery from a weak baseline rather than the intrinsic advantage of the focal objective. A reader cannot distin
- The 1:1 positive-to-negative ratio used in evaluation removes class imbalance from the test set, yet the paper motivates the method partly through class imbalance. The focal loss may be acting more as a hard-example mining mechanism than as an imbalance corrector in this balanced evaluation setting.
- The comparison table positions ClinicalFocal against four prior methods, but those methods were evaluated under different data splits, feature sets, and experimental protocols. Direct comparison of absolute metrics across non-identical settings is suggestive but not conclusive.
- Extending the asymmetric focal approach to multi-type DDI prediction (predicting which specific side effect type occurs, not just whether one occurs) would test whether the loss-function lever generalizes beyond binary classification, which the paper itself flags as future work.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The manuscript proposes ClinicalFocal loss, an asymmetric focal objective, integrated into a relation-aware graph convolutional network for drug-drug interaction (DDI) prediction on TWOSIDES. The central claim is that swapping only the loss function from binary cross-entropy (BCE) to ClinicalFocal — while holding architecture, features, data partitions, hyperparameters, and random seeds fixed — yields a +19.3 pp accuracy improvement (0.699 → 0.892) and a +14.8 pp AUROC improvement (0.766 → 0.914). The controlled experimental design, in which all variables except the loss are held constant, is a genuine methodological strength. However, the magnitude of the claimed improvement raises a load-bearing concern: the BCE baseline's AUROC of 0.766 is substantially below published results for comparable architectures on TWOSIDES (e.g., SkipGNN at 0.892, CASTER at 0.856), suggesting the baseline may be undertrained or misconfigured, which would inflate the apparent gain from the loss function alone.
Significance. The paper addresses a practically important question — whether loss-function design alone, without architectural changes, can substantially improve DDI prediction. The controlled comparison protocol (identical folds, seeds, hyperparameters, features) is a real strength and is the right experimental design for isolating a loss function's contribution. The ClinicalFocal loss parameters (gamma_fn=2.0, alpha_fn=0.75, gamma_fp=0.5, alpha_fp=0.25) are manually specified rather than fitted to validation data, which avoids circularity in parameter selection. The paper reports per-fold consistency and statistical testing. However, the central quantitative claim rests on the competitiveness of the BCE baseline, which is the primary concern detailed below.
major comments (4)
- §2.2, Training Protocol: The paper states that hyperparameters were optimized using Optuna (100 trials, maximizing validation AUROC) and that 'ClinicalFocal loss and binary cross-entropy baseline models used identical ... hyperparameters.' It is unclear whether the Optuna search was conducted using ClinicalFocal loss, BCE loss, or both independently. If the search was run with ClinicalFocal and the resulting hyperparameters (lr=1e-3, weight_decay=1e-5) were then applied to BCE, the baseline may be systematically disadvantaged. The paper must specify which loss function was active during the Optuna search. If a single hyperparameter set was shared, an independent Optuna search for BCE is needed to establish that the baseline is competitively tuned.
- §2.1 and §3.2: The BCE baseline achieves AUROC 0.766 on TWOSIDES, while the paper's own Table 2 reports SkipGNN at 0.892 and CASTER at 0.856 on the same dataset. A 3-layer attention-augmented R-GCN with molecular features and GRU updates should be competitive with these architectures; an AUROC of 0.766 is anomalously low and is the load-bearing evidence for the +14.8 pp gain attributed to ClinicalFocal. The authors should either (a) provide evidence that the BCE baseline is competitively optimized (e.g., learning curves showing convergence, comparison with a known-good R-GCN configuration on the same split), or (b) run BCE with its own independently tuned hyperparameters and report the resulting performance.
- §2.2, Training Protocol: Each forward pass samples only 200,000 of 4,576,287 positive edges. If BCE requires more exposure to positive examples to converge (as is common for cross-entropy objectives on sparse graph data), this sampling regime could systematically disadvantage the baseline. The paper should report sensitivity of both losses to the edge-sampling budget, or justify why 200K sampled edges per forward pass is sufficient for both objectives.
- §1 and §2.1: The paper motivates ClinicalFocal by class imbalance, but the evaluation uses a constructed balanced dataset (1:1 positive-to-negative ratio). With balanced classes, the class-imbalance motivation does not directly apply, and the large performance gap is more consistent with a training or optimization difference than with a fundamental limitation of BCE under imbalance. The authors should either (a) evaluate on the natural (imbalanced) distribution where the motivation holds, or (b) reframe the motivation to focus on hard-example mining rather than class imbalance.
minor comments (8)
- Eq. (5): The term w_r appears in the loss but is not defined in the surrounding text. Is it a relation-specific weight? Is it set to 1 for all relations? Please clarify.
- Table 2: The comparison with SkipGNN, CASTER, BioBERT, and KG-DDI appears to compare against published numbers from different data splits, negative sampling strategies, and evaluation protocols. The table caption should explicitly state that these are published results from different experimental setups, not re-implementations under the same protocol.
- §2.2: The attention coefficient threshold of 0.30 is stated without justification. Was this value tuned? If so, on what data?
- §2.3: With only five folds, the paired t-test has limited power. The paper acknowledges this ('findings were interpreted as exploratory'), but reporting bootstrap confidence intervals for the metric differences would strengthen the analysis.
- §3.3: The paper claims 'superior probability calibration' based on the concentration of positive predictions in the 0.65–0.70 range, but no formal calibration metric (e.g., expected calibration error, reliability diagram) is reported. This claim should be supported quantitatively or softened.
- Figure 2: The loss magnitudes for ClinicalFocal and BCE are not directly comparable (as the paper notes), but plotting them on the same axis may mislead readers. Consider separate y-axes or normalizing.
- The ClinicalFocal hyperparameters (gamma_fn, alpha_fn, gamma_fp, alpha_fp) are not justified beyond stating they create the desired asymmetry. A brief sensitivity analysis or citation to similar parameter choices in prior asymmetric loss work would strengthen the paper.
- Reference [11] is dated 2026 and [13] is dated 2026; please verify these publication dates.
Simulated Author's Rebuttal
We thank the referee for a careful and constructive review. The referee's central concern—that the BCE baseline may be undertrained or misconfigured, inflating the apparent gain from ClinicalFocal loss—is well taken and has prompted us to conduct additional experiments that substantially strengthen the manuscript. We address each comment below.
read point-by-point responses
-
Referee: §2.2, Training Protocol: It is unclear whether the Optuna search was conducted using ClinicalFocal loss, BCE loss, or both independently. If the search was run with ClinicalFocal and the resulting hyperparameters were then applied to BCE, the baseline may be systematically disadvantaged.
Authors: The referee is correct to flag this ambiguity. In our original experiments, the Optuna search was conducted using ClinicalFocal loss, and the resulting hyperparameters (lr=1e-3, weight_decay=1e-5) were then applied to both models. We agree that this design could disadvantage BCE if its optimal hyperparameters differ. We have now run an independent Optuna search (100 trials, maximizing validation AUROC) for the BCE baseline. The independently tuned BCE baseline achieves AUROC 0.783 (up from 0.766), while ClinicalFocal still achieves 0.914. The gap narrows from 14.8 to 13.1 pp but remains large and statistically significant (p < 0.001). We have revised §2.2 to clarify that independent Optuna searches were conducted for each loss function, and we report the BCE-optimal hyperparameters (lr=5e-3, weight_decay=1e-4) in the revised manuscript. revision: yes
-
Referee: §2.1 and §3.2: The BCE baseline achieves AUROC 0.766 on TWOSIDES, while Table 2 reports SkipGNN at 0.892 and CASTER at 0.856. An AUROC of 0.766 is anomalously low and is load-bearing evidence for the +14.8 pp gain.
Authors: We agree that the BCE baseline's AUROC of 0.766 is lower than what well-tuned R-GCN architectures typically achieve on TWOSIDES, and the referee's concern that this inflates the apparent gain is legitimate. We have taken two corrective steps. First, as noted above, we ran an independent Optuna search for BCE, which improved its AUROC to 0.783. Second, we have added learning curves (new Supplementary Figure S1) showing that BCE does converge (not undertrained in the sense of early stopping), but to a lower plateau than ClinicalFocal. We acknowledge that direct comparison with SkipGNN and CASTER is imperfect because those methods use different data splits, negative sampling strategies, and relation subsets. We have added a paragraph in §3.4 explicitly discussing these comparability limitations and noting that our BCE baseline, even when independently tuned, remains below published R-GCN results on TWOSIDES. We now frame the contribution more cautiously: ClinicalFocal substantially improves our specific architecture, and the gain is not solely attributable to a poorly tuned baseline, but we no longer claim that the improvement reflects the gap between a competitive BCE baseline and ClinicalFocal at the level of published state-of-the-art. revision: yes
-
Referee: §2.2, Training Protocol: Each forward pass samples only 200,000 of 4,576,287 positive edges. If BCE requires more exposure to positive examples to converge, this sampling regime could systematically disadvantage the baseline.
Authors: This is a fair concern. We have now run a sensitivity analysis varying the edge-sampling budget at 200K, 500K, and 1M positive edges per forward pass for both loss functions. For BCE, increasing the budget from 200K to 1M improves AUROC from 0.766 to 0.789, confirming that the sampling budget does partially affect the BCE baseline. For ClinicalFocal, the improvement is from 0.914 to 0.918, indicating that ClinicalFocal is less sensitive to the sampling budget. The gap narrows but remains substantial (12.9 pp at 1M budget). We have added these results in a new Supplementary Table S2 and revised §2.2 to note the sensitivity and justify the 200K budget as a computational constraint rather than a methodological choice that favors either loss. We acknowledge that the 200K budget modestly disadvantages BCE, but this does not account for the bulk of the performance gap. revision: yes
-
Referee: §1 and §2.1: The paper motivates ClinicalFocal by class imbalance, but the evaluation uses a constructed balanced dataset (1:1). With balanced classes, the class-imbalance motivation does not directly apply.
Authors: The referee is correct that the class-imbalance motivation does not directly apply to the balanced evaluation set, and we appreciate this observation. We have revised the Introduction (§1) and Methods (§2.1) to reframe the motivation around hard-example mining rather than class imbalance per se. The core argument is now: even in a balanced evaluation, individual examples differ in difficulty, and BCE allocates equal gradient weight to easy and hard examples, while ClinicalFocal concentrates learning on hard positives. We have also added a brief experiment on the natural (imbalanced) distribution (1:10 positive-to-negative ratio) showing that ClinicalFocal improves AUROC from 0.741 to 0.887 and AUCPR from 0.583 to 0.791, confirming that the method also benefits the imbalanced setting where the original motivation applies. The revised manuscript now presents both balanced and imbalanced results, with the motivation appropriately framed for each. revision: yes
Circularity Check
No circularity found: the loss function is defined with manually chosen parameters and the comparison is empirical, not self-referential.
full rationale
The paper's derivation chain is straightforward and self-contained. ClinicalFocal loss (Eq. 5) is defined as an asymmetric focal objective with manually specified parameters (gamma_fn=2.0, alpha_fn=0.75, gamma_fp=0.5, alpha_fp=0.25) — these are not fitted to the target data, so there is no 'fitted input called prediction' circularity. The central claim (ClinicalFocal outperforms BCE) is an empirical comparison under controlled conditions, not a derivation that reduces to its inputs by construction. No uniqueness theorem or self-citation chain is invoked to force the conclusion. Reference [28] (Moradi, co-author) is cited only for Optuna usage and is not load-bearing for the focal loss claim. The concerns about a potentially weak BCE baseline, ambiguous hyperparameter search protocol, and apples-to-oranges SOTA comparison in Table 2 are all correctness and experimental-design risks, not circularity — the paper does not define its inputs in terms of its outputs, nor does it rename a fit as a prediction. The derivation is independent of its conclusions.
Axiom & Free-Parameter Ledger
free parameters (6)
- gamma_fn (positive focusing exponent) =
2.0
- alpha_fn (positive class weight) =
0.75
- gamma_fp (negative focusing exponent) =
0.5
- alpha_fp (negative class weight) =
0.25
- Learning rate =
1e-3
- Weight decay =
1e-5
axioms (3)
- domain assumption Corruption sampling produces valid negative examples for DDI prediction
- domain assumption A 1:1 positive-to-negative ratio is an appropriate evaluation setting
- ad hoc to paper Optuna hyperparameter search maximizing validation AUROC produces a competitive BCE baseline
read the original abstract
Background: Graph neural networks improve computational prediction of polypharmacy side effects, but standard binary cross-entropy training allocates equal capacity to well-classified and difficult examples, potentially missing clinically significant interactions. We evaluated whether an asymmetric focal objective could improve multi-relational drug-drug interaction (DDI) prediction by emphasizing difficult positive interactions. Methods: ClinicalFocal loss was integrated into a relation-aware graph convolutional network using molecular fingerprints, physicochemical descriptors, and learned embeddings. The model was evaluated on TWOSIDES using five-fold cross-validation with identical experimental conditions (architecture, features, data partitions, hyperparameters, and random seeds) for ClinicalFocal loss and binary cross-entropy baseline. Results: ClinicalFocal loss increased accuracy from 0.699 to 0.892 (+19.3 percentage points) and F1 score from 0.700 to 0.894 (+19.4 percentage points). AUROC increased from 0.766 to 0.914, and AUCPR increased from 0.714 to 0.860. The false-negative rate decreased from 29.8% to 9.1%, while specificity increased from 69.6% to 87.5%. Overall classification error decreased from 30.1% to 10.8%, corresponding to a 64.1% relative reduction. Improvements were consistent across all five folds. Conclusions: Asymmetric focal optimization improved classification and ranking performance while achieving 90.9% recall for observed interaction triples, without modifying the underlying architecture. Loss-function design is a direct, tunable lever for improving graph-based DDI prediction.
Figures
Reference graph
Works this paper leans on
-
[1]
The Rising Tide of Polypharmacy and Drug-Drug Interactions: Population Database Analysis 1995–2010
Guthrie, Bruce; Makubate, Boikanyo; Hernandez-Santiago, Virginia; Dreischulte, Tobias. The Rising Tide of Polypharmacy and Drug-Drug Interactions: Population Database Analysis 1995–2010. BMC medicine 2015, 13, 74
work page 1995
-
[2]
Clinical Consequences of Polypharmacy in Elderly
Maher, Robert L; Hanlon, Joseph; Hajjar, Emily R. Clinical Consequences of Polypharmacy in Elderly. Expert opinion on drug safety 2014, 13, 57-65
work page 2014
-
[3]
Population-Scale Identification of Differential Adverse Events before and During a Pandemic
Zhang, Xiang; Sumathipala, Marissa; Zitnik, Marinka. Population-Scale Identification of Differential Adverse Events before and During a Pandemic. Nature Computational Science 2021, 1, 666-677
work page 2021
-
[4]
Modeling Polypharmacy Side Effects with Graph Convolutional Networks
Zitnik, Marinka; Agrawal, Monica; Leskovec, Jure. Modeling Polypharmacy Side Effects with Graph Convolutional Networks. Bioinformatics 2018, 34, i457-i466
work page 2018
-
[5]
Emergency Hospitalizations for Adverse Drug Events in Older Americans
Budnitz, Daniel S; Lovegrove, Maribeth C; Shehab, Nadine; Richards, Chesley L. Emergency Hospitalizations for Adverse Drug Events in Older Americans. New England Journal of Medicine 2011, 365, 2002-2012
work page 2011
-
[6]
Data -Driven Prediction of Drug Effects and Interactions
Tatonetti, Nicholas P; Ye, Patrick P; Daneshjou, Roxana; Altman, Russ B. Data -Driven Prediction of Drug Effects and Interactions. Science translational medicine 2012, 4, 125ra131-125ra131
work page 2012
-
[7]
Focal Loss for Dense Object Detection
Lin, Tsung-Yi; Goyal, Priya; Girshick, Ross; He, Kaiming; Dollár, Piotr. Focal Loss for Dense Object Detection. In Proceedings of the Proceedings of the IEEE international conference on computer vision, 2017; pp. 2980-2988
work page 2017
-
[8]
Extended -Connectivity Fingerprints
Rogers, David; Hahn, Mathew. Extended -Connectivity Fingerprints. Journal of chemical information and modeling 2010, 50, 742- 754
work page 2010
-
[9]
Zhang, Zitong; Zhao, Lingling; Wang, Junjie; Wang, Chunyu. A Hierarchical Graph Neural Network Framework for Predicting Protein-Protein Interaction Modulators with Functional Group Information and Hypergraph Structure. IEEE Journal of Biomedical and Health Informatics 2024, 28, 4295-4305
work page 2024
-
[10]
Sumgnn: Multi -Typed Drug Interaction Prediction Via Efficient Knowledge Graph Summarization
Yu, Yue; Huang, Kexin; Zhang, Chao; Glass, Lucas M; Sun, Jimeng; Xiao, Cao. Sumgnn: Multi -Typed Drug Interaction Prediction Via Efficient Knowledge Graph Summarization. Bioinformatics 2021, 37, 2988-2995
work page 2021
-
[11]
Generating Explainable Hypotheses for Drug Repurposing with Graph Neural Networks
Perdomo-Quinteiro, Pablo; Guney, Emre; Belmonte -Hernández, Alberto. Generating Explainable Hypotheses for Drug Repurposing with Graph Neural Networks. Scientific Reports 2026
work page 2026
-
[12]
A Comprehensive Survey on Graph Neural Networks
Wu, Zonghan; Pan, Shirui; Chen, Fengwen; Long, Guodong; Zhang, Chengqi; Yu, Philip S. A Comprehensive Survey on Graph Neural Networks. IEEE transactions on neural networks and learning systems 2020, 32, 4-24
work page 2020
-
[13]
Qiu, Luyu; Xu, Yuming; Li, Haoyang; Zhang, Chen Jason; Zhou, Alexander; Cheng, Peng; Chen, Lei; Li, Qing. Towards a Generalizable and Expressive Graph Neural Network for Graph -Level Tasks with Theoretical Guarantees. The VLDB Journal 2026, 35, 30
work page 2026
-
[14]
Cui, Zhiyong; Ke, Ruimin; Pu, Ziyuan; Wang, Yinhai. Stacked Bidirectional and Unidirectional Lstm Recurrent Neural Network for Forecasting Network-Wide Traffic State with Missing Values. Transportation Research Part C: Emerging Technologies 2020, 118, 102674
work page 2020
-
[15]
Learning Deep Representations for Graph Clustering
Tian, Fei; Gao, Bin; Cui, Qing; Chen, Enhong; Liu, Tie-Yan. Learning Deep Representations for Graph Clustering. In Proceedings of the Proceedings of the AAAI conference on artificial intelligence, 2014
work page 2014
-
[16]
Smote: Synthetic Minority over -Sampling Technique
Chawla, Nitesh V; Bowyer, Kevin W; Hall, Lawrence O; Kegelmeyer, W Philip. Smote: Synthetic Minority over -Sampling Technique. Journal of artificial intelligence research 2002, 16, 321-357
work page 2002
-
[17]
RoBERTa: A Robustly Optimized BERT Pretraining Approach
Liu, Yinhan; Ott, Myle; Goyal, Naman; Du, Jingfei; Joshi, Mandar; Chen, Danqi; Levy, Omer; Lewis, Mike; Zettlemoyer, Luke; Stoyanov, Veselin. Roberta: A Robustly Optimized Bert Pretraining Approach. arXiv preprint arXiv:1907.11692 2019
work page internal anchor Pith review Pith/arXiv arXiv 1907
-
[18]
Vaswani, Ashish; Shazeer, Noam; Parmar, Niki; Uszkoreit, Jakob; Jones, Llion; Gomez, Aidan N; Kaiser, Łukasz; Polosukhin, Illia. Attention Is All You Need. Advances in neural information processing systems 2017, 30
work page 2017
-
[19]
Feasibility of the Soft Attention-Based Models for Automatic Segmentation of Oct Kidney Images
Moradi, Mousa; Du, Xian; Huan, Tianxiao; Chen, Yu. Feasibility of the Soft Attention-Based Models for Automatic Segmentation of Oct Kidney Images. Biomedical Optics Express 2022, 13, 2728-2738, doi:10.1364/BOE.449942
-
[20]
Soft Attention -Based U -Net for Automatic Segmentation of Oct Kidney Images
Moradi, Mousa; Du, Xian; Chen, Yu. Soft Attention -Based U -Net for Automatic Segmentation of Oct Kidney Images. In Proceedings of the Optical Coherence Tomography and Coherence Domain Optical Methods in Biomedicine XXVI, 2022; pp. 106-111. 14 of 14
work page 2022
-
[21]
Generalized Focal Loss: Learning Qualified and Distributed Bounding Boxes for Dense Object Detection
Li, Xiang; Wang, Wenhai; Wu, Lijun; Chen, Shuo; Hu, Xiaolin; Li, Jun; Tang, Jinhui; Yang, Jian. Generalized Focal Loss: Learning Qualified and Distributed Bounding Boxes for Dense Object Detection. Advances in neural information processing systems 2020, 33, 21002-21012
work page 2020
-
[22]
Asymmetric Loss for Multi-Label Classification
Ridnik, Tal; Ben -Baruch, Emanuel; Zamir, Nadav; Noy, Asaf; Friedman, Itamar; Protter, Matan; Zelnik -Manor, Lihi. Asymmetric Loss for Multi-Label Classification. In Proceedings of the Proceedings of the IEEE/CVF international conference on computer vision, 2021; pp. 82-91
work page 2021
-
[23]
Training Region -Based Object Detectors with Online Hard Example Mining
Shrivastava, Abhinav; Gupta, Abhinav; Girshick, Ross. Training Region -Based Object Detectors with Online Hard Example Mining. In Proceedings of the Proceedings of the IEEE conference on computer vision and pattern recognition, 2016; pp. 761 - 769
work page 2016
-
[24]
Kim, Sunghwan; Chen, Jie; Cheng, Tiejun; Gindulyte, Asta; He, Jia; He, Siqian; Li, Qingliang; Shoemaker, Benjamin A; Thiessen, Paul A; Yu, Bo. Pubchem 2023 Update. Nucleic acids research 2023, 51, D1373-D1380
work page 2023
-
[25]
Modeling Relational Data with Graph Convolutional Networks
Schlichtkrull, Michael; Kipf, Thomas N; Bloem, Peter; Van Den Berg, Rianne; Titov, Ivan; Welling, Max. Modeling Relational Data with Graph Convolutional Networks. In Proceedings of the European semantic web conference, 2018; pp. 593-607
work page 2018
-
[26]
Learning Phrase Representations Using Rnn Encoder –Decoder for Statistical Machine Translation
Cho, Kyunghyun; Van Merriënboer, Bart; Gulçehre, Çağlar; Bahdanau, Dzmitry; Bougares, Fethi; Schwenk, Holger; Bengio, Yoshua. Learning Phrase Representations Using Rnn Encoder –Decoder for Statistical Machine Translation. In Proceedings of the Proceedings of the 2014 conference on empirical methods in natural language processing (EMNLP), 2014; pp. 1724-1734
work page 2014
-
[27]
Optuna: A Next -Generation Hyperparameter Optimization Framework
Akiba, Takuya; Sano, Shotaro; Yanase, Toshihiko; Ohta, Takeru; Koyama, Masanori. Optuna: A Next -Generation Hyperparameter Optimization Framework. In Proceedings of the Proceedings of the 25th ACM SIGKDD international conference on knowledge discovery & data mining, 2019; pp. 2623-2631
work page 2019
-
[28]
Moradi, Mousa; Shah, Rishi; Fujita, Asahi; Bineshfar, Niloufar; Vu, Daniel M.; Aziz, Kanza; Liebman, Daniel L.; Hashemabad, Saber Kazeminasab; Wang, Mengyu; Elze, Tobias; et al. Clinically Informed Semi -Supervised Learning Improves Disease Annotation and Equity from Electronic Health Records: A Glaucoma Case Study. npj Digital Medicine 2025, 10.1038/s417...
-
[29]
Skipgnn: Predicting Molecular Interactions with Skip- Graph Networks
Huang, Kexin; Xiao, Cao; Glass, Lucas M; Zitnik, Marinka; Sun, Jimeng. Skipgnn: Predicting Molecular Interactions with Skip- Graph Networks. Scientific reports 2020, 10, 21092
work page 2020
-
[30]
Caster: Predicting Drug Interactions with Chemical Substructure Representation
Huang, Kexin; Xiao, Cao; Hoang, Trong; Glass, Lucas; Sun, Jimeng. Caster: Predicting Drug Interactions with Chemical Substructure Representation. In Proceedings of the Proceedings of the AAAI conference on artificial intelligence, 2020; pp. 702- 709
work page 2020
-
[31]
Biobert: A Pre - Trained Biomedical Language Representation Model for Biomedical Text Mining
Lee, Jinhyuk; Yoon, Wonjin; Kim, Sungdong; Kim, Donghyeon; Kim, Sunkyu; So, Chan Ho; Kang, Jaewoo. Biobert: A Pre - Trained Biomedical Language Representation Model for Biomedical Text Mining. Bioinformatics 2020, 36, 1234-1240
work page 2020
-
[32]
Karim, Md Rezaul; Cochez, Michael; Jares, Joao Bosco; Uddin, Mamtaz; Beyan, Oya; Decker, Stefan. Drug -Drug Interaction Prediction Based on Knowledge Graph Embeddings and Convolutional -Lstm Network. In Proceedings of the Proceedings of the 10th ACM international conference on bioinformatics, computational biology and health informatics, 2019; pp. 113-123
work page 2019
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.