Skip to main content

Identification of asthma control factor in clinical notes using a hybrid deep learning model

Abstract

Background

There are significant variabilities in guideline-concordant documentation in asthma care. However, assessing clinician’s documentation is not feasible using only structured data but requires labor-intensive chart review of electronic health records (EHRs). A certain guideline element in asthma control factors, such as review inhaler techniques, requires context understanding to correctly capture from EHR free text.

Methods

The study data consist of two sets: (1) manual chart reviewed data—1039 clinical notes of 300 patients with asthma diagnosis, and (2) weakly labeled data (distant supervision)—27,363 clinical notes from 800 patients with asthma diagnosis. A context-aware language model, Bidirectional Encoder Representations from Transformers (BERT) was developed to identify inhaler techniques in EHR free text. Both original BERT and clinical BioBERT (cBERT) were applied with a cost-sensitivity to deal with imbalanced data. The distant supervision using weak labels by rules was also incorporated to augment the training set and alleviate a costly manual labeling process in the development of a deep learning algorithm. A hybrid approach using post-hoc rules was also explored to fix BERT model errors. The performance of BERT with/without distant supervision, hybrid, and rule-based models were compared in precision, recall, F-score, and accuracy.

Results

The BERT models on the original data performed similar to a rule-based model in F1-score (0.837, 0.845, and 0.838 for rules, BERT, and cBERT, respectively). The BERT models with distant supervision produced higher performance (0.853 and 0.880 for BERT and cBERT, respectively) than without distant supervision and a rule-based model. The hybrid models performed best in F1-score of 0.877 and 0.904 over the distant supervision on BERT and cBERT.

Conclusions

The proposed BERT models with distant supervision demonstrated its capability to identify inhaler techniques in EHR free text, and outperformed both the rule-based model and BERT models trained on the original data. With a distant supervision approach, we may alleviate costly manual chart review to generate the large training data required in most deep learning-based models. A hybrid model was able to fix BERT model errors and further improve the performance.

Background

Asthma is the most common chronic illness among children as well as one of the five most burdensome adult chronic diseases in United States (US), causing significant morbidity and cost [1,2,3]. Implementation of and adherence to the asthma guidelines have been reported to improve asthma care and outcomes [4,5,6,7,8]. However, there are significant variabilities in clinicians’ guideline adherence (i.e., documentation of patients’ asthma-related conditions recommended in asthma guidelines) in asthma care [9,10,11]. The clinical documentation in free text is an essential component in electronic health records (EHRs) and the quality of information resided in clinical documents plays a critical role in patient care, clinical research, and quality assurance in health care. Clinicians are the primary creator of EHRs, but their documentation varies substantially [12], which may significantly affect the quality of both structured and unstructured data and cause a potential bias for their downstream applications. Therefore, improving the quality of clinical documentation by assessing clinician’s adherence to guidelines to care management (e.g., asthma management guidelines) in documentation is crucial not only to maximize the meaningful use of EHRs but also to improve clinical practice.

The 2007 National Asthma Education and Prevention Program (NAEPP) asthma guidelines provides guidance for improved asthma management using asthma control, factors with control, and medications [11]. Although more than 10 years had been passed since NAEPP asthma guidelines, clinician’s low adherence to asthma guidelines have been widely recognized. However, assessing clinicians’ adherence to asthma guidelines is not feasible using only structured data but requires manual chart review of EHRs, which is labor-intensive, time consuming, and costly [11, 13]. Since certain guideline elements of NAEPP are not available through structured data, the advanced techniques, such as natural language processing (NLP), is required to mitigate the issues of time-consuming manual chart review. Some guideline elements in EHR free text are relatively straightforward (e.g., asthma medications, daytime and nighttime symptoms) and can be identified by handcrafted rules based on keywords and description patterns. However, a certain guideline element regarding asthma control status, such as teaching and reviewing inhaler techniques, requires context (semantic) understanding to capture from EHR free text, not suitable to be handled by rules. For example, inhaler techniques (i.e., teaching patients how to use an asthma inhaler or reviewing their inhaler use), “A patient received asthma education and instruction in appropriate metered-dose inhaler technique.”; “Discussed 3rd neb treatment here versus one upon home.” The first example is semantically correct for teaching inhaler techniques but the second one is not necessarily implying teaching and reviewing inhaler techniques but discussing efficacy of neb treatment, which has to be differentiated from the intended concept (reviewing and teaching true inhaler techniques).

