Skip to main content

Improve the efficiency and accuracy of ophthalmologists’ clinical decision-making based on AI technology

Abstract

Background

As global aging intensifies, the prevalence of ocular fundus diseases continues to rise. In China, the tense doctor-patient ratio poses numerous challenges for the early diagnosis and treatment of ocular fundus diseases. To reduce the high risk of missed or misdiagnosed cases, avoid irreversible visual impairment for patients, and ensure good visual prognosis for patients with ocular fundus diseases, it is particularly important to enhance the growth and diagnostic capabilities of junior doctors. This study aims to leverage the value of electronic medical record data to developing a diagnostic intelligent decision support platform. This platform aims to assist junior doctors in diagnosing ocular fundus diseases quickly and accurately, expedite their professional growth, and prevent delays in patient treatment. An empirical evaluation will assess the platform’s effectiveness in enhancing doctors’ diagnostic efficiency and accuracy.

Methods

In this study, eight Chinese Named Entity Recognition (NER) models were compared, and the SoftLexicon-Glove-Word2vec model, achieving a high F1 score of 93.02%, was selected as the optimal recognition tool. This model was then used to extract key information from electronic medical records (EMRs) and generate feature variables based on diagnostic rule templates. Subsequently, an XGBoost algorithm was employed to construct an intelligent decision support platform for diagnosing ocular fundus diseases. The effectiveness of the platform in improving diagnostic efficiency and accuracy was evaluated through a controlled experiment comparing experienced and junior doctors.

Results

The use of the diagnostic intelligent decision support platform resulted in significant improvements in both diagnostic efficiency and accuracy for both experienced and junior doctors (P < 0.05). Notably, the gap in diagnostic speed and precision between junior doctors and experienced doctors narrowed considerably when the platform was used. Although the platform also provided some benefits to experienced doctors, the improvement was less pronounced compared to junior doctors.

Conclusion

The diagnostic intelligent decision support platform established in this study, based on the XGBoost algorithm and NER, effectively enhances the diagnostic efficiency and accuracy of junior doctors in ocular fundus diseases. This has significant implications for optimizing clinical diagnosis and treatment.

Peer Review reports

Introduction

As the aging of the population continues to increase, the incidence of eye diseases is also rising year by year. Common retinal diseases include macular depression, vitreous hemorrhage, macular hole, retinal detachment, and diabetic retinopathy. Among them, macular diseases such as epiretinal membrane (ERM) and macular hole are one of the important causes of visual impairment, causing visual impairment or even blindness in developed and developing countries [1]. Early diagnosis and timely treatment are crucial for achieving the best visual outcomes [2,3,4]. Therefore, it is very necessary to detect and follow up in time for early retinal disease.

In the clinical diagnosis and treatment of ocular fundus diseases, the ability to make rapid and accurate diagnoses is crucial. Missed or misdiagnosed cases during this process can not only cause irreversible damage to patients but also severely test the quality of medical services. In China, due to the exceptionally low doctor-patient ratio, this challenge is particularly prominent for ophthalmologists. They must undertake a significant amount of analysis and judgment day after day, testing not only their professional knowledge but also their work efficiency. Against this backdrop, improving the speed and accuracy of diagnoses can not only improve patient outcomes but also significantly enhance overall medical quality [5].

Clinical Decision Support Systems (CDSS) are computer programs designed to assist in the diagnosis of diseases, and their importance has become increasingly prominent with the growth of applications of mathematical sciences, engineering principles, and computer technology in the medical field. Especially in the diagnosis and treatment of ocular fundus lesions, the use of artificial intelligence (AI) applications such as optical coherence tomography (OCT) and intelligent image processing techniques has become a key tool for effectively improving diagnostic accuracy and efficiency [6,7,8,9,10]. For example, the CDSS developed by Vellakani S et al. based on OCT technology can assist ophthalmologists in more accurately detecting and classifying eye diseases [11], while the cloud-based CDSS developed by Tanya S M et al. facilitates remote diagnosis and treatment, demonstrating the wide range of applications and potential of CDSS in ophthalmology [5]. However, despite significant progress in AI technology for image analysis, the value of large volumes of medical record text data is also worth exploring. Fully utilizing the textual information from previous cases as a resource for auxiliary diagnosis to explore its feasibility in improving the comprehensiveness, accuracy, and efficiency of early diagnosis of ocular fundus diseases [12,13,14].

