Skip to main content

RegEMR: a natural language processing system to automatically identify premature ovarian decline from Chinese electronic medical records

Abstract

Background

The ovarian reserve is a reservoir for reproductive potential. In clinical practice, early detection and treatment of premature ovarian decline characterized by abnormal ovarian reserve tests is regarded as a critical measure to prevent infertility. However, the relevant data are typically stored in an unstructured format in a hospital’s electronic medical record (EMR) system, and their retrieval requires tedious manual abstraction by domain experts. Computational tools are therefore needed to reduce the workload.

Methods

We presented RegEMR, an artificial intelligence tool composed of a rule-based natural language processing (NLP) extractor and a knowledge-based disease scoring model, to automatize the screening procedure of premature ovarian decline using Chinese reproductive EMRs. We used regular expressions (REs) as a text mining method and explored whether REs automatically synthesized by the genetic programming-based online platform RegexGenerator +  + could be as effective as manually formulated REs. We also investigated how the representativeness of the learning corpus affected the performance of machine-generated REs. Additionally, we translated the clinical diagnostic criteria into a programmable disease diagnostic model for disease scoring and risk stratification. Four hundred outpatient medical records were collected from a Chinese fertility center. Manual review served as the gold standard, and fivefold cross-validation was used for evaluation.

Results

The overall F-score of manually built REs was 0.9444 (95% CI 0.9373 to 0.9515), with no significant difference (paired t test p > 0.05) compared with machine-generated REs that could be affected by training set sizes and annotation portions. The extractor performed effectively in automatically tracing the dynamic changes in hormone levels (F-score 0.9518–0.9884) and ultrasonographic measures (F-score 0.9472–0.9822). Applying the extracted information to the proposed diagnostic model, the program obtained an accuracy of 0.98 and a sensitivity of 0.93 in risk screening. For each specific disease, the automatic diagnosis in 76% of patients was consistent with that of the clinical diagnosis, and the kappa coefficient was 0.63.

Conclusion

A Chinese NLP system named RegEMR was developed to automatically identify high risk of early ovarian aging and diagnose related diseases from Chinese reproductive EMRs. We hope that this system can aid EMR-based data collection and clinical decision support in fertility centers.

Peer Review reports

Background

Infertility/subfertility has affected an estimated 15% of couples across the globe, inflicting great harm on people’s reproductive health along with distress, depression and discrimination [1,2,3]. It is well established that a low ovarian reserve remains an important cause of infertility [4,5,6]. Defined as the number of oocytes residing in the ovary, the ovarian reserve reaches its maximum during fetal life and undergoes a slow depletion with the occurrence of ovarian senescence [7]. A growing number of women, however, experience very early aging of the ovaries and become prematurely infertile [8]. The pathological decline in ovarian reserve is a slow progression, and a series of symptoms (e.g., menstrual disturbance) and abnormal-but-not-postmenopausal ovarian reserve test results serve as indicators of different stages, such as diminished ovarian reserve (DOR), premature ovarian insufficiency (POI) and premature ovarian failure (POF) [9, 10]. In clinical practice, using these measurements for early detection of and intervention in premature reproductive decline may help preserve the reproductive potential [11].

Despite their great potential for clinical applications, ovarian reserve data are typically stored in a hospital’s electronic medical record (EMR) system in a narrative text format that is not amenable to data aggregation and analysis. In traditional clinical settings, extracting information from unstructured EMRs requires manual annotation by domain experts, a prohibitively time-consuming and error-prone process insufficient for processing the increasing amount of data. As such, it is desirable to develop automatic methods to parse free text and extract relevant information from clinical narratives in fertility centers.

Natural language processing (NLP) has been reported to enable information retrieval in EMR-based research [12,13,14,15]. As a branch of artificial intelligence, NLP is concerned with how to program computers to "understand" human speech and capture useful information from free text such as EMR data. As a fundamental tool for NLP, the rule-based approach relies on identified keywords (such as direction words, location words, and central words) and rule templates to detect a search pattern. The common form of a rule is a regular expression (RE) using a sequence of characters to concisely specify a pattern (e.g., \w + matches a word character) [16, 17]. The rule-based approach yields high accuracy in abstracting numerical values and focused information from lexically constrained data [18,19,20,21,22]. Manually created rules tailored to one specific problem, however, are case-specific, with limited capacity to be generalized to different scenarios. For each particular task, REs should be highly tuned to the intricacies of data, which is time-consuming and costly. To overcome these challenges, machine learning-based methods have been performed to automatically synthesize REs from training text samples [23,24,25,26]. The team of Alberto Bartoli reported a genetic programming-based tool to construct REs from scratch [27] and proved that such a tool delivered an F-score comparable to that of humans in many realistic tasks [28]. However, the performance of machine-synthesized REs in extracting information from Chinese EMRs remains unknown.

In this study, we presented a regular expression-based EMR extraction tool (RegEMR) for automated information extraction, detection of premature ovarian decline and classification of related clinical states (DOR, POI and POF) from Chinese reproductive EMRs, with the goal of assisting clinical decision support in reproductive centers.

Methods

Datasets

We collected a random sample of 400 outpatient medical records between 2017–9 and 2022–7 from the Center for Reproductive Medicine of Nanfang Hospital. The dataset was randomly divided into training and testing sets. The training set was mainly used for the pattern learning required for RE generation, and the testing set was used to evaluate the performance of the system. We obtained written informed consent from the patients upon admission to our hospital.

