- 1Department of Biostatistics, School of Public Health, Peking University, Beijing, China
- 2Department of Genetics, Peking University Cancer Hospital and Institute, Beijing, China
- 3Center for ADR Monitoring of Guangdong, Guangzhou, China
- 4National Institute of Health Data Science, Peking University, Beijing, China
- 5Center for Statistical Science, Peking University, Beijing, China
Introduction: Drug safety has increasingly become a serious public health problem that threatens health and damages social economy. The common detection methods have the problem of high false positive rate. This study aims to introduce deep learning models into the adverse drug reaction (ADR) signal detection and compare different methods.
Methods: The data are based on adverse events collected by Center for ADR Monitoring of Guangdong. Traditional statistical methods were used for data preliminary screening. We transformed data into free text, extracted text information and made classification prediction by using the Long Short-Term Memory (LSTM) model. We compared it with the existing signal detection methods, including Logistic Regression, Random Forest, K-NearestNeighbor, and Multilayer Perceptron. The feature importance of the included variables was analyzed.
Results: A total of 2,376 ADR signals were identified between January 2018 and December 2019, comprising 448 positive signals and 1,928 negative signals. The sensitivity of the LSTM model based on free text reached 95.16%, and the F1-score was 0.9706. The sensitivity of Logistic Regression model based on feature variables was 86.83%, and the F1-score was 0.9063. The classification results of our model demonstrate superior sensitivity and F1-score compared to traditional methods. Several important variables “Reasons for taking medication”, “Serious ADR scenario 4”, “Adverse reaction analysis 5”, and “Dosage” had an important influence on the result.
Conclusion: The application of deep learning models shows potential to improve the detection performance in ADR monitoring.
Introduction
Drugs may cause harmful and unexpected adverse reactions at normal dosages, known as adverse drug reaction (ADR) (Edwards and Aronson, 2000). Drug safety imposes significant public health and socioeconomic burdens. Severe ADRs can worsen patients’ outcomes and even lead to mortality. Death due to ADRs has become the fifth most common cause of in-hospital mortality (Nguyen et al., 2021; Krähenbühl, 2015). The review showed that worldwide, ADRs impose an annual cost of $ 75 billion on healthcare systems (Margraff and Bertram, 2014). Under-reporting is its major limitation drug safety monitoring (Lopez-Gonzalez et al., 2009). Consequently, how to effectively identify and predict ADRs, prevent them, and improve drug safety is currently a research focus (Al Meslamani, 2023).
Traditional approaches to drug safety regulation mainly include spontaneous reporting systems, such as VigiBase (the World Health Organization’s global database of individual case safety reports), and the National Adverse Drug Reaction Surveillance System of China (Hou et al., 2016). Currently, common ADR signal detection methods based on spontaneous reporting systems integrate the reporting odds ratio (ROR), proportional reporting ratio (PRR), the multi-item Gamma-Poisson Shrinker (MGPS), and the Bayesian Confidence Propagation Neural Network (BCPNN) (Northardt, 2024).
These detection methods generally have high false positive rates (Rothman et al., 2004). In addition, these methods utilize only a limited subset of variables from the self-reporting system, leading to insufficient data utilization (Jiao et al., 2024). Studies have demonstrated that incorporating additional information, such as the timing of ADR occurrences, can enhance detection specificity and identify signals undetectable by traditional methods (Jiao et al., 2024; Liu et al., 2019). Furthermore, traditional approaches require direct monitoring and organization of relevant information from large datasets, which demands significant time and human resources (Yamamoto et al., 2023).
The rapid development of deep learning provides a good solution to these shortcomings (Lee et al., 2024). The time-series processing model based on deep learning can identify and process variables related to occurrence timing to improve the monitoring and early warning capability of ADR signals (Gao et al., 2022; Munkhdalai et al., 2018). Research (Sarker and Gonzalez, 2015) indicate that using advanced natural language processing techniques for generating information rich features from text can significantly improve classification accuracies. Deep learning models can also incorporate more data and variables to maximize the use of information from the reporting system without requiring extensive manual effort. The application of deep learning models in healthcare highlights their public health significance (Al Meslamani, 2023).
Materials and methods
Data sources
ADR reports were collected by the Center for ADR Monitoring of Guangdong from 2018 to 2019. The 2018 dataset contained 143,406 reports, and the 2019 dataset contained 137,708 reports. Positive cases were manually validated by ADR experts through on-site investigations.
In 2018 dataset, 283 positive cases (0.197% of the total reports) were confirmed, while 165 positive cases (0.120% of the total reports) were confirmed in 2019 dataset. Negative cases for model training were selected using the PRR, ROR, BCPNN, and MGPS methods. The results of these methods were ranked by descending p-values. Negative cases were sampled at a ratio of 3–6 times the number of positive cases. Ultimately, 1,031 negative cases were selected from the 2018 dataset and 897 from the 2019 dataset. Data from 2018 to 2019 were merged into a combined dataset.
Data preprocessing
Each signal in the dataset initially contained 72 feature variables. Variables not associated with ADR signals, recurring variables, and those with a missing data rate exceeding 20% were excluded (details of excluded variables are provided in Supplementary Table S1). After exclusions, 48 variables were retained for model calculations. The classification and inclusion criteria for these variables are summarized in Table 1.
Prior to model application, the retained data underwent preprocessing. The variables included categorical, numerical, and descriptive types. Time-dependent variables were converted to numerical representations, while numerical variables retained their original values. Variables with a missing data rate below 20% or illogical values were filled according to the basic information of institutions and similar entries; unverifiable entries were replaced with “unknown”. Categorical variables were encoded via one-hot rule and the medical terms therein were combined into free text. Special symbols (e.g., punctuation, non-alphanumeric characters) were removed. Positive and negative cases were labeled as 1 and 0, respectively.
Disproportionality analysis
Currently, disproportionality analysis is widely employed in post-marketing drug safety surveillance. This method assumes that if a drug is causally linked to specific adverse events (AEs), the observed frequency of the drug-AE combination will exceed its expected frequency, leading to an imbalance (Gosho et al., 2017). A potential safety signal is identified when this imbalance surpasses a predefined threshold.
Disproportionality analysis methods are categorized into frequency-based and Bayesian approaches (Northardt, 2024; Jiao et al., 2024). Frequency-based methods include the ROR and PRR. The ROR calculates the ratio of the observed frequency of the target drug-AE combination to the frequency of other drug-AE combinations. Similarly, the PRR compares the proportion of the target drug-AE combination with that of other drug-AE combinations. Bayesian methods include the BCPNN and MGPS. The BCPNN evaluates the strength of association between drugs and AEs using the information component (IC) and its confidence interval. In contrast, the MGPS employs the empirical Bayes geometric mean (EBGM) as its primary measure.
In this study, the ROR, PRR, BCPNN, and MGPS methods were applied to the dataset to identify ADR signals. The signal detection criteria for each method were defined as follows:
Methods based on feature variables
Logistic regression (LR) is a statistical method used to estimate the probability of a binary outcome. It assumes a linear relationship between predictor variables (independent variables) and the log-odds of the target variable. The model converts these log-odds into probabilities via the logistic (sigmoid) function. Parameters are estimated using maximum likelihood estimation, which identifies coefficients that maximize the likelihood of the observed data.
Random Forest (RF) is an ensemble technique for classification and regression tasks. It constructs multiple decision trees during training, with outputs determined by majority voting (classification) or mean prediction (regression). To enhance diversity and reduce overfitting, the algorithm randomly selects subsets of data and features for each tree. At each split, a random subset of features is evaluated, and the optimal split is chosen using metrics such as Gini impurity or mean squared error reduction. Trees are grown fully without pruning to capture complex patterns. Predictions are aggregated across trees, improving accuracy and stability.
The k-nearest neighbors (KNN) algorithm is a straightforward yet effective method for classification in machine learning. It classifies new data points by comparing them to training instances using distance metrics (e.g., Euclidean distance). For an unseen instance, distances to all training points are computed, and the k nearest neighbors are identified (k is user-defined). The class label is assigned via majority vote or weighted vote, where closer neighbors have greater influence.
The Multilayer Perceptron (MLP), a feedforward neural network, is widely used for classification and regression. It comprises an input layer, hidden layers, and an output layer. Neurons in hidden and output layers apply activation functions to weighted inputs. During training, weights and biases are initialized randomly, and input data is processed through the network. Loss (e.g., cross-entropy for classification, mean squared error for regression) is calculated between predictions and targets. The backpropagation algorithm with gradient descent optimizes weights and biases iteratively to minimize loss. Once trained, the network generates predictions (class labels) by processing new data through its network.
Model based on time-series and text processing
First, all feature variables for each entry were concatenated and converted into long free text as model input. The ‘occurrence time of adverse reactions’ was standardized to the YYYY-MM-DD format and incorporated as a time-series variable.
The Long Short-Term Memory (LSTM) network, a specialized recurrent neural network (RNN), addresses the gradient vanishing issue inherent in traditional RNNs (Yu et al., 2019). The LSTM architecture comprises memory cells regulated by input gates, forget gates, and output gates. These gates enable persistent information flow across time steps, allowing hidden states to retain long-term dependencies (Li and Yu, 2020). LSTMs are widely adopted for text and sequence modeling due to their capacity to capture long-range semantic patterns (Liu et al., 2022). In this study, LSTM model was employed to process ADR reports containing free-text narratives, medical terminology (Jagannatha and Yu, 2016), and time-dependent features (Santiso et al., 2019).
The LSTM equations are defined as:
Where
The dataset was partitioned into training, testing, and validation sets in a 7:2:1 ratio, with stratified sampling applied to maintain the balance between positive and negative entries across all subsets. Technical details of the training and hyperparameter tuning processes for the all models are provided in Supplementary Appendix S2. All model training processes were conducted on the Python 3.8 platform using version-compatible software packages.
Feature importance
The chi-square value quantifies the discrepancy between observed and expected frequencies. A higher chi-square value for a feature variable indicates a greater discrepancy, reflecting stronger association between the variable and the outcome (Gosho et al., 2017). We used the chi-square value as a measure of feature importance to the outcome.
Results
Key results of the models
The LSTM model integrating time-series and text processing achieved a sensitivity of 95.16% and an F1-score of 0.9706, significantly outperforming comparative models in overall performance metrics. Among feature-based models, the LR model demonstrated the highest sensitivity (86.83%) and F1-score (0.9063), while the MLP exhibited the lowest sensitivity (54.57%) and F1-score (0.5494). Detailed performance metrics for all models are summarized in Table 2.
The receiver operating characteristic (ROC) curves and corresponding area under the curve (AUC) values for all models are shown in Figure 1. The LSTM model achieved the largest AUC (0.98), whereas the MLP model exhibited the lowest AUC (0.59).
Results of disproportionality analysis
Among the disproportionality analysis methods, BCPNN achieved the highest sensitivity (73.80%), while MGPS showed the lowest sensitivity (44.92%). MGPS exhibited the highest specificity (84.82%), whereas PRR had the lowest specificity (58.46%). In terms of the composite metric Youden’s Index (YI), BCPNN yielded the highest value (0.3464), and PRR the lowest value (0.2691). In contrast, the LSTM model demonstrated a specificity of 96.31% with a notably low false positive rate (3.69%), resulting in a YI of 0.9147. Detailed performance metrics for these methods are summarized in Table 3.
Feature importance score
The top 15 variables with the highest feature importance scores are shown in Figure 2. The highest-scoring variable was “Reasons for taking medication,” followed by “Serious ADR scenario 4,” “Adverse reaction analysis 5,” and “Dosage.” Here, “Serious ADR scenario 4” refers to whether the adverse reaction caused permanent impairment of physiological functions, while “Adverse reaction analysis five” indicates whether the reaction resolved or diminished after drug discontinuation or dose reduction.
Discussion
This study explores the effectiveness of several different models for ADR signal detection. The results show that the LSTM model based on free text achieves the best predictive performance among the models evaluated. The LSTM model achieved superior predictive performance (sensitivity: 95.16%, F1-score: 0.9706) compared to traditional methods such as ROR, PRR, BCPNN, and MGPS, which are widely used in current monitoring systems but exhibit limitations in variable selection, bias control, and handling extreme values. While traditional methods remain useful for preliminary signal screening (as applied to negative data selection in this study), the LR method also performed robustly, likely due to its alignment with the proportional imbalance assumption inherent in disproportionality analyses (Sommer et al., 2024). However, other models (RF, KNN, MLP) showed suboptimal results, potentially due to class imbalance, high dimensionality, or overfitting risks (Carracedo-Reboredo et al., 2021; Deimazar and Sheikhtaheri, 2023). The This study also encourages us that implementation of innovative methods is essential to encourage ADR reporting (Joaquim et al., 2023).
The analysis highlights the critical role of specific variables, such as ‘Reasons for taking medication’, ‘Serious ADR scenario 4’, and ‘Adverse reaction analysis 5’, in signal detection. These findings underscore the importance of enhancing data quality through standardized reporting protocols and improved analytical capabilities at monitoring institutions. For instance, logical inconsistencies, missing data, and non-standardized entries—though partially addressed via technical imputation and variable exclusion—may still introduce bias, emphasizing the need for systematic data curation (Liu and Zhang, 2019). When reporting, some systems lack standardization, or data entry personnels need to fill in descriptive or explanatory language. Furthermore, class imbalance (predominance of negative samples) likely contributed to reduced sensitivity, as models tended to favor majority-class predictions (Arku et al., 2022).
Notably, the LSTM model’s insensitivity to sparse or irregular text inputs—a common issue in ADR reports—positions it as a scalable solution for processing free-text narratives (Edrees et al., 2022), especially with advancements in natural language processing. Nevertheless, several limitations must be acknowledged. First, the model was trained on data from a single province in China, limiting its generalizability to other regions or populations with divergent reporting practices or demographic profiles. Second, negative samples were selected using traditional disproportionality methods, which may exclude novel or atypical ADR patterns, introducing potential selection bias. Third, while technical imputation mitigated missing data, residual heterogeneity (e.g., inconsistent causality assessments) could affect model robustness (Yan et al., 2022).
To address these challenges, future work should prioritize multicenter validation across diverse healthcare systems, integration of active learning to capture atypical cases, and collaborative data sharing initiatives to enrich feature representation (Jiao et al., 2024). Specifically, incorporating data from diverse healthcare systems (including those within the same country and internationally) could assess the model’s generalizability to varied demographic and reporting practices, as demonstrated in recent multi-center pharmacovigilance studies (Hu et al., 2022; Saseedharan et al., 2024). Additionally, standardizing ADR reporting frameworks and raising public awareness of proactive reporting could further enhance data quality and model utility in public health (Liu and Zhang, 2019; Goldstein et al., 2013). The future path in drug safety solely depends on proactive pharmacovigilance approaches carried out by all stakeholders, where patients play a vital role in ADR reporting (Joaquim et al., 2023).
Conclusion
This study demonstrates that deep learning models, particularly the LSTM network, significantly enhance adverse drug reaction (ADR) signal detection compared to traditional statistical and machine learning methods. Key variables emerged as pivotal predictors, underscoring the value of structured data fields and standardized reporting. These findings highlight the transformative potential of integrating natural language processing and deep learning into pharmacovigilance systems to improve drug safety monitoring.
Data availability statement
The raw data supporting the conclusions of this article will be made available by the authors upon request. Requests to access these datasets should be directed to Mengqi Cao, MTg4MTEzMzIwNTlAMTYzLmNvbQ==.
Author contributions
MC: Formal Analysis, Methodology, Software, Visualization, Writing – original draft. YC: Conceptualization, Formal Analysis, Writing – original draft. JY: Data curation, Writing – original draft. YY: Conceptualization, Supervision, Writing – review and editing. RM: Conceptualization, Supervision, Writing – review and editing. JJ: Conceptualization, Project administration, Supervision, Writing – review and editing.
Funding
The author(s) declare that financial support was received for the research and/or publication of this article. Thanks to the Center for ADR Monitoring of Guangdong for the support of data collection.
Conflict of interest
The authors declare that the research was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest.
Generative AI statement
The author(s) declare that no Generative AI was used in the creation of this manuscript.
Publisher’s note
All claims expressed in this article are solely those of the authors and do not necessarily represent those of their affiliated organizations, or those of the publisher, the editors and the reviewers. Any product that may be evaluated in this article, or claim that may be made by its manufacturer, is not guaranteed or endorsed by the publisher.
Supplementary material
The Supplementary Material for this article can be found online at: https://www.frontiersin.org/articles/10.3389/fphar.2025.1554650/full#supplementary-material
References
Al Meslamani, A. Z. (2023). Underreporting of adverse drug events: a look into the extent, causes, and potential solutions. Expert Opin. Drug Saf. 22 (5), 351–354. doi:10.1080/14740338.2023.2224558
Arku, D., Yousef, C., and Abraham, I. (2022). Changing paradigms in detecting rare adverse drug reactions: from disproportionality analysis, old and new, to machine learning. Expert Opin. Drug Saf. 21 (10), 1235–1238. doi:10.1080/14740338.2022.2131770
Carracedo-Reboredo, P., Liñares-Blanco, J., Rodríguez-Fernández, N., Cedrón, F., Novoa, F. J., Carballal, A., et al. (2021). A review on machine learning approaches and trends in drug discovery. Comput. Struct. Biotechnol. J. 19, 4538–4558. doi:10.1016/j.csbj.2021.08.011
Deimazar, G., and Sheikhtaheri, A. (2023). Machine learning models to detect and predict patient safety events using electronic health records: a systematic review. Int. J. Med. Inf. 180, 105246. doi:10.1016/j.ijmedinf.2023.105246
Edrees, H., Song, W., Syrowatka, A., Simona, A., Amato, M. G., and Bates, D. W. (2022). Intelligent telehealth in pharmacovigilance: a future perspective. Drug Saf. 45 (5), 449–458. doi:10.1007/s40264-022-01172-5
Edwards, I. R., and Aronson, J. K. (2000). Adverse drug reactions: definitions, diagnosis, and management. Lancet 356 (9237), 1255–1259. doi:10.1016/S0140-6736(00)02799-9
Gao, Z., Yang, Y., Meng, R., Yu, J., and Zhou, L. (2022). Automatic assessment of adverse drug reaction reports with interactive visual exploration. Sci. Rep. 12 (1), 6777. doi:10.1038/s41598-022-10887-5
Goldstein, L. H., Berlin, M., Saliba, W., Elias, M., and Berkovitch, M. (2013). Founding an adverse drug reaction (ADR) network: a method for improving doctors spontaneous ADR reporting in a general hospital. J. Clin. Pharmacol. 53 (11), 1220–1225. doi:10.1002/jcph.149
Gosho, M., Maruo, K., Tada, K., and Hirakawa, A. (2017). Utilization of chi-square statistics for screening adverse drug-drug interactions in spontaneous reporting systems. Eur. J. Clin. Pharmacol. 73 (6), 779–786. doi:10.1007/s00228-017-2233-3
Hou, Y., Li, X., Wu, G., and Ye, X. (2016). National ADR monitoring system in China. Drug Saf. 39 (11), 1043–1051. doi:10.1007/s40264-016-0446-5
Hu, W., Tao, Y., Lu, Y., Gao, S., Wang, X., Li, W., et al. (2022). Knowledge, attitude and practice of hospital pharmacists in Central China towards adverse drug reaction reporting: a multicenter cross-sectional study. Front. Pharmacol. 13, 823944. doi:10.3389/fphar.2022.823944
Jagannatha, A. N., and Yu, H. (2016). “Structured prediction models for RNN based sequence labeling in clinical text,” in Proc Conf Empir Methods Nat Lang Process 2016, 856–865. doi:10.18653/v1/d16-1082
Jiao, X. F., Pu, L., Lan, S., Li, H., Zeng, L., Wang, H., et al. (2024). Adverse drug reaction signal detection methods in spontaneous reporting system: a systematic review. Pharmacoepidemiol Drug Saf. 33 (3), e5768. doi:10.1002/pds.5768
Joaquim, J., Matos, C., Guerra, D., and Mateos-Campos, R. (2023). All-round approaches to increase adverse drug reaction reports: a scoping review. Drugs and Ther. Perspect. 39 (7), 249–261. doi:10.1007/s40267-023-01000-5
Krähenbühl, S. (2015). Adverse drug reaction - definitions, risk factors and pharmacovigilance. Ther. Umsch 72 (11-12), 669–671. doi:10.1024/0040-5930/a000735
Lee, C.-C., Lee, S., Song, M.-H., Kim, J.-Y., and Lee, S. (2024). Bidirectional long short-term memory–based detection of adverse drug reaction posts using Korean social networking services data: deep learning approaches. JMIR Med. Inf. 12, e45289. doi:10.2196/45289
Li, F., and Yu, H. (2020). ICD coding from clinical text using multi-filter residual convolutional neural network. Proc. AAAI Conf. Artif. Intell. 34 (05), 8180–8187. doi:10.1609/aaai.v34i05.6331
Liu, F., Jagannatha, A., and Yu, H. (2019). Towards drug safety surveillance and pharmacovigilance: current progress in detecting medication and adverse drug events from electronic health records. Drug Saf. 42 (1), 95–97. doi:10.1007/s40264-018-0766-8
Liu, R., and Zhang, P. (2019). Towards early detection of adverse drug reactions: combining pre-clinical drug structures and post-market safety reports. BMC Med. Inf. Decis. Mak. 19 (1), 279. doi:10.1186/s12911-019-0999-1
Liu, S., Wang, X., Xiang, Y., Xu, H., Wang, H., and Tang, B. (2022). Multi-channel fusion LSTM for medical event prediction using EHRs. J. Biomed. Inf. 127, 104011. doi:10.1016/j.jbi.2022.104011
Lopez-Gonzalez, E., Herdeiro, M. T., and Figueiras, A. (2009). Determinants of under-reporting of adverse drug reactions: a systematic review. Drug Saf. 32 (1), 19–31. doi:10.2165/00002018-200932010-00002
Margraff, F., and Bertram, D. (2014). Adverse drug reaction reporting by patients: an overview of fifty countries. Drug Saf. 37 (6), 409–419. doi:10.1007/s40264-014-0162-y
Munkhdalai, T., Liu, F., and Yu, H. (2018). Clinical relation extraction toward drug safety surveillance using electronic health record narratives: classical learning versus deep learning. JMIR Public Health Surveillance 4 (2), e29. doi:10.2196/publichealth.9361
Nguyen, D. A., Nguyen, C. H., and Mamitsuka, H. (2021). A survey on adverse drug reaction studies: data, tasks and machine learning methods. Briefings Bioinforma. 22 (1), 164–177. doi:10.1093/bib/bbz140
Northardt, T. (2024). A Bayesian generating function approach to adverse drug reaction screening. PLoS One 19 (1), e0297189. doi:10.1371/journal.pone.0297189
Rothman, K. J., Lanes, S., and Sacks, S. T. (2004). The reporting odds ratio and its advantages over the proportional reporting ratio. Pharmacoepidemiol Drug Saf. 13 (8), 519–523. doi:10.1002/pds.1001
Santiso, S., Perez, A., and Casillas, A. (2019). Exploring joint AB-LSTM with embedded lemmas for adverse drug reaction discovery. IEEE J. Biomed. Health Inf. 23 (5), 2148–2155. doi:10.1109/JBHI.2018.2879744
Sarker, A., and Gonzalez, G. (2015). Portable automatic text classification for adverse drug reaction detection via multi-corpus training. J. Biomed. Inf. 53, 196–207. doi:10.1016/j.jbi.2014.11.002
Saseedharan, S., Zirpe, K., Mehta, Y., Dubey, D., Sutar, A., Debnath, K., et al. (2024). Efficacy and safety of oral and IV levonadifloxacin therapy in management of bacterial infections: findings of a prospective, observational, multi-center, post-marketing surveillance study. Cureus 16 (2), e55178. doi:10.7759/cureus.55178
Sommer, J., Viviani, R., Wozniak, J., Stingl, J. C., and Just, K. S. (2024). Dealing with adverse drug reactions in the context of polypharmacy using regression models. Sci. Rep. 14 (1), 27355. doi:10.1038/s41598-024-78474-4
Yamamoto, H., Kayanuma, G., Nagashima, T., Toda, C., Nagayasu, K., and Kaneko, S. (2023). Early detection of adverse drug reaction signals by association rule mining using large-scale administrative claims data. Drug Saf. 46 (4), 371–389. doi:10.1007/s40264-023-01278-4
Yan, J., Xiong, X., Shen, J., and Huang, T. (2022). Adverse drug reaction reporting quality among different health professionals and the contribution of clinical pharmacists: a pilot study. J. Clin. Pharm. Ther. 47 (11), 1768–1774. doi:10.1111/jcpt.13731
Keywords: adverse drug reaction, signal detection, free text, the long short-term memory model, feature importance
Citation: Cao M, Chi Y, Yu J, Yang Y, Meng R and Jia J (2025) Adverse drug reaction signal detection via the long short-term memory model. Front. Pharmacol. 16:1554650. doi: 10.3389/fphar.2025.1554650
Received: 02 January 2025; Accepted: 05 June 2025;
Published: 23 June 2025.
Edited by:
Adina Frum, Lucian Blaga University of Sibiu, RomaniaReviewed by:
Bin Zhao, Xiamen University, ChinaJoão José Joaquim, Coimbra School of Health Technology, Portugal
Copyright © 2025 Cao, Chi, Yu, Yang, Meng and Jia. This is an open-access article distributed under the terms of the Creative Commons Attribution License (CC BY). The use, distribution or reproduction in other forums is permitted, provided the original author(s) and the copyright owner(s) are credited and that the original publication in this journal is cited, in accordance with accepted academic practice. No use, distribution or reproduction is permitted which does not comply with these terms.
*Correspondence: Jinzhu Jia, anpqaWFAcGt1LmVkdS5jbg==