In recent years, traditional paper medical records have been largely replaced by electronic medical records (EMR), which contain basic information about patients’ diseases, such as chief complaints, current medical history, past medical history, and examination results [15]. However, in the early stages of EMR development, due to the lack of unified standards and norms, a large amount of unstructured free text was used, hindering the effective use of EMR data [16, 17]. The same issue exists in ophthalmic EMR, which contains a significant amount of specialized ophthalmic vocabulary with detailed and specific descriptions of the eye. Therefore, when recognizing EMR, it is necessary to consider both general descriptive entities in the medical records, such as body parts, symptoms, signs, and examination results, as well as a large number of accurate ophthalmic terminologies, such as macula, retina, visual acuity, and axial length. We attempted to utilize artificial intelligence Named Entity Recognition (NER) technology to effectively extract EMR data rich in ophthalmic terminologies.

The Extreme Gradient Boosting (XGBoost) algorithm is an ensemble classifier based on gradient boosting trees proposed by Tianqi Chen [18]. It has good fitting ability for data and can directly control the degree of overfitting by incorporating regularization terms into the objective function. Due to its open-source code, it has important applications in many machine learning and data mining tasks [19,20,21,22]. We used this algorithm to construct an ophthalmic diagnostic intelligent decision support platform.

In this study, the structured processing of free text is the first and crucial step in disease diagnosis decision-making. This article provides a detailed introduction to the NER model selection experiment. Based on the optimized model, we constructed an ophthalmic diagnostic intelligent decision support platform using the XGBoost machine learning algorithm and explored its feasibility in improving the efficiency and accuracy of clinical ophthalmologists in diagnosing ocular fundus diseases.

Materials and methods

System development technical roadmap

The construction of the ophthalmic diagnostic intelligent decision support platform required the support of AI technology, first of which was Natural Language Processing (NLP) technology. This involved training NER models using historical medical records, selecting the optimal model, and extracting important diagnostic information from the patient’s EMR. Then, according to the diagnostic rule template, various disease feature vectors were generated, and the XGBoost algorithm of machine learning technology was used to infer the optimal disease diagnosis. The input of XGBoost is the vector of key diagnostic feature words extracted from ophthalmic EMRs, and the output is the recommended ophthalmic disease name for diagnosis. The specific technical roadmap was shown in Fig. 1.

Fig. 1
figure 1

Technology roadmap

Determination of the best NER model

There are many models related to NER, including commonly used models such as Bidirectional Encoder Representations from Transformers (BERT) [23], Long Short Term Memory (LSTM) [24], and conditional random field (CRF) [25]. To determine the most suitable NER model for ophthalmic electronic medical records, we use the SoftLexicon model proposed by ALC 2020 [26] as the text classification model. This model incorporates dictionary information at the Chinese character level NER model, resulting in good NER performance. By combining different word vector models for effect comparison, we aim to determine the best named entity recognition model for ophthalmic electronic medical record recognition scenarios.

The sample and test set data came from the EMR desensitization database of a tertiary grade-A eye hospital in Zhejiang Province. The time period was from January 2022 to December 2022. Since deep learning-based methods required high-quality labeled data, after the EMRs were cleaned, they were labeled by a professional team of ophthalmic clinical doctors, and the labeled tags were set according to clinically common diagnostic and treatment basis, including chief complaints, history of present illness, past history, systemic disease history, clinical examinations (specialized and supplementary examination) and operative procedures etc. The annotated tags were shown in Table 1. The experiment used 2280 standardized EMRs annotated by a team of ophthalmologists, with 1824 randomly selected as the training set and the remaining 456 as the test set.

Table 1 Label list