Recent advances in deep learning using contextual embedding have a capability to better understand context (i.e., semantic meaning of words or phrases), which may allow capturing complex concepts such as clinician’s adherence to asthma guideline elements which could be often missed by handcrafted rules. Especially, a context-aware language model, Bidirectional Encoder Representations from Transformers (BERT) [14] is a pre-trained NLP framework that has promising results on a variety of NLP tasks. However, in general, a deep learning model requires a large number of labeled data to learn the tasks properly in order to perform well. Manual chart review is considered as a gold standard to generate labeled data but it requires significant amount of labor, time, and cost. Often this is a critical bottleneck in development of a deep learning-based model in the clinical domain. There is great need to address this challenge. A distant supervision, which produces labeled data using rules or heuristics to train the model, has been successfully used to alleviate this challenge [15, 16]. Rules or heuristics reflecting expert knowledge may automatically generate the reasonably labeled data to augment the training data in a way a deep learning model better learns the underlying concepts to be captured from a distantly supervised large data set.

This study applied BERT-based models to examine the feasibility of identifying an asthma control factor, inhaler techniques from EHR free text (clinical notes) and further investigated the effect of BERT-based models incorporated with distant supervision. A hybrid approach using post-hoc rules was also tested to fix BERT-based model errors and improve the performance. The performance of BERT-based and hybrid models was also compared with a rule-based approach.

Literature review (BERT in clinical applications)

Rule-based NLP techniques have been successfully applied in asthma research with high performance [17,18,19,20,21]. A rule-based approach has been used widely in the clinical domain to implement existing criteria with expert knowledge. It is relatively flexible to customize and tolerant to imbalance data. However, a rule-based approach needs significant effort until it reaches to high performance [22, 23].

Recently, the deep learning-based models have become more frequent than traditional machine learning models in the clinical domain due to availability of large data, diversified algorithms, and the technical abilities to handle complex algorithms [24]. However, there are some limitations using these models dealing with complex long-term dependencies, shallow networks, training from scratch and others. Recent advancements in NLP developed new learning representation models that consider not only complex contextual representations but also the ability to use pretrained models [25]. Out of these, BERT has outperformed other models and produced state-of-the art results in many NLP tasks due to its large pretrained contextual information [14, 26]. BERT has gained popularity in its application in both clinical and biomedical domain due to its superior performance and ability to use pretrained word representations in downstream tasks. In clinical domain, BERT has demonstrated high performance in clinical relation extraction tasks, classification of clinical texts, and phenotyping of clinical notes [27,28,29,30]. Researchers have developed pretrained embeddings related to various domains including clinical BERT, which was trained on Medical Information Mart for Intensive Care III (MIMIC-III) notes [31,32,33], and clinical BioBERT (cBERT), which was trained on MIMIC-III clinical notes but was initialized on BioBERT and outperformed other BERT models in majority of clinical tasks suggesting the advantage of cBERT in clinical applications [33].

This study used both original BERT and cBERT with and without distant supervision to identify inhaler techniques that require context understanding and to examine if a domain specific pretrained model (cBERT) outperforms general pretrained embeddings model (BERT) in our classification tasks. We also evaluate a hybrid approach to examine if a BERT-based model on verge of overfitting or undertraining can be improved by adding simple post-hoc rules on its prediction.

Methods