Framework

The whole pipeline of RegEMR is shown in Fig. 1. RegEMR is principally composed of two modules, a rule-based NLP extractor and a knowledge-based disease diagnostic model. The rule-based NLP extractor is capable of extracting relevant information from EMRs through preprocessing, RE conduction, and postprocessing. The extracted information subsequently flows into the diagnostic model for disease scoring and risk stratification, yielding the automated diagnosis of each patient. Given that clinicians typically have insufficient programming skills for RE formulation, we investigate whether machines can substitute for human programmers in RE generation by comparing the effectiveness of manually built REs and machine-synthesized REs in EMR-based extraction tasks. Manual review serves as the gold standard in assessing the performance of automated information extraction and disease detection.

Fig. 1
figure 1

Framework of the study design. EMRs: electronic medical records. RE: regular expression

Rule-based NLP extractor

RegEMR identifies 15 data elements of interest (Table 1), most of which follow an underlying syntactical pattern that can be described by an RE.

Table 1 Keywords and rules for concepts of interest

Preprocessing

Initially, the program preprocessed the deidentified clinical narratives by converting the files to free text as input and removing blank lines. Considering that the relevant data were mostly stored in “现病史”(history of present illness) and “月经史”(menstrual history), we extracted these sections using 2 REs.

Manual regular expression generation

When extracting concepts manually from preprocessed data, we empirically determined the keywords indicating that the remainder of the sentence likely contains the target value. For instance, ‘初潮年龄’ (‘Menarche age’) can be indicated by the relevant “hook word” ‘初潮’(‘Menarche’). After locating the labeled sentences, the program applied different rules based on the syntactic and/or semantic co-occurrence patterns found in the training dataset and in domain knowledge (Table 1). Generally, we developed 3 categories of rules: C1 describes a “keyword + quantity + unit” pattern from which a numerical value can be extracted (e.g., hormone level, endometrial thickness, antral follicle counting). A qualitative value such as [‘少’,’中’,’多’…]([‘less’,’medium’,’much’…]) can be obtained utilizing C2, which defines a “keyword + numeral” pattern (e.g., menstruation amount). C3 models the date format. REs were manually compiled in accordance with the developed rules and keywords.

It is common that multiple values exist for one target concept. Some patients might undergo screening tests more than once. Given the necessity to follow up on the dynamic changes in hormone tests and ultrasound measures, we retrieved numerical values and their corresponding dates (date1, measure1; date2, measure2…). We specified a list of the relevant long descriptions labeled by keywords using the previous comma or full stop as a positive lookbehind and the next full stop as a positive lookahead, following the date (Rule C3) and value (Rule C1) searches within each item in the list. For other concepts, the first occurring value is captured. Figure 2 provides an example of extracting the values of predefined concepts from a Chinese reproductive physician’s note.

Fig. 2
figure 2

Example of extracting information from a Chinese reproductive clinical record. The color of the font, underlining and table shading are consistent; e.g., a keyword in blue font in the free text has the rule in blue underlining applied to it, yielding the structured table with blue shading

Automated regular expression generation