In model selection experiment, the Chinese classical NER BERT-BiLSTM-CRF model was used as the baseline model [27, 28], and the SoftLexicon model combined with the word vector Glove, Word2vec and FastText was used as the test model [29, 30]. The evaluation metrics were Precision, Recall, and F1 score, F1 is the harmonic mean of Precision and Recall, which is used to measure the accuracy and recall of the model in general. The formula for calculation is:

$$\text{F}1=2\text{*}\frac{\text{P}\text{r}\text{e}\text{c}\text{i}\text{s}\text{i}\text{o}\text{n}\text{*}\text{R}\text{e}\text{c}\text{a}\text{l}\text{l}}{\text{P}\text{r}\text{e}\text{c}\text{i}\text{s}\text{i}\text{o}\text{n}+\text{R}\text{e}\text{c}\text{a}\text{l}\text{l}}$$
(1)

After comparing different word vectors, the optimal results are shown in Table 2. The computational power and performance of the optimal model and the baseline model were evaluated by the time and GPU days consumed during a single round of training.

Table 2 Experimental results of different models

The SoftLexicon-Love-Word2vec model with the highest F1 score had a shorter average training times in different batches than the baseline model BERT-BiLSTM-CRF. When inferring 1000 text samples, the SoftLexicon-Glove-Word2vec model took 7.94 s, which was 7.69% faster than the baseline model’s 8.55 s. The search time for the SoftLexicon-Glove-Word2vec model on a 2080Ti GPU was 0.21 GPU days, which was shorter than the baseline model’s 0.27 GPU days on a 2080Ti GPU.

Based on the above experimental results, the SoftLexicon-Glove-Word2vec model was the best model for this study. We used this model to build an ophthalmic diagnostic intelligent decision support platform for fundus diseases.

Development of the diagnostic intelligent decision support platform

Through research and communication with clinical ophthalmologists and based on medical diagnosis practices, we have found that the diagnosis methods for ophthalmology diseases in EMRs generally have distinct distribution characteristics of key feature words. For example, for vitreous hemorrhage, the special examination results will clearly appear with a description containing the term “hemorrhage”. For refractive errors, the chief complaint generally appears with the term “blurred vision” and the supplementary examination results show an uncorrected vision less than 1.0. The diagnostic rule templates for ocular fundus diseases are constructed by analyzing the patterns and relationships among various features extracted from EMRs, such as patient demographics, chief complaint, medical history, and examination results. By identifying significant correlations between these features and specific ocular fundus diseases, we can create rules for disease diagnosis. These templates provide junior doctors with a structured approach to diagnosing ocular fundus diseases.

After extracting feature information from free text EMRs. Based on the diagnostic rule template, generate feature vectors, and then use XGBoost classifier to infer the corresponding disease diagnosis. Using the training set and test set of the above samples, the predictive performance of the XGBoost classifier on the test set is shown in Table 3.

Table 3 Prediction results of different diseases in the XGBoost model

By using NER and AI technology to structurally process EMRs, we could extract and utilize feature vectors. To improve the efficiency and accuracy of clinical ophthalmologists in diagnosing retinal diseases, we developed an ophthalmic diagnostic intelligent decision support platform in combination with the XGBoost algorithm. Figure 2 shows the functional interface of ophthalmic diagnostic intelligent decision support platform and the scenarios of its trial use in the clinic room. In Fig. 2.A, the left side is the input area for electronic medical record information, while the right side is the result display area. After clicking the “Submit” button, the clinical findings column on the right presented the meaningful key medical terms identified by NER for assist diagnosis. The patient’s history of ophthalmic surgery and chronic disease names could also be extracted simultaneously. The numerical feature column displays the ophthalmic examination numerical features related to the EMR. The recommended diagnosis column displays the recommended diagnosis disease names obtained through NER of the key medical terms in the EMR. Clinical doctors could use the recommended diagnosis to better perform diagnosis and treatment work, reduce missed diagnosis and misdiagnosis, and save patients’ visiting time.

Fig. 2
figure 2