Our task is to identify the description of reviewing/teaching inhaler technique (Table 1) in clinical notes. Since the aim of the study is to assess clinician’s adherence to asthma guidelines (e.g., whether clinicians documented inhaler technique reviewed or taught in clinical notes), any documentation regardless of negation was considered as guideline congruent.

Table 1 Examples of inhaler techniques in NAEPP

Data

The study data consists of two data sets: (1) manual chart reviewed data—1039 clinical notes of 300 patients with asthma diagnosis, randomly selected from the Olmsted County birth cohort (2016–2018). We used notes from 200 patients as a training set (n = 724) and notes from the other 100 patients (n = 315) as a test set. A physician performed chart review and annotated guideline elements based on 2007 NAEPP guidelines; and (2) weakly labeled data (distant supervision)—27,363 clinical notes from 800 patients with asthma diagnosis that were randomly selected from the Olmsted County birth cohort (2008–2018) for the training set. The guideline elements were labeled by handcrafted rules (Table 2) instead of manual chart review (i.e., weakly labeled). This data is to train BERT and cBERT models with distant supervision. We used the same test set as in the manual chart reviewed data to compare the performance of inhaler technique identification. We used the contents in the note sections of History of Present Illness and Impression/Report/Plan sections of EHRs since majority of teaching and reviewing inhaler techniques reside in these sections.

Table 2 Rules to identify inhaler techniques

Rule-based model

The rules were developed by using common patterns based on textual markers (i.e., keywords relevant to asthma guideline elements) and evaluated against manual chart review as a gold standard. The keywords were provided by domain experts and updated and refined iteratively as we developed rules on the training set (Table 2). We implemented rules under the framework of MedTaggerIE [34], a clinical NLP pipeline developed by Mayo Clinic. The performance of the NLP algorithm was evaluated in a document level (i.e., whether a guideline element is recorded or not in the clinical note) since the guideline adherence in asthma care is measured in a document level.

BERT and cBERT

A ‘bert-base-uncased’ was used in a BERT due to its good performance with less computational requirements. The model was built with the addition of a dropout layer (p = 0.1) and a linear classification layer with cross entropy loss function to perform binary classification (i.e., presence or absence of inhaler technique). The BERT tokenizer was used to tokenize clinical notes and padded all the input sentences (maximum sequence length = 256) as all the sentences in our data had tokens less than 256. Each sentence is labelled as presence or absence of inhaler technique, and then a document-level classification was performed by examining sentences within a given document—i.e., presence of inhaler technique if exists any sentences with inhaler technique; absence of inhaler technique if there is no sentence with inhaler technique in a given document. We implemented a cyclical learning rate with triangular mode scheduler ranging between lower bound of 2e−5 and upper bound of 5e−5 with a step size of 2500 and initialized at 3e−5 learning rate. The model was trained, validated (10 epochs), and tested on manual chart reviewed data. A part of the training set (about 12%) was used as validation set for inhaler technique. In the training set (sentences), only 0.4% of them is presence of inhaler techniques and the test has 0.56% presence of inhaler techniques. The data sets are highly imbalanced and thus the cost sensitivity approach [35] was used to deal with the imbalanced data issue; we set the weights in our cross entropy loss function and incorporated it into our BERT model to penalize more towards misclassification on minority samples.

The cBERT differs in the pretrained contextual representations from the BERT and has vocabulary size of 28,996. This model was implemented using similar cyclical learning rate and cost sensitivity approaches similar to BERT.

BERT and cBERT with distant supervision (BERT-DS and cBERT-DS)

Figure 1 shows an overview of the process. The weakly labeled data, which used a rule-based model (“Rule-based model” section) to label presence or absence of inhaler technique, were used to train the BERT and cBERT model. These weak-labeled trained models are referred to as BERT-DS (BERT trained on distant supervised data [i.e., weak-labeled data]) and cBERT-DS (cBERT trained on distant supervised data). The training sets (sentences) are significantly imbalanced with 0.124% of presence of inhaler techniques, necessitating the use of cost sensitivity to penalize more on the minority misclassification. The cost sensitive weights were determined experimentally to [0.52, 5.52]. The model was trained for 10 epochs with the learning rate of 3e−5 and tested on the same manual chart reviewed data (“BERT and cBERT” section).