The program obtained machine-generated REs from RegexGenerator +  + (http://regex.inginf.units.it) developed by Bartoli’s team. The platform applies tree-based genetic programming (GP) to evolve regular expressions in several populations (Fig. 3) [29, 30]. Each RE (individual) is encoded as a syntax tree with a depth-first post-order visit. The node labels of the tree are composed of a set of predefined basic constructs of REs (e.g., \d, \w, a-z, A-Z,0–9, = ,\?, +  + ,? + ,* +) and some sequences of characters with high occurrence (> 90%) in the desired extractions of the learning datasets as “building blocks” (e.g., ‘FSH’ could be a useful “building block” to extract the FSH level). The construction of the initial population (\({n}_{p}\) individuals) is partly random and partly based on the analysis of the learning dataset; i.e., for each example, 4 different REs are built to ensure the extraction of the corresponding desired portions, which provides a satisfactory starting point for successive evolution. The quality of the candidate solutions is evaluated using a multiobjective optimization algorithm with two fitness indexes: the extraction performance (to be maximized) and the length of REs (to be minimized). The evolution of individuals is performed in an iterative process following an elitism strategy. At each iteration, \({n}_{p}\) new individuals are generated: 10% at random with a ramped half-and-half method, 10% by mutation of the current population, and 80% by crossover of the current population (a tournament size of 7 is used for the selection of individuals undergoing genetic operators). Subsequently, the program ranks the resulting 2 \({n}_{p}\) individuals based on their fitness. The best \({n}_{p}\) individuals are selected as members of the next generation, which are typically on average more fit than the previous ones. Iteration terminates when a predefined maximum generation number (\({n}_{gen}\)) is reached or a solution with perfect fitness is obtained (i.e., the fitness is fixed for \({n}_{stop}\) consecutive iterations). The string transformation of the best individual at the last iteration is the output of GP execution. It is noteworthy that the algorithm includes ‘or’ operator ‘|’ when a single RE exhibits perfect precision (1.00) yet is not capable of expressing multiple patterns or formats. Such a separate-and-conquer strategy contributes to an appropriate trade-off between specificity and generality.

Fig. 3
figure 3

Flowchart of automated regular expression generation using the tree-based genetic programming in [30]

We imported snippets from the training dataset and annotated the desired substrings to be extracted as examples to train the model. Based on these examples, the system generated REs. Since the automated construction of REs is based solely on user-provided examples, its effectiveness depends critically on the degree to which the examples represent the extraction task. In this study, we characterized the representativeness of annotated examples from the perspectives of quantity and quality. A larger learning corpus may span an increasing diversity and density of expression styles to better cover the semantic features of the desired extractions. Therefore, we varied the training set size (80%, 40% or 20% of the full dataset) for each task to investigate how the number of examples affects the performance of the generated REs. In addition, focusing on snippets containing the keywords and lexical structures that are commonly seen may be more important than overfocusing on scarce and “difficult” examples that bring no significant improvements in overall performance. Therefore, we assessed the performance of the automated extractor with different degrees of emphasis on keywords. We annotated both keywords and values and compared the results to those obtained when only values were annotated. In the former case, if a keyword has a high occurrence in annotations, it can be identified as a useful “building block” for the construction of the initial population.

Postprocessing

A stepwise postprocessing workflow was developed to identify and discard outliers in the extracted data, including checking for numeric values outside specific ranges, detecting typos entered by clinicians, removing duplicate values within one EMR, and identifying possible errors based on the category of the value (e.g., dates instead of values).

Evaluation

To evaluate the performance of the rule-based extractor, we had two medical students perform manual abstraction. A third student was in charge of addressing inconsistencies between the two annotations. Then, the manual annotation served as the gold standard to which the rule-based extractions were compared. The pair-wise inter-annotator agreement results are shown in Supplementary Table 1 (Table S1). True positive (TP) means the extracted value matched that in the reference; false positive (FP) means the extracted value did not match that in the reference; true negative (TN) means no value was extracted and there was no reference value; false negative (FN) means no value was extracted but there was a reference value. We calculated the three standard metrics of precision, recall and F-score following the formulas below. Five-fold cross-validation was conducted and these three standard metrics were averaged across the five repetitions.

$$\begin{array}{c}Precision=\frac{TP}{TP+FP}\end{array}$$
(1)
$$\begin{array}{c}Recall \left(Sensitivity\right)=\frac{TP}{TP+FN}\end{array}$$
(2)
$$\begin{array}{c}F-score=\frac{2\times Precision\times Recall}{Precision+Recall}\end{array}$$
(3)

Knowledge-based diagnostic model

In clinical practice, abnormal ovarian reserve testing serves as a fundamental indicator of fertility dysfunction. Specifically, elevated basal serum FSH (follicle-stimulating hormone) is a specific, but not sensitive, test for diminished ovarian reserve [7]. AMH (anti-Mullerian hormone) levels and, alternatively, AFC (the sum of antral follicle counts in both ovaries) are more sensitive to a subtle decline in ovarian reserve [7]. The existence of distinct yet related diseases, specifically DOR, POI and POF commonly complicate the diagnostic and research scenario given that their definition and diagnosis are based on ovarian reserve [8]:

  • DOR: FSH > 10 IU/L, AMH ≤ 1 ng/mL, AFC ≤ 5 [8, 10, 31].

  • POI: amenorrhoea or menstrual irregularity, FSH > 25 IU/L [6, 32].

  • POF: amenorrhoea or menstrual irregularity, FSH > 40 IU/L [10].

(FSH and AFC are required to be tested on two occasions > 4 weeks apart.)

There are no absolutely clear boundaries among these three diseases, and they can be regarded as a continuum of ovarian conditions: the “occult” clinical state (reduced fecundity but normal FSH levels and regular menses), the “biochemical” state (reduced fecundity, elevated FSH and regular periods, closely corresponding to DOR), and the “overt” state (reduced fecundity, elevated FSH and irregular periods, approximately corresponding to POI or POF) [33].

To identify people with declining ovarian reserve and evaluate which clinical state (DOR, POI or POF) they have in an automated manner, we proposed a scoring model to annotate, translate and encode the clinical diagnostic criteria (Table 2). Since ‘irregular menses’ does not have a standard definition, we quantified it using a < 24- or > 35-day cycle. The score was a null value if a related description could not be detected (AFC was null when left or right AFC was null). The sum of each subsection score was the total score, representing the risk of each clinical state. The POI and POF scores were calculated only when the subject was younger than 40; otherwise, they were given a null value. If the diagnostic criteria were strictly obeyed, only full marks indicating that all criteria were met could be used to make a diagnosis of a specific state. However, the information recorded in EMRs might be incomplete, and completing the medical history could require multiple encounters. In this case, the occurrence of even one abnormal but pivotal result could reveal potential risk. Therefore, we loosened the inclusion criteria and constructed a risk stratification model as described in Fig. 4. We classified the diagnosis of “DOR”, “POI” and “POF” as the high-risk group requiring early intervention, and “Healthy” as the low-risk group.

Table 2 The scoring model of DOR, POI and POF
Fig. 4
figure 4

Flowchart for the automatic diagnosis and risk stratification model. The DOR, POI, and POF scores were calculated as in Table 2. We classified the machine diagnosis of “DOR”, “POI” and “POF” as the high-risk group, and “Healthy” as the low-risk group

We validated the model using NLP extractions combined with age in the structured EMR data. The program conducted data preprocessing by unit conversion, numeric format unification, and converted the date into a numeric format to calculate the interval between examinations. The minimum value was used for calculation when the AMH levels tested on several occasions were all documented. Clinical diagnosis by specialized technicians was used as the gold standard to assess the performance of our model.

Results

We counted the absent values for each concept in the manual annotation of the training and testing datasets (Table S2). The proportion of uncharacterized data varied for different concepts. The mean and variance of each numerical variable were also calculated (Table S3). The results showed that features pertaining to ovarian reserve presented high interpatient variability, indicating their clinical and prognostic value.

The rule-based extractor demonstrated great performance using both manually formulated and machine-generated REs. Figure 5 and Table S4 summarize the average performance indexes (precision, recall and F-score) over five repetitions and their 95% confidence intervals. Overall, manually built RE extraction in the local test set was 93.13% (95% CI 92.83% to 93.43%) specific and 95.79% (95% CI 94.58% to 97.00%) sensitive, and the REs produced by machine performed with a comparable precision of 0.9253 (95% CI 0.9210 to 0.9296) and recall of 0.9601 (95% CI 0.9547 to 0.9656). To compare the results obtained by these two approaches, we conducted a paired t test (the difference in performance indexes followed a normal distribution). The results exhibited no significant difference in precision, recall and F-score (p > 0.05, p = 0.079, 0.648, 0.644, respectively), demonstrating the ability of machines to compete with human operators in RE generation. A practically perfect agreement between the rule-oriented extractor and manual abstraction, with an average F-score greater than 0.94, was observed in hormone tests and ultrasonographic measures, indicating that our NLP extractor was capable of tracing the dynamic changes in these measurements. However, a lower accuracy was found in 'Menstrual cycle' and 'Menstruation amount' for both manually constructed (0.7449 and 0.7073) and machine-synthesized REs (0.7255 and 0.7042). With a limited capacity to track the progression of menstruation described in a lexically free format, the current rule-based extractor might only extract part of the menstruation information when multiple values exist, which principally accounts for the low precision.

Fig. 5
figure 5

The performance of each target concept using manually created versus machine-generated regular expressions (REs)

To gain insight into how the representativeness of examples is related to the effectiveness of the GP-based extractor, we repeated our experiments with different training set sizes (Fig. 6) and different annotation portions (Fig. 7) and plotted the average performance indexes in the testing set. As shown in Fig. 6, the performance of the generated REs differed significantly for training set ratios of 80%, 40% and 20% (Friedman test for F-score, p = 2.8e-5 < 0.001). Generally, a higher ratio for learning was accompanied by a better performance, which was particularly obvious in ‘Menstrual history’ when the ratio rose from 40 to 80%. In contrast, such improvement was less apparent for ‘Hormone test’ and ‘Ultrasonic measures’ with an increasing number of provided examples. For the extraction of ‘Hormone test’ and ‘Ultrasonic measures’, a relatively small percentage of data was always enough to represent the general pattern, which was relatively fixed; thus, an acceptable performance could be obtained even when the learning information included only 20% or 40% snippets. The description of ‘Menstrual history’, however, was highly varying, with semantic constraints that a few examples could not describe. In this scenario, the 20% or 40% learning corpus was too small for the machine to perform as effectively as with more learning material. Increasing the number of available training examples remarkably improved performance. Similarly, the paired t test for F-score exhibited a significant difference (p = 1.02e-4 < 0.01) between annotations with and without keywords. Annotations with keywords typically yielded higher effectiveness, ‘Hormone test’ in particular. The description of ‘Hormone test’ contained the levels of different hormones, which closely resembled each other because they were all numerical values. Annotating only the values might not be adequately representative of the data, confusing the extractor and yielding irrelevant numbers. For instance, for the extraction of FSH levels, the annotation ‘FSH 12.53 IU/L’ gave more priority to the keyword 'FSH' than ‘12.53 IU/L’, which might be more important for machines to infer a general pattern from the example.

Fig. 6
figure 6

The performance of each target concept with different training set sizes

Fig. 7
figure 7

The performance of each target concept with different annotation portions

We validated the knowledge-based diagnostic model and calculated the disease score on the full dataset (n = 400). The data of 20 subjects were insufficient for machine diagnosis and thus were eliminated. The distribution and confusion matrix for disease diagnosis and risk stratification are shown in Fig. 8 and Table S5, respectively. The model demonstrated desirable effectiveness in risk screening, with high accuracy (0.9803) and sensitivity (0.9330). For each specific disease, the automated diagnosis in 76% of patients (n = 290) was consistent with that of the clinical diagnosis, and the kappa coefficient was 0.63. Otherwise, the statistical analysis of the score echoed the rules of disease progression (Table 3), indicating the plausibility and clinical interpretability of the model.

Fig. 8
figure 8

Comparison of machine diagnosis and human verification for 380 patients

Table 3 Descriptive statistical analysis of machine diagnosis

Discussion

In the last decade, neural network models, including long short-term memory (LSTM), conditional random field (CRF), and bidirectional encoder representations from transformers (BERT), have significantly advanced the field of medical text mining. For instance, ASUDS applied a bidirectional LSTM (BiLSTM) model to detect pediatric substance use information from clinical notes [34]. Med7 used a named-entity recognition model for the identification of drug-related information [35]. Leiter et al. captured symptoms of congestive heart failure by adopting a GraphIE model that used a graphical structure to abstract relations between words [36, 37]. Liu et al. proposed a pretrained, fine-tuned BERT-based BiLSTM-CRF model to recognize evidence for liver cancer diagnosis [38]. BioBERT [39] and ClinicalBERT [40] are domain-specific BERT-based models pretrained on biomedical data. Indeed, these deep learning methods have boosted the development of biomedical NLP. Nonetheless, the large amounts of medical data required for training are commonly not available for Chinese hospitals or departments. At present, Chinese clinical data from many institutions are available only internally because of considerations of patient privacy and information security. Additionally, neural networks are based on a “black-box” theory, making it difficult to interpret the parameters and improve the results. In this regard, REs are commonly used because of their simplicity, flexibility and interpretability. REs can be designed faster, and can potentially be applied to a variety of clinical settings, which is especially important when commercial NLP tools are unaffordable to researchers.

To automatically extract information from EMRs, many English medical language processing tools have been developed, such as MedLEE [41], cTAKES [42], MetaMap [43] and MedTagger [44]. However, these tools cannot be directly transplanted to Chinese EMR tasks due to the differences between the Chinese and Western languages. In contrast to the burgeoning NLP toolkits for English, few studies have focused on Chinese NLP systems. Several existing Chinese NLP tools, such as HanLP (hanlp.linrunsoft.com/index.html), ICTCLAS [45], and Fudan NLP [46], are not specifically designed for EMR-based extraction tasks. To the best of our knowledge, RegEMR is the first Chinese text analysis pipeline applied to the field of reproductive medicine. The rule-based NLP extractor module used manually created versus machine-generated REs to transform textual clinical information into structured, analyzable data from Chinese reproductive EMRs. It performed well in tracking dynamic changes in hormone and ultrasonographic measures with high accuracy and recall rates comparable to those of human abstractors. In this regard, this work might provide a good solution for data collection and aggregation in fertility centers.

We validated the performance of machine-synthesized REs in extracting information from Chinese EMRs and demonstrated that they performed competitively with human-formulated REs. Table S6 lists some examples of word patterns that were correctly and incorrectly interpreted by current extraction systems. Most of the false negatives were due to other unexpected word patterns not captured by the set of REs used; typically, these patterns occurred rarely. Many of the false positive identifications were attributed to less specific rules triggering noise. A common goal for both human operators and machine learning was to establish a balance between generalization and overfitting. The programmers generalized patterns principally based on domain knowledge and effectively formulated keyword-centered REs that were readable but could easily lead to overfitting. The automated system inferred the actual desired behavior from the examples and synthesized REs that were able to address inexact keyword matching but could be difficult to interpret. If the effectiveness of the obtained solutions is adequate for practical usage, the automatic RE generator may prove to have good performance in clinical applications because it requires no specific skills or familiarity with the syntax of REs, and has appreciable scalability and transferability to other diseases and departments. With this in mind, although the datasets of this study were from the same hospital, we believe that the automatic RE generator module could be transferred to EMRs of other centers that use different formats. In the present study, we also revealed that the representativeness of the examples might affect the performance of automated RE extractor. Autogeneration of high-quality REs demanded sufficient learning corpora and annotations in representativeness of the text, while the specific requirements varied across different tasks. Training with representative examples enables improved performance.

Recent years have witnessed multiple studies focused on applying artificial intelligence (AI) to reproductive medicine, including automation of follicle counts and prediction of embryo cell stages [47]. However, the automated identification of declining ovarian reserve has not been achieved. To automatize the diagnostic procedure, we translated the clinical diagnostic criteria into a programmable disease scoring model that took into account the characteristics of reproductive EMRs and real clinical work. Our knowledge-based diagnostic model demonstrated acceptable performance with high sensitivity and specificity in risk screening and a 0.63 kappa coefficient compared with manual diagnosis. This scoring model can also be directly transplanted to EMRs of other languages as a prescreening tool to aid in the diagnosis of DOR, POI and POF.

This study still has several limitations. First, the sample size of the study is limited. A relatively consistent expression style of EMRs from one center might lead to overfitting by algorithms. A multicenter dataset may help enhance the robustness and adaptability of RegEMR. Second, machine-synthesized REs are based solely on examples, and users must dig into the large set of input text to identify snippets whose annotations may indeed be useful. In the future, we will try to overcome this challenge by including an interactive learning procedure: the user marks only one desired extraction and then merely answers extraction queries generated by the system [48]. Third, the menstruation information extracted by the current rule-based method is incomplete when menstruation fluctuation occurs, which might interfere with the accuracy of machine diagnosis produced by the knowledge-based scoring model. Enhancing the precision and recall of NLP methods might help bolster this system. Fourth, machine diagnosis is solely based on the values documented in EMRs and cannot distinguish whether these values are pre- or posttherapy. Taking more relevant information (e.g., past medical history) into consideration might help improve the performance of the automatic diagnosis model. Finally, RegEMR is mainly an algorithmic process. User-friendly interfaces are required for the further application and promotion of this tool.

Conclusion

Clinical detection of DOR, POI, and POF relies on manual recognition of multiple measurements comprising the diagnostic criteria that are typically documented in EMRs but are not synthesized. We propose RegEMR, an artificial intelligence tool composed of a rule-oriented NLP extractor and a knowledge-based disease scoring model, to automatize the diagnostic procedure using Chinese reproductive EMRs. The NLP extractor of RegEMR is the first Chinese NLP system specifically designed for information extraction from reproductive EMRs. It presents high accuracy (manual RE: 0.9313, machine RE: 0.9253) and recall rates (manual RE: 0.9579, machine RE: 0.9601) comparable to those of human abstractors, with desirable performance in automatically tracing dynamic changes in hormone levels (F-score 0.9518–0.9884) and ultrasonographic measures (F-score 0.9472–0.9822). Additionally, we annotated and translated the clinical diagnostic criteria into a programmable disease scoring model, which demonstrated acceptable performance with high sensitivity (0.93) and specificity (0.98) in risk screening and a 0.63 kappa coefficient compared with manual diagnosis. Our work provides possibilities for automatic screening and diagnosis of premature reproductive decline from EMRs. Our follow-up work will continue to increase the datasets to verify and refine the algorithms and develop user-friendly interfaces for their real-world application. We hope that RegEMR will reduce the workload of EMR-based information extraction and aid in risk detection and disease diagnosis in fertility centers.

Availability of data and materials

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

Abbreviations

NLP:

Natural language processing

EMR:

Electronic medical record

RE:

Regular expression

DOR:

Diminished ovarian reserve

POI:

Premature ovarian insufficiency

POF:

Premature ovarian failure

AFC:

Antral follicle count

FSH:

Follicle stimulating hormone

LH:

Luteinizing hormone

E2:

Estradiol

P:

Progesterone

PRL:

Prolactin

T:

Testosterone

AMH:

Anti-Müllerian hormone

AFC:

Antral follicle count

References

  1. Sun H, Gong TT, Jiang YT, Zhang S, Zhao YH, Wu QJ. Global, regional, and national prevalence and disability-adjusted life-years for infertility in 195 countries and territories, 1990–2017: results from a global burden of disease study, 2017. Aging (Albany NY). 2019;11:10952–91.

    Article  PubMed  Google Scholar 

  2. Gerrits T, Van Rooij F, Esho T, Ndegwa W, Goossens J, Bilajbegovic A, Jansen A, Kioko B, Koppen L, Kemunto Migiro S, et al. Infertility in the global south: raising awareness and generating insights for policy and practice. Facts Views Vis Obgyn. 2017;9:39–44.

    CAS  PubMed  PubMed Central  Google Scholar 

  3. Barratt CLR, Björndahl L, De Jonge CJ, Lamb DJ, Osorio Martini F, McLachlan R, Oates RD, van der Poel S, St John B, Sigman M, et al. The diagnosis of male infertility: an analysis of the evidence to support the development of global WHO guidance-challenges and future research opportunities. Hum Reprod Update. 2017;23:660–80.

    Article  PubMed  PubMed Central  Google Scholar 

  4. Grisendi V, Mastellari E, La Marca A. Ovarian reserve markers to identify poor responders in the context of Poseidon classification. Front Endocrinol (Lausanne). 2019;10:281.

    Article  PubMed  Google Scholar 

  5. Nguyen HH, Milat F, Vincent A. Premature ovarian insufficiency in general practice: Meeting the needs of women. Aust Fam Physician. 2017;46:360–6.

    PubMed  Google Scholar 

  6. Webber L, Davies M, Anderson R, Bartlett J, Braat D, Cartwright B, Cifkova R, de Muinck Keizer-Schrama S, European Society for Human R, Embryology Guideline Group on POI, et al. ESHRE Guideline: management of women with premature ovarian insufficiency. Hum Reprod. 2016;31:926–37.

    Article  CAS  PubMed  Google Scholar 

  7. Practice Committee of the American Society for Reproductive Medicine. Electronic address aao, Practice Committee of the American Society for Reproductive M: Testing and interpreting measures of ovarian reserve: a committee opinion. Fertil Steril. 2020;114:1151–7.

    Article  Google Scholar 

  8. Pastore LM, Christianson MS, Stelling J, Kearns WG, Segars JH. Reproductive ovarian testing and the alphabet soup of diagnoses: DOR, POI, POF, POR, and FOR. J Assist Reprod Genet. 2018;35:17–23.

    Article  PubMed  Google Scholar 

  9. Tal R, Seifer DB. Ovarian reserve testing: a user’s guide. Am J Obstet Gynecol. 2017;217:129–40.

    Article  PubMed  Google Scholar 

  10. Cohen J, Chabbert-Buffet N, Darai E. Diminished ovarian reserve, premature ovarian failure, poor ovarian responder–a plea for universal definitions. J Assist Reprod Genet. 2015;32:1709–12.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  11. Sills ES, Alper MM, Walsh AP. Ovarian reserve screening in infertility: practical applications and theoretical directions for research. Eur J Obstet Gynecol Reprod Biol. 2009;146:30–6.

    Article  PubMed  Google Scholar 

  12. Kreimeyer K, Foster M, Pandey A, Arya N, Halford G, Jones SF, Forshee R, Walderhaug M, Botsis T. Natural language processing systems for capturing and standardizing unstructured clinical information: a systematic review. J Biomed Inform. 2017;73:14–29.

    Article  PubMed  PubMed Central  Google Scholar 

  13. Wang Y, Wang L, Rastegar-Mojarad M, Moon S, Shen F, Afzal N, Liu S, Zeng Y, Mehrabi S, Sohn S, Liu H. Clinical information extraction applications: a literature review. J Biomed Inform. 2018;77:34–49.

    Article  PubMed  Google Scholar 

  14. Jin M, Fan S, Zhang K, Bao X. A Scoping Review of Clinical Unstructured Text Information Extraction. In: In 2020 International Conference on Computational Science and Computational Intelligence (CSCI). 2020. p. 853–7.

    Google Scholar 

  15. Zhang T, Huang Z, Wang Y, Wen C, Peng Y, Ye Y. Information extraction from the text data on traditional Chinese medicine: a review on tasks, challenges, and methods from 2010 to 2021. Evid Based Complement Alternat Med. 2022;2022:1679589.

    PubMed  PubMed Central  Google Scholar 

  16. Turchin A, Kolatkar NS, Grant RW, Makhni EC, Pendergrass ML, Einbinder JS. Using regular expressions to abstract blood pressure and treatment intensification information from the text of physician notes. J Am Med Inform Assoc. 2006;13:691–5.

    Article  PubMed  PubMed Central  Google Scholar 

  17. Voorham J, Denig P. Computerized extraction of information on the quality of diabetes care from free text in electronic patient records of general practitioners. J Am Med Inform Assoc. 2007;14:349–54.

    Article  PubMed  PubMed Central  Google Scholar 

  18. Frenz CM. Deafness mutation mining using regular expression based pattern matching. BMC Med Inform Decis Mak. 2007;7:1–6.

    Article  Google Scholar 

  19. Denny JC, Miller RA, Waitman LR, Arrieta MA, Peterson JF. Identifying QT prolongation from ECG impressions using a general-purpose Natural Language Processor. Int J Med Informatics. 2009;78:S34–42.

    Article  Google Scholar 

  20. Hinchcliff M, Just E, Podlusky S, Varga J, Chang RW, Kibbe WA. Text data extraction for a prospective, research-focused data mart: implementation and validation. BMC Med Inform Decis Mak. 2012;12:106.

    Article  PubMed  PubMed Central  Google Scholar 

  21. McCart JA, Finch DK, Jarman J, Hickling E, Lind JD, Richardson MR, Berndt DJ, Luther SL. Using ensemble models to classify the sentiment expressed in suicide notes. Biomed inform Insights. 2012;5:BII. S8931.

    Article  Google Scholar 

  22. Stenner SP, Johnson KB, Denny JC. PASTE: patient-centered SMS text tagging in a medication management system. J Am Med Inform Assoc. 2012;19:368–74.

    Article  PubMed  Google Scholar 

  23. Bui DD, Zeng-Treitler Q. Learning regular expressions for clinical text classification. J Am Med Inform Assoc. 2014;21:850–7.

    Article  PubMed  PubMed Central  Google Scholar 

  24. Murtaugh MA, Gibson BS, Redd D, Zeng-Treitler Q. Regular expression-based learning to extract bodyweight values from clinical notes. J Biomed Inform. 2015;54:186–90.

    Article  PubMed  Google Scholar 

  25. Redd D, Kuang J, Mohanty A, Bray BE, Zeng-Treitler Q. Regular expression-based learning for METS value extraction. AMIA Summits Transl Sci Proceed. 2016;2016:213.

    Google Scholar 

  26. Flores CA, Figueroa RL, Pezoa JE. Fregex: A feature extraction method for biomedical text classification using regular expressions. In: 2019 41st Annual International Conference of the IEEE Engineering in Medicine and Biology Society (EMBC). IEEE. 2019. p. 6085–8.

    Google Scholar 

  27. Bartoli A, Davanzo G, De Lorenzo A, Medvet E, Sorio E. Automatic synthesis of regular expressions from examples. Computer. 2014;47:72–80.

    Article  Google Scholar 

  28. Bartoli A, De Lorenzo A, Medvet E, Tarlao F. Can a machine replace humans in building regular expressions? A case study. IEEE Intelligent Systems. 2016;31:15–21.

    Article  Google Scholar 

  29. Bartoli A, De Lorenzo A, Medvet E, Tarlao F, Learning Text Patterns Using Separate-and-Conquer Genetic Programming. In: Machado, P., et al. Genetic Programming. EuroGP 2015. Lect Notes Comput Sci. 2015;9025. https://doi.org/10.1007/978-3-319-16501-1_2.

  30. Bartoli A, De Lorenzo A, Medvet E, Tarlao F. Inference of regular expressions for text extraction from examples. IEEE Trans Knowl Data Eng. 2016;28:1217–30.

    Article  Google Scholar 

  31. Ferraretti AP, La Marca A, Fauser BC, Tarlatzis B, Nargund G, Gianaroli L. ESHRE consensus on the definition of “poor response” to ovarian stimulation for in vitro fertilization: the Bologna criteria. Hum Reprod. 2011;26:1616–24.

    Article  CAS  PubMed  Google Scholar 

  32. Chon SJ, Umair Z, Yoon MS. Premature ovarian insufficiency: past, present, and future. Front Cell Dev Biol. 2021;9:672890.

    Article  PubMed  PubMed Central  Google Scholar 

  33. Welt CK. Primary ovarian insufficiency: a more accurate term for premature ovarian failure. Clin Endocrinol (Oxf). 2008;68:499–509.

    Article  PubMed  Google Scholar 

  34. Ni Y, Bachtel A, Nause K, Beal S. Automated detection of substance use information from electronic health records for a pediatric population. J Am Med Inform Assoc. 2021;28:2116–27.

    Article  PubMed  PubMed Central  Google Scholar 

  35. Kormilitzin A, Vaci N, Liu Q, Nevado-Holgado A. Med7: a transferable clinical natural language processing model for electronic health records. Artif Intell Med. 2021;118:102086.

    Article  PubMed  Google Scholar 

  36. Qian Y, Santus E, Jin Z, Guo J, Barzilay R. GraphIE: A Graph-Based Framework for Information Extraction. In Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies. Minneapolis: Association for Computational Linguistics. 2019;1(Long and Short Papers):751–761. https://doi.org/10.18653/v1/N19-1082.

  37. Leiter RE, Santus E, Jin Z, Lee KC, Yusufov M, Chien I, Ramaswamy A, Moseley ET, Qian Y, Schrag D, Lindvall C. Deep natural language processing to identify symptom documentation in clinical notes for patients with heart failure undergoing cardiac resynchronization therapy. J Pain Symptom Manage. 2020;60(948–958):e943.

    Google Scholar 

  38. Liu H, Zhang Z, Xu Y, Wang N, Huang Y, Yang Z, Jiang R, Chen H. Use of BERT (bidirectional encoder representations from transformers)-based deep learning method for extracting evidences in chinese radiology reports: development of a computer-aided liver cancer diagnosis framework. J Med Internet Res. 2021;23:e19689.

    Article  PubMed  PubMed Central  Google Scholar 

  39. Lee J, Yoon W, Kim S, Kim D, Kim S, So CH, Kang J. BioBERT: a pre-trained biomedical language representation model for biomedical text mining. Bioinformatics. 2020;36:1234–40.

    Article  CAS  PubMed  Google Scholar 

  40. Huang K, Altosaar J, Ranganath R: Clinicalbert: Modeling clinical notes and predicting hospital readmission. arXiv preprint arXiv:190405342 2019. https://doi.org/10.48550/arXiv.1904.05342.

  41. Friedman C, Alderson PO, Austin JH, Cimino JJ, Johnson SB. A general natural-language text processor for clinical radiology. J Am Med Inform Assoc. 1994;1:161–74.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  42. Savova GK, Masanz JJ, Ogren PV, Zheng J, Sohn S, Kipper-Schuler KC, Chute CG. Mayo clinical Text Analysis and Knowledge Extraction System (cTAKES): architecture, component evaluation and applications. J Am Med Inform Assoc. 2010;17:507–13.

    Article  PubMed  PubMed Central  Google Scholar 

  43. Aronson AR, Lang FM. An overview of MetaMap: historical perspective and recent advances. J Am Med Inform Assoc. 2010;17:229–36.

    Article  PubMed  PubMed Central  Google Scholar 

  44. Liu H, Bielinski SJ, Sohn S, Murphy S, Wagholikar KB, Jonnalagadda SR, Ravikumar KE, Wu ST, Kullo IJ, Chute CG. An information extraction framework for cohort identification using electronic health records. AMIA Jt Summits Transl Sci Proc. 2013;2013:149–53.

    PubMed  PubMed Central  Google Scholar 

  45. Wang H, Zhang W, Zeng Q, Li Z, Feng K, Liu L. Extracting important information from Chinese Operation Notes with natural language processing methods. J Biomed Inform. 2014;48:130–6.

    Article  PubMed  Google Scholar 

  46. Qiu X, Huang X. FudanNLP: A Toolkit for Chinese Natural Language Processing. 2013.

    Google Scholar 

  47. Zaninovic N, Elemento O, Rosenwaks Z. Artificial intelligence: its applications in reproductive medicine and the assisted reproductive technologies. Fertil Steril. 2019;112:28–30.

    Article  PubMed  Google Scholar 

  48. Bartoli A, De Lorenzo A, Medvet E, Tarlao F. Active learning of regular expressions for entity extraction. IEEE Trans Cybern. 2018;48:1067–80.

    Article  PubMed  Google Scholar 

Download references

Acknowledgements

Thanks to all the peer reviewers for their opinions and suggestions.

Funding

This work was supported by the National College Students Innovation and Entrepreneurship Training Program of China (Grant Nos. 202112121022X). This fund was used in the design of the study; in the collection, analysis, and interpretation of data; and in writing the manuscript.

Author information

Authors and Affiliations

Authors

Contributions

JC: Conceptualization, Programming, Methodology, Writing original draft. ShengLC: Programming, Methodology, Annotation. SYG: Annotation, Visualization and interpretation of data. SDW and LTL: Annotation, Analysis and interpretation of data. XTL: Conceptualization. KMZ and YDL: Data acquisition and curation. ShiLC: Conceptualization, Supervision. All authors revised and approved the final manuscript.

Corresponding author

Correspondence to Shiling Chen.

Ethics declarations

Ethics approval and consent to participate

The study was approved by the Medical Ethics Committee of Nanfang Hospital, Southern Medical University. We obtained written informed consent from the patients whose data were used in this study. All methods were performed in accordance with the Declaration of Helsinki.

Consent for publication

Not applicable.

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.

Supplementary Information

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

Cai, J., Chen, S., Guo, S. et al. RegEMR: a natural language processing system to automatically identify premature ovarian decline from Chinese electronic medical records. BMC Med Inform Decis Mak 23, 126 (2023). https://doi.org/10.1186/s12911-023-02239-8

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/s12911-023-02239-8

Keywords