(A): Diagnostic inference interface. (B): The scene of trial use in the clinic room (Consent for publication had been obtained from the doctor and patient in the picture)

Application effect

Evaluation metrics

We selected 60 EMRs of the five common eye diseases in the fundus in 2023, including retinal detachment, epiretinal membrane, vitreous hemorrhage, macular hole, and diabetic retinopathy. They were divided into two groups: the ophthalmic diagnostic intelligent decision support platform group and the non-diagnostic decision support group, with 30 cases in each group. The characteristics of population composition and the distribution of disease types are shown in Table 4, Help = 0 represented not using the diagnostic decision support platform, and Help = 1 represented using the diagnostic decision support platform. All 60 EMRs underwent strict three-level clinical quality control, with the first level completed by the clinical department, the second level completed by chief physicians and associate chief physicians, and the third level completed by the department heads, functional department heads, and chief physicians. This ensures the data quality and the accuracy of the disease diagnosis for each EMR.

Table 4 Basic information of EMR and disease composition

Invited 6 clinical ophthalmologists, divided into two groups based on whether their clinical experience is greater than or equal to 10 years. Those with greater than or equal to 10 years of experience were in the senior doctor group, while those with less than 10 years of experience were in the junior doctor group, with 3 doctors in each group. They completed diagnostic experiments on different 30 EMRs of common clinical fundus diseases under two conditions: not using the ophthalmic diagnostic intelligent decision support platform, and using the ophthalmic diagnostic intelligent decision support platform. The time used for diagnosis and the name of the disease were recorded. The diagnosis time was defined as the time from when the EMR appears on the screen until the doctor selected the diagnosis and clicked the “save” button. The experimental program would automatically record the diagnosis time. The disease diagnosis in the EMR of third-level quality control was used as the gold standard for this experiment. All doctors participating in the experiment were considered to have hit the target if at least one of their three diagnoses was consistent with the gold standard, otherwise considered a miss. Using the R (version 4.1.0; R Studio 2021.09.0) statistical software for analysis and figures drawing, survival analysis method was used to analyze whether there were differences in diagnosis time and diagnostic accuracy of different doctor groups with and without using the ophthalmic diagnostic intelligent decision support platform. It was considered statistically significant difference when p < 0.05.

Evaluation results

The survival analysis statistical results were shown in Table 5. In the table, Group = 0 represented the junior doctor group, and Group = 1 represented the senior doctor group. Help = 0 represented not using the ophthalmic diagnostic intelligent decision support platform, and Help = 1 represented using the ophthalmic diagnostic intelligent decision support platform. Figure 3 shows the survival analysis curve under different conditions.

Table 5 Statistical analysis result table
Fig. 3
figure 3

Survival analysis chart

Result analysis and discussion

Clinical word, including chief complaint, current medical history, past history, systemic medical history, clinical examination, and imaging examination reports provided by examination doctors, is an important factor in the diagnosis of various components of electronic medical records. Based on the above clinical word, the ophthalmic diagnostic intelligent decision support platform has made diagnostic predictions. In the diagnostic test of five common fundus diseases, including retinal detachment, epiretinal membrane, vitreous hemorrhage, macular hole and diabetes retinopathy, the results and analysis are as follows.

Based on log-rank test, there was a statistically significant difference (p < 0.0001) in the accuracy of diagnosis of the five common fundus diseases between junior doctors when using or not using the aided diagnosis platform, with an improvement in accuracy, and the median time was 46 s, which was 12 s less than not using the platform. This indicated that the ophthalmic diagnostic intelligent decision support platform significantly improves the accuracy and speed of diagnostic decisions made by junior doctors.

Based on log-rank test, there was a statistically significant difference (p = 0.02) in the accuracy of diagnosis of the five common fundus diseases between senior doctors when using or not using the ophthalmic diagnostic intelligent decision support platform, with an improvement in accuracy, and the median time was 29 s, which was 8 s less than not using the platform. This indicated that the ophthalmic diagnostic intelligent decision support platform also had an auxiliary effect on the diagnostic decisions of senior doctors, but the effect was not as good as for junior doctors. This may have been due to the fact that the experience level of senior doctors was generally higher than that of junior doctors, thereby reducing the effectiveness of the ophthalmic diagnostic intelligent decision support platform.