Fig. 1
figure 1

BERT-based models with distant supervision

Hybrid model

A hybrid model used post-hoc rules to fix trivial errors from BERT-DS and cBERT-DS outcomes—i.e., applied simple rules on the results from BERT-DS and cBERT-DS to overwrite class labels. The post-hoc rules were adapted from the original rules (a simplified version with relaxed or strict conditions) based on error analyses on the training set of a BERT model (i.e., by examining discrepancies between gold standard labels and BERT model outcomes). The rationale of using post-hoc rules is that a BERT model might incorrectly behave on relatively simple problems due to over- or under-fitting to the data, and this error might be corrected by rules.

Table 3 contains post-hoc rules we implemented. The rules denoted by N2P were applied on negative outcomes of BERT-DS and cBERT-DS (i.e., absence of inhaler technique) and overwrote the label to positive (i.e., presence of inhaler technique) if rules were satisfied; the rules denoted by P2N were applied on the positive outcomes of BERT-DS and cBERT-DS and overwrote the label to negative if rules were satisfied.

Table 3 Post-hoc rules in a hybrid model

Results

The performance of inhaler technique identification was compared among different models: rule-based, BERT/cBERT (trained on the small manual chart reviewed data), and BERT-DS/cBERT-DS (distant supervision; trained on the large weakly labeled data), and hybrid models (BERT-DSH and cBERT-DSH; post-hoc rules applied on BERT-DS and cBERT-DS respectively). We calculated precision, recall, various F-score (F1, F2, and F0.5), and accuracy on the test set as evaluation metrics. F1-score is a balanced F-score using harmonic mean of precision and recall; F2-score weighs recall higher than precision (i.e., false negative is more costly); F0.5-score weighs precision higher than recall (i.e., false positive is more costly).

Table 4 shows the performance among different models. The BERT and cBERT trained on the small data had similar (slightly higher) overall performance (F1-score and accuracy) compared to the rule-based model. When the distant supervision was applied (i.e., trained on the larger weakly labeled data), it produced higher performance in F1-score and accuracy than those of the rule-based and the original BERT and cBERT models trained on the small data. Although cBERT did not perform better than BERT, cBERT-DS had higher F1-score and accuracy than BERT-DS. The use of post-hoc rules on BERT-DS and cBERT-DS (a hybrid model; BERT-DSH and cBERT-DSH) further improved the performance. F2- and F0.5-score were also used to compare the different weights of false positives and false negatives. cBERT had higher F2-score but lower F0.5-score than BERT. All models costed more on false positives (i.e., F0.5-score > F2-score). Overall, cBERT-DSH performed highest for all three F-scores.

Table 4 Performance of inhaler technique identification

Actual cases of inhaler technique identification among different models were compared and analyzed (Table 5). The models using BERT and cBERT were able to correctly identify cases that are false positive (FP) by the rule-based model (Example A). These cases require to understand semantic of free text, which is difficult to handle by handcrafted rules. The rule-based model used handcrafted rules developed on the training set—i.e., keywords and their combinations in certain patterns. Explicit expressions of inhaler techniques can be handled by these rules. However, inhaler techniques are often described in indirect or complex forms of expression that require context understanding to correctly determine true inhaler techniques, not simply by presence/absence of keywords. The handcrafted rules can capture any expressions that contain relevant keyword combinations but were not able to understand context to accurately discern false positive cases, which contains keywords but not true inhaler technique semantically, leading to relatively low precision. For example, “We reviewed her medications and discussed labeling the Flovent with a green sticker for a daily inhaler…” This sentence contains keywords ‘discussed’ and ‘inhaler’ thus determined as inhaler techniques by rules. However, this does not refer to reviewing or teaching inhaler technique but discussing approaches improving compliance (i.e., false positive). Likewise, a rule-based model missed the cases that does not include relevant keywords (Example C); there is no explicit keyword related to review or teaching thus missed by rules but captured by the models using BERT-based models.

