Literature DB >> 29888086

Adapting Word Embeddings from Multiple Domains to Symptom Recognition from Psychiatric Notes.

Yaoyun Zhang1, Hee-Jin Li1, Jingqi Wang1, Trevor Cohen1, Kirk Roberts1, Hua Xu1.   

Abstract

Mental health is increasingly recognized an important topic in healthcare. Information concerning psychiatric symptoms is critical for the timely diagnosis of mental disorders, as well as for the personalization of interventions. However, the diversity and sparsity of psychiatric symptoms make it challenging for conventional natural language processing techniques to automatically extract such information from clinical text. To address this problem, this study takes the initiative to use and adapt word embeddings from four source domains - intensive care, biomedical literature, Wikipedia and Psychiatric Forum - to recognize symptoms in the target domain of psychiatry. We investigated four different approaches including 1) only using word embeddings of the source domain, 2) directly combining data of the source and target to generate word embeddings, 3) assigning different weights to word embeddings, and 4) retraining the word embedding model of the source domain using a corpus of the target domain. To the best of our knowledge, this is the first work of adapting multiple word embeddings of external domains to improve psychiatric symptom recognition in clinical text. Experimental results showed that the last two approaches outperformed the baseline methods, indicating the effectiveness of our new strategies to leverage embeddings from other domains.

Entities:  

Year:  2018        PMID: 29888086      PMCID: PMC5961810     

Source DB:  PubMed          Journal:  AMIA Jt Summits Transl Sci Proc


Introduction

Mental health is increasingly recognized as an important topic in healthcare.[1] In recent years, there has been rapid growth in the implementation of electronic health records (EHRs), leading to an unprecedented expansion in the availability of dense longitudinal datasets for clinical and translational research for psychiatric disorders. Psychiatric symptoms, as one type of fundamentally important information, are usually obtained through interpersonal communications and recorded in clinical text in EHRs.[2] Information about the nature, severity, and impact of psychiatric symptoms is indispensable for both the diagnosis of mental disorders, and the customization of interventions to treat them.[3] Therefore, it is desirable to develop automated approaches to extract psychiatric symptoms from clinical text. However, psychiatric symptoms often consist of subjective and individualized descriptions, which are present in details of the patient’s experience (Figure 1). Instead of a single word or simple noun phrase, psychiatric symptoms have tremendous syntactic and semantic variability.[3] Moreover, symptoms in clinical notes of different institutions, different types of mental disorders (e.g., bipolar disorder vs. substance abuse) and different populations (e.g., adults, teenagers, military veterans) may have their own sub-languages. Therefore, it is quite challenging for traditional natural language processing (NLP) techniques to automatically extract such diverse mentions of psychiatric symptoms from text. On one hand, existing clinical terminologies such as in Unified Medical Language System (UMLS), SNOMED-CT, and ICD-9 code have low coverage of such complex expressions[3]. On the other hand, conventional supervised learning-based methods (typically the algorithm of conditional random fields-CRF[4]) are widely employed for clinical concept recognition. Such methods rely heavily on NLP feature engineering, leading to systems not generalizable to other clinical texts with different sub-languages.[5]
Figure 1.

An example paragraph from psychiatric notes with symptoms. The psychiatric symptoms are highlighted in italic.