There was a statistically significant difference (p < 0.0001) in the accuracy and efficiency of diagnosis between junior doctors and senior doctors when not using the ophthalmic diagnostic intelligent decision support platform, and the median time was 58 s and 37 s respectively. The chi-square test value was 48.7. This further indicated that senior doctors had significant advantages in terms of diagnostic speed and accuracy compared to junior doctors.

There was a statistically significant difference (p < 0.0001) in the accuracy and efficiency of diagnosis between junior doctors and senior doctors when using the ophthalmic diagnostic intelligent decision support platform, and the median time was 46 s and 29 s respectively. The chi-square test value was 20.4.

There was no statistically significant difference (p = 0.06) in the accuracy of diagnosis of common fundus diseases between junior doctors using the ophthalmic diagnostic intelligent decision support platform and senior doctors not using the platform, and the median time was 46 s and 37 s respectively. In combination with 3.2, it was shown that the gap in diagnostic speed and accuracy between junior doctors and senior doctors had decreased to some extent after the use of the ophthalmic diagnostic intelligent decision support platform by junior doctors.

NLP had a wide range of applications and is an interdisciplinary field that includes computer science, AI, and linguistics [31,32,33]. It had driven the development of AI text processing technologies, unleashing the value of non-structured text that had been accumulated for many years.

In this study, the SoftLexicon model was used to fuse different word vectors. The results showed The SoftLexicon-Glove-Word2vec model, which integrated Glove and Word2vec word vectors, obtained the best experimental results with an F1 score of 93.02. The SoftLexicon-Glove-Word2vec, SoftLexicon-FastText-Word2vec, and SoftLexicon-FastText-Glove models that fused two word vectors concatenate character, word, and bigram text feature vectors. They considered both global and local information, making the feature information more abundant, and the overall evaluation indicators were higher than those of the models that fused a single word vector. The SoftLexicon-Glove-FastText-Word2vec model had a slightly lower F1 score than SoftLexicon-Glove-Word2vec, possibly due to the overabundance of fused features, which slowed down model training and inference speed, causing model overfitting and reducing performance on the test set. However, it still performed better than other models. Models that fuse a single word vector had lower experimental results than models that fuse two or three word vectors. Based on the above analysis, the SoftLexicon-Glove-Word2vec model performed best in NER ophthalmic EMR.

Limitations

This experiment is the first exploration of NER technology in the field of clinical ophthalmology, and only a few commonly used models have been studied. Although the data samples collected were labeled by a professional medical team, they still inevitably contain unmarked or incorrectly labeled entities, which may not be recognized or incorrectly recognized. In addition, the sample collection is single-center data, and ENRs may have template writing habits, which may affect the recognition results of this experiment to some extent. Finally, the XGBoost classifier algorithm may also affect the results of disease diagnosis reasoning.

Conclusions

Based on the comprehensive analysis, this study found that the AI NLP NER technology based on fused medical vocabulary information had a good effect on NER of Chinese EMR information in ophthalmology. By extracting the medical vocabulary features, the eye disease aided diagnosis platform constructed could make disease diagnosis predictions that could improve the clinical decision-making ability of junior doctors, narrow the clinical diagnostic gap with senior doctors, and improve the diagnosis efficiency and accuracy.

Future work