Table 5 Comparison of inhaler technique identification among different models

BERT-DS and cBERT-DS were able to identify cases missed by BERT and cBERT (Example B) but there are opposite cases as well (Example E, F). It was evident that a hybrid model could correct errors in multiple examples (Example A, D). Also, there are cases that all models failed to correctly identify inhaler techniques (Example G). The more diverse training data seem to be required for BERT-based models to identify these challenging cases.

Discussion

Reviewing and teaching asthma inhaler technique is an important factor of asthma control in NAEPP but reported low clinicians’ adherence. The assessment of clinician’s adherence to reviewing inhaler technique requires manual chart review or necessitates advanced techniques to understand semantics in clinical free text in order to automate the process. This study addresses this need by developing a deep learning-based model (BERT-based models) coupled with distant supervision and post-hoc rules (hybrid approach).

A rule-based model is transparent, easily customizable, and suitable to capture relatively simple and clear concepts with explicit keywords, but labor-intensive requiring expert knowledge. It is less likely suffered from imbalance data but difficult to capture semantics of true inhaler techniques, often causing false positive cases (relatively lower precision than BERT-based models). This is because rules are based on presence of keywords (e.g., discuss, nebulizer) but lack contextual understanding to discern unrelated cases as seen in Table 5. A BERT-based model demonstrated a capability to overcome the limitation of a rule-based model but it requires large enough data to outperform the rules. As can be seen in Table 4, BERT-based models (BERT, cBERT) trained on the small data set (same data as the rule-based model) showed similar performance compared to the rule-based model but they can avoid labor-intensive rule development. A distant supervision is a promising way to generate large data without costly manual annotation for the training set. BERT-based model using weakly labeled data outperformed both a rule-based and original BERT-based models on the small data, and may be further improved when applied on larger data.

Interestingly, the patterns or semantics learned by BERT-based models on the small data by manual chart review seem to be different from BERT-based models with distant supervision, which is evident from several examples. This may be because the weakly label data generated by rules were biased on explicit existence of reviewing/teaching indications and inhaler keywords (e.g., “reviewed inhaler use”), whereas the small data (manual chart reviewed data) contain relatively more portion of implicit descriptions in EHRs. All models failed to identify certain cases that do not contain explicit indications but require rather semantic inference (Table 5 Example G). More data with diverse semantic expressions would be needed for BERT-based models to better learn these problems. A hybrid approach using post-hoc rules on top of BERT-based models further improved the performance. This indicates that post-hoc rules could be used as a complimentary to fix some BERT-based model errors, diminishing the issue of the model generalizability or specialization due to limited data.

The BERT-based model (including a hybrid model) can be used to automatically assess clinicians’ adherence to asthma guidelines (i.e., clinicians’ documentation regarding asthma-related information of patients) which often reflects care quality for asthma. Under the current pay for performance or value-based care policy promoting health care organizations to achieve the quadruple aim for value-based care (improve care quality, user experience and health outcomes; reduce health care costs), availability of the efficient and effective (i.e., automated) method of measuring care quality such as clinician’s adherence to guidelines beyond structured data (e.g., ED visit for asthma) can be instrumental. In this respect, the presented work lays an important foundation for optimizing asthma care and research in the future.