Although emerging research activities have used NLP techniques to unlock information in psychiatric text for various applications recently[6,7,8,9], only a few efforts have been made to extract psychiatric symptoms. Given that the diversity and sparity of psychiatric symptoms require a vastly larger labeled corpus compared to concepts like diseases and medications, Gorrell et al. applied active learning to alleviate this problem for negative symptom recognition of schizophrenia.[2] However, domain experts still need to be heavily involved in this process. In contrast, our previous work employed an unsupervised framework to address this problem by leveraging distributional representation of phrases.[10] In their work, symptoms were collected from online knowledge sources and candidate symptoms were identified based on semantic similarity.[10] However, our previous study mainly focused on extracting a highquality candidate list of symptoms; further accurate classification of each specific mention in the context of clinical notes is left to future work. In previous research, we have used distributed representations of phrases composed from word embeddings produced using Latent Semantic Analysis (LSA)[11] as a basis for supervised learning of the relationship between phrases in psychiatric narrative and diagnostically meaningful categories, such as “mood disorders” and “dangerousness”.[12] While this work demonstrated the utility of distributed representations learned from a background corpus for the classification of psychiatric symptoms, it was limited in scope to a small number of symptom categories, and did not evaluate the influence of different source corpora on classifier performance. Neural networks, or deep learning-based methods, are growing in popularity as approaches to NLP. Deep learning-based methods do not need time-consuming and labor-intensive feature engineering.[13,14] Instead, word embeddings pre-trained from large-scale unlabeled corpora are usually used as features.[15] As the currently most widely-used distributional semantic representation (i.e., vector representation) of words, neural word embeddings (such as those produced by the word2vec software package[16]) are assumed to capture the latent syntactic/semantic information of a word, because the resulting vector representations for words will be similar if these words occur in similar local contexts.[16] While this is also the case for prior distributional models such as LSA, neural embeddings have shown advantages over other distributional models with optimized parameters in some experiments.[17] Deep learning methods are well-suited to leverage these representations, as they both exemplify the parallel distributed representation paradigm.[18] Thus, the framework of deep learning-based methods with word embedding features has stronger generalizability to resolve the diversity and sparseness of natural language.[16] This is particularly important in psychiatry on account of different ways in which patients describe their experience of illness, which may explain in part the promising performance of deep learning based methods on NLP tasks in this domain. Furthermore, a recent study of Habibi et al. demonstrated that using deep learning-based methods outperformed state-of-the-art entity-specific NER tools and an entity-agnostic CRF implementation by a large margin, by conducting experiments on 33 data sets covering five different entity classes in the biomedical literature and patent domains.[13] However, due to the fact that there is no publicly available, large corpus of psychiatric notes, external resources are necessary for building the distributional representations. On the other hand, word embeddings from multiple largescale external resources such as MEDLINE and Wikipedia have been applied and demonstrated their effectiveness on clinical NLP tasks, such as estimation of the semantic similarity and relatedness between clinical concepts[19], NER[20], and assertion identification[20]. So far, current works mainly investigated word embeddings derived from external resources by using them directly, or combining the corpora of multiple sources to train a single word embedding model.[10,19,20] An issue with the former approach is that word embeddings from different sources may need to be adapted to the clinical domain for optimal performance, and an issue with the latter is that the distributional information from larger general-domain corpora may overwhelm that of a small target domain corpus. Domain adaptation technologies could be a solution to address the first of these problems. Domain adaptation attempts to maximize the use of existing data (source) for the data of interest (target) by learning useful aspects of source data. It has been applied for various NLP tasks in the biomedical domain, such as semantic role labeling in biomedical literature[21] and clinical notes,[22] automatic discourse connective detection in biomedical text,[23] and de-identification of psychiatric text.[24] However, few studies have been conducted on domain adaptation of word embeddings, yet. This study addresses the use and adaptation of word embeddings derived from external domains for symptom recognition from psychiatrist text, using deep learning-based algorithms. Specifically, four domains – intensive care, biomedical literature, Wikipedia and Psychiatric Forum are used as source domains (D and adapted to the target domain (D) of psychiatrist text. Word embeddings of each D are investigated using four different approaches. First, two basic approaches commonly used in previous works in the clinical domain [cite] are employed: (1) using word embeddings of D only and (2) directly combining data of D and D to generate word embeddings. In addition, two novel approaches are also implemented to adapt word embeddings of D to D by (3) assigning different weights to word embeddings of D and D and (4) retraining the word embedding model of each D using the available dataset of D To the best of our knowledge, this is the first work of adapting multiple word embeddings of external domains to psychiatric symptom recognition from clinical text. Experimental results demonstrated that the proposed strategies achieve promising performance, which outperformed the baseline of only using word embeddings of D and a CRF-based system with fine-tuned features.

Methods

Study design

Figure 2 shows the study design of domain adaptation based psychiatric symptom recognition. For this task, data from four source domains (D) - intensive care, biomedical literature, Wikipedia and Psychiatric Forum - are employed for domain adaptation. After word embeddings are generated by applying different strategies on data of D and D, they are fed into the deep learning-based methods as initial features to train automate systems for psychiatric symptom recognition. The systems are evaluated based on predictions on the test dataset.
Figure 2.

Study design of adapting word embeddings of multiple source domains to psychiatric notes for psychiatric symptom recognition using the deep learning method.

Datasets

We used five unlabeled datasets in our study, four as source domain datasets and one as the target dataset, as described below: Source domain datasets: (1) MIMIC III[25] is a publicly available collection of clinical notes in intensive care unit (ICU), which is commonly used to generate word embeddings for clinical NLP. (2) MEDLINE is a collection of scientific article abstracts in the biomedical domain. While MEDLINE covers clinical concepts such as diseases, medication and treatments, it contains well-formed sentences different from the telegraphic style in clinical notes. We used the MEDLINE data of 2013 in this study. (3) Psychiatric Forum is a collection of forum posts on the WebMD Community. The forum posts are written largely by health consumers, who use similar expressions to those of patients, as recorded in their psychiatric notes. (4) Wikipedia is an online encyclopedia built from crowdsourcing. It has extensive coverage of topics of multiple domains, including medical topics. The text in Wikipedia is usually well formed. Target domain dataset: The psychiatric notes provided by the CEGS N-GRID 2016 challenge[26] organizers are used for as the target domain dataset in this study. This is the first corpus of mental health records released to the NLP research community, which contains about 1,000 initial psychiatric evaluation records. These records were produced by psychiatrists during the course of the elicitation of psychiatric signs and symptoms, disorders, and other medical conditions in order to decide the course of treatment. Table 1 displays the statistics of the five corpora, including the size of data, number of unique tokens and the percentage of token overlap between each source and the target data.
Table 1.

Corpus statistics for MIMIC, MEDLINE, Psychiatric Forum, Wikipedia and psychiatric notes.

CorpusSize of data#Unique tokens#Coverage of target tokens
SourceMIMIC III1.95G257,4723,029 (73.1%)
MEDLINE1.3G251,0803,947(95.2%)
Psychiatric Forum78.5M36,3363,264 (78.8%)
Wikipedia10.4G2,448,5524,063 (98.0%)
TargetPsychiatric Notes2.4M4,144#

Methods of using word embeddings of source domains

Firstly, two basic approaches commonly used in previous works in the clinical domain are employed: Source_only: directly using word embeddings of each D to initiate the features of the deep learning-based method; Source+target: directly combining datasets of each D with D to generate the word embeddings; Moreover, two domain adaptation strategies are investigated, in order to better leverage the word embeddings of D Weighted_concatenate: concatenating the word embedding vectors of D and D Different weights are assigned to the word embeddings of D, based on the intuition that word embeddings more important to the system performance should be assigned higher weights as features.[27] Retrain_source: re-training the word embedding models of D using DT. In this approach, the final input and output weights of a neural network trained on D serve as the initial input and output weights for the derivation of embeddings from D. In this way, the original semantic distributions and representations of words in D are adjusted in accordance with their distributions in D, mediating their adaptation to the target domain.

Deep learning algorithm

The deep learning algorithm of long short-term memory network-conditional random field (LSTM-CRF) proposed by Lample et al. is employed to build the psychiatric symptom recognition model.[15] This algorithm adds a layer of CRF based prediction model on top of the original bi-directional LSTM structure of recurrent neural network (RNN), and has shown state-of-the-art performance in various NER tasks in open domain and biomedical text.[15]

Experiments and evaluation

Method comparison: Experiments were conducted to systematically investigate the performance of the Source_only, Source+target, weighted_concatenate, and Retrain_source methods. For the weighted_concatenate method, weight in the range of [1,10] was assigned to word embeddings of D and the optimal performance was reported. Moreover, to examine the effectiveness of these algorithms, three baseline methods were also developed for comparison: the “Randomize” method without using any pre-trained word embeddings, the “Target_only” method using only word embeddings of D to train a model, and a CRF-based model using a fine-tuned feature set.[28] Parameter setup: The gensim implementation[29] of the neural network architectures provided by the word2vec package [cite] was used to train the word embeddings of each domain, because this package permits retraining an existing model. The corpus used for retraining is not necessarily the same as the corpus from which the original model was generated. The parameters of the word2vec model include: (1) the skip-gram architecture was adopted to train the model; (2) the window size was set to 4; (3) in this preliminary study, the dimensionality of embedding vectors was set to 50 for the Target_only, Source_only, Source+target and Retrain_source methods, and 100 for the Weighted_concatenate method; (4) the initial learning rate (i.e., alpha) was 0.025; (5) and all the words with total frequency lower than 5 (i.e., min_count) were ignored. Each word embedding model was trained for 100 epochs. As for the LSTM-CRF algorithm, we followed the optimal parameter setup established in the work of Lample et al.[15] Evaluation: 400 psychiatric notes are annotated with symptoms. These were split into training (60%), development (20%) and test datasets (20%) for experiments. Each model was trained for a total of 100 epochs using the training set. The performance on the test dataset was reported using the optimal model evaluated on the development set. The performance of psychiatric symptom recognition was evaluated using precision, recall and the F-measure.

Results

Table 2 illustrates the results for RNN-based psychiatric symptom recognition using word embeddings from multiple domains. The Target_only baseline of using word embeddings generated from psychiatric notes outperformed the model with randomized word embedding features (F-measure: 67.26% vs. 65.87%). Applying word embeddings of the source domains further improved the performance of the Target_only baseline. For the Source_only method, the Wikipedia dataset yielded the highest F-measure of 69.51% among the four source datasets, while MIMIC produced the lowest F-measure of 67.34%.
Table 2.

Results for RNN-based psychiatric symptom recognition using word embeddings from multiple domains (%).

CorpusMethodPRF-measure
NoneRandomize68.9363.0665.87
Psychiatric NotesTarget_only70.8264.0567.26
Psychiatric ForumSource_only67.8567.4267.63
Source+target69.3465.5267.38
Weighted_concatenate72.0164.0567.80
Retrain_source71.6064.8468.05
MimicSource_only69.6665.1667.34
Source+target67.8666.7167.28
Weighted_concatenate69.5266.9068.19
Retrain_source71.2567.8769.52
WikipediaSource_only69.9969.0469.51
Source+target69.8068.8269.30
Weighted_concatenate71.4266.8669.07
Retrain_source69.5066.1967.80
MEDLINESource_only72.1863.8567.76
Source+target71.8264.0567.71
Weighted_concatenate68.9567.3468.14
Retrain_source73.6264.8168.49
Interestingly, for this task of psychiatric symptom recognition, the performance of Source+target was lower than the Source-only method. The Source-only method performed best when Wikipedia was the source corpus only. With all other corpora, models that considered the target prevailed. This may reflect the importance of general-domain semantic information for the interpretation of patients’ descriptions of their subjective experience of their symptomatology, a point we have argued previously.[12,30] Assigning higher weights to word embeddings of the source domains in the concatenation (Weighted_concatenate) generally outperformed the methods of Source+target and Source_only, with the exception of the Wikipedia corpus. Nevertheless, Wikipedia still produced the highest F-measure of 69.07% when using concatenation methods among the four D. In contrast, the Retrain_source method achieved the highest F-measure for three D (Psychiatric Forum, MIMIC and MEDLINE), with the optimal performance of 69.52% yielded by retraining on MIMIC. In contract, Wikipedia produced the lowest F-measure of 67.80% with this method. To examine whether our proposed methods could achieve the state-of-the-art performance for psychiatric symptom recognition. We further compared our methods with the CRF algorithm using a fine-tuned feature set. [28] Table 3 listed the performance of using CRF, Target_only, Source_only with Wikipedia as D, Weighted_concatenate with Wikipedia as D and Retrain_source with MIMIC as D. Considering the practical usage of the psychiatric symptom recognition system, performance of both exact match and partial match was reported. As can be seen, the performance of CRF was better than the Target_only method (F-measure: 67.40% vs. 67.26%), demonstrating that CRF was a strong baseline. Notably, by adapting word embeddings from source domains using different methods, the psychiatric symptom recognition systems built in this study achieved better performance than the system based on CRF. Among all the methods, Retrain_Source with MIMIC as D achieved the best F-measure of 86.80% in terms of partial match.
Table 3.

Performance comparison between the Deep learning based algorithm and the CRF algorithm for psychiatric symptom recognition (%).

Discussion

Recently there has been a rapid growth of deep learning methods, and their application to various NLP tasks. This growth has been promoted by the availability of word embeddings pre-trained from large-scale corpora of multiple domains. However, many clinical sub-domains may not have publicly available, large corpus, and external resources are necessary for building the distributional representations. This study exploits word embeddings of external domains for clinical NLP tasks. Specifically, we take the psychiatric symptom recognition task as a typical use case. Extracting psychiatric symptoms from clinical text suffers from the data sparseness problem and a low coverage of relevant terms in existing biomedical lexicons, making it challenging to apply traditional named entity recognition methods to this task. We evaluated different approaches toward adapting word embeddings from four source domains to recognize entities of psychiatric symptoms using deep learning methods. To the best of our knowledge, this is the first work of adapting multiple word embeddings to psychiatric symptom recognition. Experimental results showed that the proposed domain adaptation strategies could achieve promising performance, outperforming the other strategies evaluated, and a system built with CRF algorithm and fine-tuned features. To further improve the performance, we looked into the current prediction errors of psychiatric symptom recognition. The major reasons of false positive and false negative errors are illustrated in Table 4. A majority of false positive errors are caused by recognizing terms that may stand for psychiatric symptoms in wrong context, such as the term of “anxiety” in the context of “from a mood and anxiety standpoint”. In addition, some general expressions that do not convey specific psychiatric symptoms are another cause of false positive errors. Moreover, although some authentic clinical symptoms/disorders are recognized, there is no explicit evidence in the context to indicate that they are related to mental disorders, which leads to false positive errors. As for the false negative errors, psychiatric symptoms present in complex syntactic structures such as conjunctive structures are often missed to be identified. Besides, abbreviations of psychiatric symptoms are frequently used in psychiatric text and miss-identified by the system. Some psychiatric symptoms are of rare patterns, whereas the telegraphic writing style in psychiatric text also causes some false negative errors. Furthermore, we also reviewed the symptom predictions partially matched with gold-standard symptoms; some typical examples are illustrated in Table 5. As can be seen, some of the boundary errors were not critical, in terms of recognizing essential symptoms entities. Therefore, we argue that in-exact matching could be reasonable in psychiatrc symptom recognition.
Table 4.

Error analysis of deep learning based psychiatric symptom recognition. False positive/negative errors are highlighted in italic.

Error typeExample
False positive
Term taken out of contextShe felt very well from a mood and anxiety stand point prior to pregnancy
Non-specific symptomatologyit is in context of needing to work long hours and sometimes can be associated with impulsive incidents in the remote past but no recent episodes
Non-psychiatric symptomatologyPatient is legally blind and has had impaired hearing since birth.
False negative
Complex syntactic structurenotices light sensitivity, emotional numbness / detachment / lack of interest in usual activities cluster B traits, (rigidity, interpersonal difficulty, degree of perfectionism)
AbbreviationsDenies history of symptoms of AH / VH / TH / OH / GH / TI / TB / TW / IOR
Rare symptom patternAt heaviest use was smoking 7 grams cannabis per day (for 5 mths, fall 2082 while at college)
Telegraphic writingBrother bipolar sometimes violent
Table 5.

Examples of partial matched psychiatric symptoms.

Symptom annotationPartially matched symptom
Suicidal thoughtsPeriods of suicidal thoughts
etoh or drug usedrug use
Complicated Grief; pain medication abuseComplicated Grief and pain medication abuse
subjective sense of “ brain fogginesssense of “ brain fogginess
had anxiety all my lifeanxiety
Previous works on exploiting word embeddings of multiple D have obtained different findings in terms of their contribution to specific tasks in D. For example, Roberts[27] assessed the performance of word embedding based features on the i2b2 2010 concept recognition and assertion identification tasks and found that merging multiple corpora to generate word embeddings generally worked best. He also pointed out that the single-best corpus was generally task-dependent.[27] Pakhomov et al.[25] constructed word embeddings of clinical terms for semantic similarity and relatedness between clinical concept pairs and found that measures computed from biomedical literature were on par with measures computed from clinical reports, while measures from Wikipedia were worse than sources from the biomedical domain. Zhang et al. [31] used embeddings of short text and semantic similarity to identify psychiatric symptom candidates and found that the dataset from Psychiatric Forum contributed the most and the MIMIC corpus decreased the performance when merged with the other corpora. In contrast, our study of using word embedding based features and deep learning-based supervised methods for psychiatric symptom extraction found that the two novel methods of Weighted_concatenate and Retrain_source achieved better performance in general, validating the effectiveness of our proposed approaches. Moreover, directly merging corpora of D and D (i.e., Source+target) decreased the performance slightly. Notably, the performance when using Wikipedia was an exception from MIMIC, MEDLINE and Psychiatric Forum in that the Source_only method performed the best, while Retrain_source got the lowest F-measure of 67.78%, a marked contrast to its leading performance with all other corpora. Limitation and future work: One limitation of our current work is that the performance difference of varying dimensions of word embedding vectors has not been examined. In addition, psychiatric symptom lexicons and syntactic patterns commonly present in the target domain will be incorporated as features of the deep learning methods, in order to tailor the system to the target domain. Besides, as shown in Table 3, the CRF-based system got higher precision than deep learning based systems, while deep learning based systems usually obtained relatively higher recall. Therefore, we will explore potential approaches to leverage the advantage of these two types of algorithms in a single system. Furthermore, domain adaptation strategies to adapt word embeddings from other domains as features in CRF will also be investigated.

Conclusion

This study takes the initiative to use and adapt word embeddings of four source domains – intensive care, biomedical literature, Wikipedia and Psychiatric Forum – to recognize symptoms in the target psychiatric domain using deep learning-based methods. Experimental results showed that the proposed domain adaptation strategies achieve promising performance, indicating that deep learning-based methods leveraging word embeddings of source domains have the potential to resolve the data diversity and scarcity challenged of clinical NLP tasks.
  18 in total

1.  A Controlled Trial Using Natural Language Processing to Examine the Language of Suicidal Adolescents in the Emergency Department.

Authors:  John P Pestian; Jacqueline Grupp-Phelan; Kevin Bretonnel Cohen; Gabriel Meyers; Linda A Richey; Pawel Matykiewicz; Michael T Sorter
Journal:  Suicide Life Threat Behav       Date:  2015-08-07

2.  Exploring dangerous neighborhoods: latent semantic analysis and computing beyond the bounds of the familiar.

Authors:  Trevor Cohen; Brett Blatter; Vimla Patel
Journal:  AMIA Annu Symp Proc       Date:  2005

3.  Domain adaptation for semantic role labeling in the biomedical domain.

Authors:  Daniel Dahlmeier; Hwee Tou Ng
Journal:  Bioinformatics       Date:  2010-02-23       Impact factor: 6.937

4.  Domain adaptation for semantic role labeling of clinical text.

Authors:  Yaoyun Zhang; Buzhou Tang; Min Jiang; Jingqi Wang; Hua Xu
Journal:  J Am Med Inform Assoc       Date:  2015-06-10       Impact factor: 4.497

5.  Corpus domain effects on distributional semantic modeling of medical terms.

Authors:  Serguei V S Pakhomov; Greg Finley; Reed McEwan; Yan Wang; Genevieve B Melton
Journal:  Bioinformatics       Date:  2016-08-16       Impact factor: 6.937

6.  A Study of Neural Word Embeddings for Named Entity Recognition in Clinical Text.

Authors:  Yonghui Wu; Jun Xu; Min Jiang; Yaoyun Zhang; Hua Xu
Journal:  AMIA Annu Symp Proc       Date:  2015-11-05

7.  Psychiatric symptom recognition without labeled data using distributional representations of phrases and on-line knowledge.

Authors:  Yaoyun Zhang; Olivia Zhang; Yonghui Wu; Hee-Jin Lee; Jun Xu; Hua Xu; Kirk Roberts
Journal:  J Biomed Inform       Date:  2017-06-15       Impact factor: 6.317

8.  Cannabis use and treatment resistance in first episode psychosis: a natural language processing study.

Authors:  Rashmi Patel; Robin Wilson; Richard Jackson; Michael Ball; Hitesh Shetty; Matthew Broadbent; Robert Stewart; Philip McGuire; Sagnik Bhattacharyya
Journal:  Lancet       Date:  2015-02-26       Impact factor: 79.321

9.  Predicting early psychiatric readmission with natural language processing of narrative discharge summaries.

Authors:  A Rumshisky; M Ghassemi; T Naumann; P Szolovits; V M Castro; T H McCoy; R H Perlis
Journal:  Transl Psychiatry       Date:  2016-10-18       Impact factor: 6.222

10.  Deep learning with word embeddings improves biomedical named entity recognition.

Authors:  Maryam Habibi; Leon Weber; Mariana Neves; David Luis Wiegandt; Ulf Leser
Journal:  Bioinformatics       Date:  2017-07-15       Impact factor: 6.937

View more
  5 in total

1.  Rapamycin - mTOR + BRAF = ? Using relational similarity to find therapeutically relevant drug-gene relationships in unstructured text.

Authors:  Safa Fathiamini; Amber M Johnson; Jia Zeng; Vijaykumar Holla; Nora S Sanchez; Funda Meric-Bernstam; Elmer V Bernstam; Trevor Cohen
Journal:  J Biomed Inform       Date:  2019-01-04       Impact factor: 6.317

2.  A Comparison of Natural Language Processing Methods for the Classification of Lumbar Spine Imaging Findings Related to Lower Back Pain.

Authors:  Chethan Jujjavarapu; Vikas Pejaver; Trevor A Cohen; Sean D Mooney; Patrick J Heagerty; Jeffrey G Jarvik
Journal:  Acad Radiol       Date:  2021-12-01       Impact factor: 3.173

Review 3.  Visualization of medical concepts represented using word embeddings: a scoping review.

Authors:  Naima Oubenali; Sabrina Messaoud; Alexandre Filiot; Antoine Lamer; Paul Andrey
Journal:  BMC Med Inform Decis Mak       Date:  2022-03-29       Impact factor: 2.796

4.  Psychosis Relapse Prediction Leveraging Electronic Health Records Data and Natural Language Processing Enrichment Methods.

Authors:  Dong Yun Lee; Chungsoo Kim; Seongwon Lee; Sang Joon Son; Sun-Mi Cho; Yong Hyuk Cho; Jaegyun Lim; Rae Woong Park
Journal:  Front Psychiatry       Date:  2022-04-05       Impact factor: 5.435

5.  Rethinking domain adaptation for machine learning over clinical language.

Authors:  Egoitz Laparra; Steven Bethard; Timothy A Miller
Journal:  JAMIA Open       Date:  2020-04-13
  5 in total

北京卡尤迪生物科技股份有限公司 © 2022-2023.