With the development of NLP technology, especially the rise of large models such as ChatGPT, NLP will have a wider and deeper application in the field of ophthalmology. For example, ChatGPT can be used to provide accurate and high-quality information to answer questions about myopia [34]. It can also be used to optimize the writing process from introduction to organization and discussion, thereby accelerating the progress of ophthalmic research [35]. Choi J Y et al. pointed out that in the future, research teams that can effectively utilize large models and are good at fine-tuning them to adapt to their specific scientific research tasks will become the new leaders in the field of combination of ophthalmology and AI [36]. Therefore, in terms of NLP processing, we will consider using other high-performance NLP algorithm models such as Transformers and Attentive to continuously improve the accuracy of medical vocabulary NER, and expand the scope of ophthalmic medical vocabulary. We will promote the diagnostic intelligent decision support platform to practical clinical applications, assisting doctors in diagnosis and treatment activities. At the same time, we will also use NLP to process more unstructured data of medical records, such as ophthalmic imaging reports, pathological reports, and surgical medical records. Through AI technology, we will integrate various medical information data of patients, create a diagnosis and treatment plan decision-making platform, and help ophthalmologists quickly and accurately customize the best personalized diagnosis and treatment plan for different patients.

Data availability

The datasets used and/or analyzed during the current study are available from the corresponding author on reasonable request.