In addition, the model can also discover the variability of adherence of individual clinicians to derive evidence from their actual clinical practice reflected in EHR documents. This variation in documenting asthma-related events in EHRs impacted health outcomes (e.g., increased ED visits) and also has an important clinical implication such as a proficiency in achieving clinical competence in asthma care and documentation. Thus, this individualized digital assistant has a potential to improve accuracy and quality of clinical documentation as well as better guide clinicians’ monitoring asthma care. The medical education requires the provision of data-driven clinical practice derived from actual clinical notes. However, many programs lack tools to this assessment because manual chart review of clinical notes is challenging. Our models can help address this challenge and provide personalized clinical effectiveness data derived from clinical documentation, improving clinician’s adherence to asthma guidelines and ultimately better optimize asthma care and education.

There are several limitations in this study. We observed some inconsistency in manual annotation of inhaler technique and reconciled them during the model development. However, there still might be some inconsistent annotation in the data due to the intrinsic complexity of the definition of clinician’s adherence behavior and documentation for inhaler techniques in EHRs. Although this inconsistency often exists in clinical NLP tasks due to ambiguity in problem definition, it may affect the model’s behavior. Some incorrect weak labels generated by rules might hinder efficacy of distant supervision, but rules performed reasonably well to augment the training set and further improve the performance of BERT-based models. The hybrid approach that overrides the prediction of BERT-based models might correct some of these issues. Our models were developed using clinical notes in a single institution tailored to a specific EHR system. Although we achieved high performance, the models may not perform similarly on EHR data from institutions due to EHR variabilities.

Conclusions

A deep learning approach (BERT-based models) with distant supervision (i.e., trained on weakly labeled data) demonstrated the capability to identify inhaler techniques, which require semantic understanding in clinical narratives, and outperformed both the rule-based model and the original BERT-based models on the small data. With a distant supervision approach, we may alleviate costly manual chart review to generate the training data required in most deep learning-based model. The use of post-hoc rules in a hybrid approach further improved the performance of BERT-based models, indicating a potential as a complimentary in deep learning model development when there is not enough training data to correctly learn all patterns. The proposed approach might be a potential alternative to a rule-based model.

Availability of the data and materials

The data are not publicly shareable as they contain protected health information.

Abbreviations

BERT:

Bidirectional encoder representations from transformers

cBERT:

Clinical BioBERT

EHRs:

Electronic health records

NAEPP:

National asthma education and prevention program

NLP:

Natural language processing

References

  1. Centers for Disease Control and Prevention. Vital signs: asthma prevalence, disease characteristics, and self-management education: United States, 2001–2009. MMWR Morb Mortal Wkly Rep. 2011;60(17):547.

    Google Scholar 

  2. Lethbridge-Çejku M, Vickerie JL. Summary health statistics for US adults; National health interview survey. 2003.

  3. Stanton MW, Rutherford M. The high concentration of US health care expenditures. Rockville: Agency for Healthcare Research and Quality Rockville; 2006.

    Google Scholar 

  4. National Heart, Lung, Blood Institute. Expert panel report III: guidelines for the diagnosis and management of asthma. 2007.

  5. Piecoro LT, Potoski M, Talbert JC, Doherty DE. Asthma prevalence, cost, and adherence with expert guidelines on the utilization of health care services and costs in a state Medicaid population. Health Serv Res. 2001;36(2):357.

    CAS  PubMed  PubMed Central  Google Scholar 

  6. Senthilselvan A, Lawson JA, Rennie DC, Dosman JA. Regular use of corticosteroids and low use of short-acting β2-agonists can reduce asthma hospitalization. Chest. 2005;127(4):1242–51.

    CAS  PubMed  Google Scholar 

  7. Cloutier MM, Hall CB, Wakefield DB, Bailit H. Use of asthma guidelines by primary care providers to reduce hospitalizations and emergency department visits in poor, minority, urban children. J Pediatr. 2005;146(5):591–7.

    Article  Google Scholar 

  8. Fox P, Porter PG, Lob SH, Boer JH, Rocha DA, Adelson JW. Improving asthma-related health outcomes among low-income, multiethnic, school-aged children: results of a demonstration project that combined continuous quality improvement and community health worker strategies. Pediatrics. 2007;120(4):e902–11.

    Article  Google Scholar 

  9. Mold JW, et al. Implementing asthma guidelines using practice facilitation and local learning collaboratives: a randomized controlled trial. Ann Fam Med. 2014;12(3):233–40.

    Article  Google Scholar 

  10. Yee AB, Fagnano M, Halterman JS. Preventive asthma care delivery in the primary care office: missed opportunities for children with persistent asthma symptoms. Acad Pediatr. 2013;13(2):98–104.

    Article  Google Scholar 

  11. Yawn BP, Rank MA, Cabana MD, Wollan PC, Juhn YJ. Adherence to asthma guidelines in children, tweens, and adults in primary care settings: a practice-based network assessment. Mayo Clin Proc. 2016;91(4):411–21.

    Article  Google Scholar 

  12. Weber GM, Kohane IS. Extracting physician group intelligence from electronic health records to support evidence based medicine. PLoS ONE. 2013;8(5):e64933.

    Article  CAS  Google Scholar 

  13. Shapiro A, Gracy D, Quinones W, Applebaum J, Sarmiento A. Putting guidelines into practice: improving documentation of pediatric asthma management using a decision-making tool. Arch Pediatr Adolesc Med. 2011;165(5):412–8.

    Article  Google Scholar 

  14. Devlin J, Chang M-W, Lee K, Toutanova K. Bert: Pre-training of deep bidirectional transformers for language understanding. 2018. arXiv preprint https://arxiv.org/1810.04805.

  15. Wang Y et al. A deep representation empowered distant supervision paradigm for clinical information extraction. 2018. arXiv preprint https://arciv.org/1804.07814.

  16. Su P, Li G, Wu C, Vijay-Shanker K. Using distant supervision to augment manually annotated data for relation extraction. PLoS ONE. 2019;14(7):e0216913.

    Article  CAS  Google Scholar 

  17. Wi C-I, et al. Natural language processing for asthma ascertainment in different practice settings. J Allergy Clin Immunol Pract. 2018;6(1):126–31.

    Article  Google Scholar 

  18. Wi C-I, et al. Application of a natural language processing algorithm to asthma ascertainment: an automated chart review. Am J Respir Crit Care Med. 2017;196(4):430–7.

    Article  Google Scholar 

  19. Kaur H, et al. Automated chart review utilizing natural language processing algorithm for asthma predictive index. BMC Pulm Med. 2018;18(1):1–9.

    Article  Google Scholar 

  20. Sohn S, et al. Clinical documentation variations and NLP system portability: a case study in asthma birth cohorts across institutions. J Am Med Inform Assoc. 2018;25(3):353–9.

    Article  Google Scholar 

  21. Sohn S, et al. Ascertainment of asthma prognosis using natural language processing from electronic medical records. J Allergy Clin Immunol. 2018;141(6):2292–4.

    Article  Google Scholar 

  22. Juhn Y, Liu H. Artificial intelligence approaches using natural language processing to advance EHR-based clinical research. J Allergy Clin Immunol. 2020;145(2):463–9.

    Article  Google Scholar 

  23. Wang Y, et al. A clinical text classification paradigm using weak supervision and deep representation. BMC Med Inform Decis Mak. 2019;19(1):1.

    Article  Google Scholar 

  24. Shickel B, Tighe PJ, Bihorac A, Rashidi P. Deep EHR: a survey of recent advances in deep learning techniques for electronic health record (EHR) analysis. IEEE J Biomed Health Inform. 2017;22(5):1589–604.

    Article  Google Scholar 

  25. Kalyan KS, Sangeetha S. Bertmcn: mapping colloquial phrases to standard medical concepts using bert and highway network. Artif Intell Med. 2021;112:102008.

    Article  Google Scholar 

  26. Si Y, Wang J, Xu H, Roberts K. Enhancing clinical concept extraction with contextual embeddings. J Am Med Inform Assoc. 2019;26(11):1297–304.

    Article  Google Scholar 

  27. Wei Q et al. Relation extraction from clinical narratives using pre-trained language models. In: AMIA annual symposium proceedings, 2019. American Medical Informatics Association, 2019; p. 1236.

  28. Chen T, Mingfen W, Li H. A general approach for improving deep learning-based medical relation extraction using a pre-trained model and fine-tuning. Database. 2019. https://doi.org/10.1093/database/baz116.

    Article  PubMed  PubMed Central  Google Scholar 

  29. Costa AD et al. Multiple sclerosis severity classification from clinical text. 2020. arXiv preprint https://arxiv.org/2010.15316.

  30. Mulyar A, Schumacher E, Rouhizadeh M, Dredze M. Phenotyping of clinical notes with improved document classification models using contextualized neural language models. 2019. arXiv preprint https://arxiv.org/1910.13664.

  31. Lee J, et al. BioBERT: a pre-trained biomedical language representation model for biomedical text mining. Bioinformatics. 2020;36(4):1234–40.

    CAS  PubMed  Google Scholar 

  32. Huang K, Altosaar J, Ranganath R. Clinicalbert: modeling clinical notes and predicting hospital readmission. 2019. arXiv preprint https://arxiv.org/1904.05342.

  33. Alsentzer E et al. Publicly available clinical BERT embeddings. 2019. arXiv preprint https://arxiv.org/1904.03323.

  34. Liu H et al. An information extraction framework for cohort identification using electronic health records. Presented at the AMIA Summits Transl Sci Proc, San Francisco, CA, 2013.

  35. Madabushi HT, Kochkina E, Castelle M. Cost-sensitive BERT for generalisable sentence classification with imbalanced data. 2020. arXiv preprint https://arxiv.org/2003.11563.