References

  1. Hong T, Mitchell P, Rochtchina E, Fong CS, Chia EM, Wang JJ. Long-term changes in visual acuity in an older population over a 15-year period: the blue mountains eye study. Ophthalmology. 2013;120(10):2091–9. https://doi.org/10.1016/j.ophtha.2013.03.032.

    Article  PubMed  Google Scholar 

  2. Wang W, Lo ACY. Diabetic retinopathy: pathophysiology and treatments. Int J Mol Sci. 2018;19(6):E1816. https://doi.org/10.3390/ijms19061816.

    Article  CAS  Google Scholar 

  3. Li Y, Hu Q, Li X, Hu Y, Wang B, Qin X, et al. The fujian eye cross sectional study: objectives, design, and general characteristics. BMC Ophthalmol. 2022b;22(1):112. https://doi.org/10.1186/s12886-022-02346-6.

    Article  PubMed  PubMed Central  Google Scholar 

  4. Ruiz-Medrano J, Montero JA, Flores-Moreno I, Arias L, García-Layana A, Ruiz-Moreno JM. Myopic maculopathy: current status and proposal for a new classification and grading system (ATN). Prog Retin Eye Res. 2019;69:80–115. https://doi.org/10.1016/j.preteyeres.2018.10.005.

    Article  PubMed  Google Scholar 

  5. Tanya SM, Nguyen AX, Buchanan S, et al. Development of a cloud-based clinical decision support system for ophthalmology triage using decision tree artificial intelligence[J]. Ophthalmol Sci. 2023;3(1):100231.

    Article  PubMed  Google Scholar 

  6. Sandhu HS, Elmogy M, Taher Sharafeldeen A, Elsharkawy M, El-Adawy N, Eltanboly A, et al. Automated diagnosis of diabetic retinopathy using clinical biomarkers, optical coherence tomography, and optical coherence tomography angiography. Am J Ophthalmol. 2020;216:201–6. https://doi.org/10.1016/j.ajo.2020.01.016.

    Article  PubMed  Google Scholar 

  7. Sogawa T, Tabuchi H, Nagasato D, Masumoto H, Ikuno Y, Ohsugi H, et al. Accuracy ofa deep convolutional neural network in the detection ofmyopic macular diseases using swept-source optical coherence tomography. PLoS ONE. 2020;15(4):e0227240. https://doi.org/10.1371/journal.pone.0227240.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  8. Wang L, Wang G, Zhang M, Fan D, Liu X, Guo Y, et al. An intelligent optical coherence tomography-based system for pathological retinal cases identification and urgent referrals. Transl Vis Sci Technol. 2020;9(2):46. https://doi.org/10.1167/tvst.9.2.46.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  9. Singh LK, Khanna M, Singh R. et.al. 2023. Emperor penguin optimization algorithm- and bacterial foraging optimization algorithm-based novel feature selection approach for glaucoma classification from fundus images. Soft Comput. 28, 3 (Feb 2024), 2431–2467. https://doi.org/10.1007/s00500-023-08449-6.

  10. Singh LK, Khanna M, Thawkar S, et al. Nature-inspired computing and machine learning based classification approach for glaucoma in retinal fundus images[J]. Multimedia Tools Appl. 2023;1–49. https://doi.org/10.1007/s11042-023-15175-6.

  11. Vellakani S, Pushbam I. An enhanced OCT image captioning system to assist ophthalmologists in detecting and classifying eye diseases[J]. J X-Ray Sci Technol. 2020;28(5):975–88.

    Google Scholar 

  12. Singh LK, Khanna M. Introduction to artificial intelligence and current trends[M]//Innovations in Artificial Intelligence and Human-Computer Interaction in the Digital Era. Academic Press, 2023: 31–66.

  13. Singh LK, Khanna M, Singh R. Application of artificial intelligence and automation techniques to health service improvements[M]//Applied Intelligence in Human-Computer Interaction. CRC; 2023. pp. 67–81.

  14. Sutton RT, Pincock D, Baumgart DC, et al. An overview of clinical decision support systems: benefits, risks, and strategies for success[J]. NPJ Digit Med. 2020;3(1):17. https://doi.org/10.1038/s41746-020-0221-y.

    Article  PubMed  PubMed Central  Google Scholar 

  15. National Health and Family Planning Commission of the People’s Republic of China. Notice of the Ministry of Health on Printing and Distributing the Basic Standard of Electronic Medical Record (Trial) [EB/OL]. [2020-03-04]. https://www.nhc.gov.cn/.

  16. Wang YS, Wang LW, Rastegar-Mogarad M, et al. Clinical information extraction applications: a literature Review[J]. J Biomed Inform. 2018;77:34–49.

    Article  PubMed  Google Scholar 

  17. Grishman R. Sundheim B.Message. Understanding Conference-6:a brief history: Proceeding soft the 16th conference on Computational linguistics – Volume1[C]. Copenhagen, Denmark, 1996.

  18. Chen T, Guestrin C, XGBoost:. A Scalable Tree Boosting System. Proceedings of the 22nd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining. San Francisco, California, USA: Association for Computing Machinery; 2016:785–794.

  19. Xia Y, Li X, Chen X, Lu C, Yu X. Inferring retinal degeneration-related genes based on Xgboost. Front Mol Biosci. 2022;9:843150. https://doi.org/10.3389/fmolb.2022.843150.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  20. Wang R, Zhang J, Shan B, et al. XGBoost Machine Learning Algorithm for Prediction of Outcome in Aneurysmal Subarachnoid Hemorrhage. Neuropsychiatr Dis Treat. 2022;18659–667. https://doi.org/10.2147/NDT.S349956.

  21. Wang R, Wang L, Zhang J, et al. XGBoost machine learning algorism performed better than regression models in predicting mortality of moderate to severe traumatic brain injury. World Neurosurg. 2022. https://doi.org/10.1016/j.wneu.2022.04.044.

    Article  PubMed  PubMed Central  Google Scholar 

  22. Noh B, Youm C, Goh E, et al. XGBoost based machine learning approach to predict the risk of fall in older adults using gait outcomes. Scientifc Reports[J]. 2021;11(1):12183. https://doi.org/10.1038/s41598-021-91797-w.

    Article  CAS  Google Scholar 

  23. Devlin J et al. Bert: pre-training of deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805 (2018).

  24. Shi X et al. Convolutional LSTM network: a machine learning approach for precipitation nowcasting. Adv Neural Inf Process Syst 28 (2015).

  25. Zheng S et al. Conditional random fields as recurrent neural networks. Proceedings of the IEEE international conference on computer vision. 2015.

  26. Ma RT, Peng ML, Zhang Q et al. Simplify the usage of lexicon in Chinese NER. Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics. Online: ACL, 2020. 5951–5960.

  27. Gao W, Zheng X, Zhao S. Named entity recognition method of Chinese EMR based on BERT-BiLSTM-CRF [J]. Journal of Physics: Conference Series, 2021, 1848(1):012083 (9pp).

  28. Zhang Y, Yang J. Chinese ner using lattice lstm. In Proceedings of the 56th Annual Meeting of the Association for Computational Linguistics, ACL. 2018, pages 1554–1564. Springer BerlinHeidelberg.

  29. Ma RT, Peng ML, Zhang Q et al. Simplify the Usage of Lexicon in Chinese NER[C]//Proc of the 58th Annual Meeting of the Association for Computational Linguistics.2020:5951–5960.

  30. Sui DB, Chen YB, Liu K et al. Leverage Lexical Knowledge for Chinese Named Entity Recognition via Collaborative Graph Network[C]//Proc of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP).2019:3830–3840.

  31. Yoshimasa T. Brain Nerve. 2019;71(1):45–55. https://doi.org/10.11477/mf.1416201215. Deep Learning and Natural Language Processing[J].

  32. Hirschberg J, Manning CD. Advances in Natural Language Processing[J]. Science. 2015;349(6245):261–6. https://doi.org/10.1126/science.aaa8685.

    Article  CAS  PubMed  Google Scholar 

  33. Berger J, Packard G. Using Natural Language Processing to Understand People and Culture[J]. Am Psychol. 2022 May-Jun;77(4):525–537. https://doi.org/10.1037/amp0000882. Epub 2021 Dec 16.

  34. Biswas S, Logan NS, Davies LN, et al. Assessing the utility of ChatGPT as an artificial intelligence-based large language model for information to answer questions on myopia[J]. Ophthalmic Physiol Opt. 2023;43(6):1562–70.

    Article  PubMed  Google Scholar 

  35. Khanna RK, Ducloyer JB, Hage A, et al. Evaluating the potential of ChatGPT-4 in ophthalmology: the good, the bad and the ugly[J]. J Fr Ophtalmol. 2023;46(7):697–705.

    Article  CAS  PubMed  Google Scholar 

  36. Choi JY, Yoo TK. New era after ChatGPT in ophthalmology: advances from data-based decision support to patient-centered generative artificial intelligence[J]. Annals Translational Med, 2023, 11(10).