Download references

Acknowledgements

This article was selected for journal extension from the Fifth International Workshop on Semantics-Powered Health Data Analytics (SEPDA 2020). The original conference article can be accessed at https://ieeexplore.ieee.org/document/9313224.

About this supplement

This article has been published as part of BMC Medical Informatics and Decision Making Volume 21 Supplement 7 2021: Selected articles from the Fifth International Workshop on Semantics-Powered Data Mining and Analytics (SEPDA 2020). The full contents of the supplement are available at https://bmcmedinformdecismak.biomedcentral.com/articles/supplements/volume-21-supplement-7.

Funding

This study was supported by NIAID R21 AI142702, NHLBI R01 HL126667 and NIA R01 AG068007. The publication costs are funded by the grant NIAID R21 AI142702. The funders did not play any role in the design of the study, the collection, analysis, and interpretation of data, or in writing of the manuscript. The content is solely the responsibility of the authors and does not necessarily represent the official views of the National Institutes of Health.

Author information

Authors and Affiliations

Authors

Contributions

BA, YJ, and SS conceived the study and design. BA and SS drafted the initial manuscript. BA and ES acquired the data and implemented the algorithms. JY and HS reviewed and annotated the data. BA, ES, CW, and SS analyzed the data and results. All authors read and approved the final manuscript.

Corresponding author

Correspondence to Sunghwan Sohn.

Ethics declarations

Ethics approval and consent to participate

This study was approved by the Mayo Clinic internal review board. The study was a retrospective study utilizing study subjects’ EHRs. We only included those who granted authorization for accessing their EHRs for research. Therefore, we did not require the study-specific consent to participate in the study.

Consent for publication

Not applicable.

Competing interests

The authors declare that they have 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

Agnikula Kshatriya, B.S., Sagheb, E., Wi, CI. et al. Identification of asthma control factor in clinical notes using a hybrid deep learning model. BMC Med Inform Decis Mak 21 (Suppl 7), 272 (2021). https://doi.org/10.1186/s12911-021-01633-4

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/s12911-021-01633-4

Keywords