Download references

Acknowledgements

Not applicable.

Funding

This study was financially supported by the Science and Technology Bureau of Wenzhou City, China, Y2020033, but it did not play any role in the design of the study, the collection, analysis, and interpretation of the data, or the writing of the manuscript.

Author information

Authors and Affiliations

Authors

Contributions

YG and CH participated in data collection and writing of the manuscript. WZ and XY participated in the data analysis and revised the manuscript. YS and HL participated in the data analysis. JX and YC designed the study and wrote and revised the manuscript. All authors contributed to the article and approved the submitted version.

Corresponding author

Correspondence to Yiqi Chen.

Ethics declarations

Ethics approval and consent to participate

The requirement for ethical approval and informed consent of patients has been waived by the review board of the Eye Hospital of Wenzhou Medical University.

Consent for publication

Written informed consent was obtained from the doctor and patient for publication of identifying information/images in an online open-access publication.

Competing interests

The authors declare no competing interests.

Additional information

Publisher’s Note

Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Rights and permissions

Open Access This article is licensed under a Creative Commons Attribution 4.0 International License, which permits use, sharing, adaptation, distribution and reproduction in any medium or format, as long as you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons licence, and indicate if changes were made. The images or other third party material in this article are included in the article’s Creative Commons licence, unless indicated otherwise in a credit line to the material. If material is not included in the article’s Creative Commons licence and your intended use is not permitted by statutory regulation or exceeds the permitted use, you will need to obtain permission directly from the copyright holder. To view a copy of this licence, visit http://creativecommons.org/licenses/by/4.0/. The Creative Commons Public Domain Dedication waiver (http://creativecommons.org/publicdomain/zero/1.0/) applies to the data made available in this article, unless otherwise stated in a credit line to the data.

Reprints and permissions

About this article

Check for updates. Verify currency and authenticity via CrossMark

Cite this article

Guo, Y., Huang, C., Sheng, Y. et al. Improve the efficiency and accuracy of ophthalmologists’ clinical decision-making based on AI technology. BMC Med Inform Decis Mak 24, 192 (2024). https://doi.org/10.1186/s12911-024-02587-z

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/s12911-024-02587-z

Keywords