<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>CME² Net: Contextual Medical Event Extraction Network for clinical notes</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Aman Sinha</string-name>
          <email>aman.sinha@univ-lorraine.fr</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Ayan Vishwakarma</string-name>
          <email>ayanvishwakarma1248.19je0209@mc.iitism.ac.in</email>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Marianne Clausel</string-name>
          <email>marianne.clausel@univ-lorraine.fr</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Mathieu Constant</string-name>
          <email>mathieu.constant@univ-lorraine.fr</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="editor">
          <string-name>Electronic Health Record, Medical Event Extraction, Event Classification</string-name>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>ATILF, Université de Lorraine</institution>
          ,
          <addr-line>Nancy</addr-line>
          ,
          <country country="FR">France</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>IECL, Université de Lorraine</institution>
          ,
          <addr-line>Nancy</addr-line>
          ,
          <country country="FR">France</country>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>Indian Institute of Technology Dhanbad</institution>
          ,
          <addr-line>Jharkhand</addr-line>
          ,
          <country country="IN">India</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2023</year>
      </pub-date>
      <abstract>
        <p>Medication change is very important to know the medical history of a patient. Most of the clinical notes are in unstructured format and in addition to that due to its narrative nature expert human annotators are needed to interpret the events, which is quite expensive. In this work, we present an end-to-end model for the task of automatic extracting and classifying the medication change events from a clinical note. We propose a joint learning model trained with adaptive sample weighting loss which incorporates the use of clinical contextual embedding and static embeddings. Our proposed system obtained competitive performance on CMED dataset (n2c2 challenge 2022) for contextual medical event detection and classification.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        Clinical NLP has benefited by the advancement in the field of Natural Language Processing and
Information Retrieval. Several shared tasks involving automatic extraction and annotations of
medical concepts and events have been organized by BioCreative 1, and NLP clinical Challenges
(n2c2) in the past years to encourage the research on clinical textual data such as Electronic
health records (EHRs). EHRs contains unstructured data which are a rich source of information
and are essential to design custom healthcare pathways for precision medicine. The narrative
nature of EHRs often make complicates the extraction and classification of clinical events. The
arrival of transformer [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] architectures has provided new directions on clinical NLP applications
allowing to extract finer contextual aspects of events in these notes.
      </p>
      <p>The n2c2 2022 challenge2 track-1 problem statement consisted of 3 tasks, namely (a)
medication extraction, (b) event classification and (c) context classification. For a given clinical
note, the system is required to extract any mentioned medicine name, then classify whether it
is associated to a medication_change referred to as Disposition (otherwise NoDisposition or
†These authors contributed equally.
nEvelop-O
CEUR
Workshop
Proceedings
Undetermined), in which case it has to further classify the context of the medication change
event based on the following longitudinal dimensions: Action, Negation, Actor, Temporality
and Certainty.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Related Works</title>
      <p>
        Several approaches including machine learning [
        <xref ref-type="bibr" rid="ref2 ref3">2, 3</xref>
        ] and deep learning [
        <xref ref-type="bibr" rid="ref4 ref5">4, 5</xref>
        ] have been explored
to medical entities extraction and context classification.
      </p>
      <p>
        Rule-based [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] and machine learning based models [
        <xref ref-type="bibr" rid="ref2 ref3">2, 3</xref>
        ] such as Decision Tree, Naïve Bayes,
and SVM encounter dificulties because of out-of-vocabulary entities, unbalanced datasets,
indirect state changes and subtle diference between diferent class definitions. While,
deeplearning based methods such as hybrid model using RNNs and residual network [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]; multitask
learning [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] sufer mostly ambiguity caused by writing styles (such as misspellings, abbreviations,
inconsistent tense usage) in EHRs.
      </p>
      <p>We, therefore, propose CME2 network for extracting and identifying medication change event
by using static and contextual embeddings to incorporate domain and contextual information.
In this work, our main contribution are:
1. Joint end-to-end learning model for event extraction and context identification;
2. We treat the context classification as multiclass classification problem and propose use of</p>
      <p>Adaptive Sample Weighting for end-to-end model learning.</p>
    </sec>
    <sec id="sec-3">
      <title>3. Experimental Setup</title>
      <p>
        Dataset We used the provided CMED dataset [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] and
it consisted of a training set of 350 clinical notes, a
development set of 50 clinical notes and a test set of
100 clinical notes. It is relevant to note that the train
and dev set have a similar average length distribution;
977 on train and 947 on dev respectively. The longest
clinical note in train + dev has a length of 4265. The test
set had average note length of 901 words and longest
note contained 2887 words.
      </p>
      <sec id="sec-3-1">
        <title>NER + Event Classification</title>
      </sec>
      <sec id="sec-3-2">
        <title>Linear Model</title>
      </sec>
      <sec id="sec-3-3">
        <title>Head1</title>
      </sec>
      <sec id="sec-3-4">
        <title>Context Classification</title>
      </sec>
      <sec id="sec-3-5">
        <title>Linear Model</title>
      </sec>
      <sec id="sec-3-6">
        <title>Head2</title>
      </sec>
      <sec id="sec-3-7">
        <title>Concatenation</title>
        <p>
          Approach Our joint learning model is based on a Static Word Contextual
pipeline (Fig.1) whose architecture of consists of two Embedding Embedding
encoder modules i.e. static embeddings [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ] (FastText,
Glove and POS-Tagging-scheme) and contextual
embedding module (BERT-based), a feature concatenation Input Sentence
layer, and two separate linear head layers. The first
head is responsible for the medication extraction and Figure 1: Schematic Pipeline of the
event classification, while the second head determines CME2 Net
the context information for any detected Disposition
event cases by the first linear head.
        </p>
        <p>
          Prior to main experiments, we performed a model selection via the 1st task using
BERT-basecased, Bio-ClinicalBERT [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ], and BioELECTRA [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ]. We found Bio-ClinicalBERT model to be
the best among the three models and we further used it for rest of our experiments.
        </p>
        <sec id="sec-3-7-1">
          <title>Loss with adaptive sample weighting</title>
        </sec>
      </sec>
      <sec id="sec-3-8">
        <title>We perform the joint training by using an additive weighted cross-entropy loss function denoted by:</title>
        <p>L(ℒ1, ℒ2) =  1ℒ1 +  2ℒ2
Here,  1 and  2 indicates the softmax weights of the losses. We use AdamW optimizer for
training the model. For medication extraction and event classification is represented by
and that for the context classification task is represented by
weighted cross-entropy loss (CE) which is inspired by [11] and is denoted by:
ℒ2. Each ℒ corresponds to the
(1)
ℒ1
(2)

=1
ℒ = ∑(−  ln(  )) ∗ (1− &lt;   &gt;)0.1</p>
        <p>Here,   ,   refers to the prediction probability and labels respectively. The calculated value
(1− &lt;   &gt;)0.1 do not participate in gradient descent as they are detached from the computational
graph and are treated as constants. We hypothesize this to be similar to hard negative mining
[12] in computer vision, thereby we force the model to learn a good generalization, by putting
more focus on the under-confident examples.</p>
        <p>Metrics For medication extraction task (task1), Lenient F1 score was used as the primary
evaluation metric. For event classification (task2), macro f1 score and for context classification
task(task3) F1-score was used.</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Results</title>
      <p>
        With  2=0, we perform the
following mentioned tests (a) RNN-LSTM
reifnement [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] for medication extraction
task; (b) Efect of word embedding(WE),
dropout(DP), class weights(CW) and
sentence-truncation(ST); (c) Efect of
using bidirectional LSTM layer on word
embeddings and upsampling. Using the
obtained best model, we run the joint
training for the entire model.
4.1. Dev experiments
      </p>
      <p>Model
ClinicalBERT
+ biLSTM rf. + FT Head1
+ biLSTM rf. + FT BiLSTM
+ biLSTM rf. + FT Complete
+ biRNN rf. + FT Head1
+ biRNN rf. + FT biRNN
+ biRNN rf. + FT Complete</p>
      <p>Task1
a lenient F1-score of 0.9753 for task 1 and a macro lenient F1-score 0.8513 for task 2. When</p>
      <sec id="sec-4-1">
        <title>Model</title>
        <p>ClinicalBERT
+ LSTM + CE(1,0)
+LSTM + WE + CE(1,0)
+DP(0.5)+WE+CE(0.5,0.5) 3
+DP(0.5) +WE+ CE(0.5,0.5)+UPSAMPLING
+WE+ CE(0.33,0.67)+UPSAMPLING 4
bi-LSTM layer is added to the base model, the F1 score for task 1 slightly increased to 0.9758
but macro F1 for task 2 decreased to 0.8434. Similarly, when bi-RNN layer is added to the base
model the F1-score for task 1, remains unchanged but the macro F1-score for task 2 decreased
to 0.8482.</p>
        <p>
          Efect of word embedding Next, we
tried diferent combinations of dropout Model Task1 Task2
{0.2, 0.5}, adding static word embedding ClinicalBERT 0.9753 0.8513
(WE) layer, assigning class weights (CW) + DP(0.2) 0.9743 0.8377
and sentence truncation (ST) (refer Table + DP(0.2) + ST 0.9768 0.8233
2). We observed that sentence trunca- + DP(0.2) + CW + ST 0.9739 0.8238
tion and using class weights did not im- + DP(0.2) + WE 0.9684 0.8529
prove the results. We then added static ++ DDPP((00..22)) ++ WWEE ++ SCTW + ST 00..99772531 00..88325152
word embeddings, for which we used + DP(0.5) + WE 0.9792 0.8702
Glove and FastText embeddings trained + DP(0.5) + WE + ST 0.9722 0.8443
on Open Access Case Reports [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ]. We + DP(0.5) + WE + CW + ST 0.9724 0.8277
observed that adding word embeddings
and dropout rate of 0.5 increased the F1 Table 2: Efect of word embedding(WE), dropout(DP),
score for task 1 to 0.9792 and the macro class weights(CW) and
sentenceF1-score for task 2 to 0.8702. truncation(ST) on development set
Efect of using bidirectional LSTM layer We added additional biLSTM over static word
embeddings which gave an F1 score of 0.9769 on task 1 and 0.8451 on task 2 which did not
improve the model results. From all the combinations which we tried on top of Bio-ClinicalBERT,
the best was using a dropout of 0.5 with additional static word embedding encoder layer. Now,
we trained the model with cross entropy loss with ( 1, 2)=(0.5,0.5) which give F1 score of
0.9757 , 0.8150 and 0.5144 on task 1,2 and 3 respectively. We then perform the model training
with upsampling (refer Table 3) and we observe that the it enhances the performance on
the three tasks. Post-evaluation, we perform an additional model run with upsampling and
( 1  2)=(0.33,0.67) where we notice that model performance is increased as it obtains F1 score
,
of 0.9762, 0.8980 and 0.5857 on the three tasks respectively.
        </p>
        <sec id="sec-4-1-1">
          <title>3Our submitted system 4Post-evaluation system</title>
        </sec>
      </sec>
      <sec id="sec-4-2">
        <title>Task(s)</title>
        <p>NER
1 NER + Event
R</p>
        <p>E2E</p>
        <p>Event
2
R</p>
        <p>Event+Context
Context</p>
      </sec>
      <sec id="sec-4-3">
        <title>Metric</title>
        <p>Strict F1</p>
        <p>Lenient F1
Lenient micro F1</p>
        <p>Lenient macro F1
Combined Lenient F1</p>
        <p>Lenient micro F1</p>
        <p>Lenient macro F1
Combined Lenient F1
Combined Lenient F1
2nd
3rd
2nd
4th
2nd
2nd
4.2. Test experiments results
Our best submitted system obtained 0.9831 Lenient F1-score on medication extraction task
(task 1) and 0.9588 F1-score for strict matching obtaining overall second position. With the
gold labels for task 1, our best submission obtained 0.9272 F1-score on event classification for
strict matching to obtain fourth position. Finally, our post-evaluation system obtained 0.6912
F1-score on context classification to obtain overall second position on the leaderboard.</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Discussion</title>
      <p>Error analysis on development set : We observe that our model is able to extract 962 out
of the 1010 medication names exactly. The medication instances where the model was not
successful included mainly “Insulin NPH” and “contrast dye” which were detected separately. If
some medication is agglomerated such as “lipitor20”, the model extracts it entirely. Medication
brand names such as “CARDURA” , “Lamictal” were also observed to be problematic. Other
examples include “Lisinopril/HCTZ”, “Ca 600/vit D” where the model detects the medication
separately. We also observed cases where certain medication occurred multiple times in the
document and the model tagged them diferently. This can be attributed the tagging
inconsistency problem in NER. Out of 201 cases, our model classified 167 event instances correctly. For
the misclassification, we noticed that 2/3rd cases where model confuses between Undetermined
and Disposition/UnDisposition classes which can be attributed local context of the medication.
Although, we observe that our models misclassifies 70 times out of 167 context dimensions.
Further, we notice that out of 70 misclassification 5, model struggles the most with Action (43
times), Certainty and Temporality (17 times), Actor (13 times) and the least with Negation
(4 times). For Action, the error can be attributed to the fact that often medication is mentioned
as a list or patient history that are the source of error. The narrative of the clinical report often
gets confusing with Start or UniqueDose, similarily for Certainty, Hypothetical and Conditional
5Note: Detected medication change has to be annotated for all the five contextual dimensions by the model, a single
mis-classification may involve overlap of multiple errors
situation get confusing. In case of Actor, the model often confuses as the Patient/Physician
were mentioned before in the text. It is also interesting to note, model was able to predict action
in colloquial language usage such as “inc”/ “taper of” whereas gold annotation marked them
wrong.</p>
    </sec>
    <sec id="sec-6">
      <title>6. Conclusion</title>
      <p>In this work, we proposed CME2 network, a joint learning model for identification and
contextual classification for medication change in clinical notes, as part of the n2c2 challenge. For
future work , we would like to look into multilabel setting for the medication change context
classification to explore the possibility of multiple context annotation and look into methods to
incorporate more context information in the clinical note.
text encoder using discriminators, in: Proceedings of the 20th Workshop on Biomedical
Language Processing, 2021, pp. 143–154.
[11] X. Li, X. Sun, Y. Meng, J. Liang, F. Wu, J. Li, Dice loss for data-imbalanced nlp tasks, arXiv
preprint arXiv:1911.02855 (2019).
[12] R. B. Girshick, J. Donahue, T. Darrell, J. Malik, Rich feature hierarchies for accurate object
detection and semantic segmentation, CoRR abs/1311.2524 (2013). URL: http://arxiv.org/
abs/1311.2524. arXiv:1311.2524.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>A.</given-names>
            <surname>Vaswani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Shazeer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Parmar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Uszkoreit</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Jones</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. N.</given-names>
            <surname>Gomez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Kaiser</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Polosukhin</surname>
          </string-name>
          ,
          <article-title>Attention is all you need</article-title>
          ,
          <source>CoRR abs/1706</source>
          .03762 (
          <year>2017</year>
          ). URL: http: //arxiv.org/abs/1706.03762. arXiv:
          <volume>1706</volume>
          .
          <fpage>03762</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>S.</given-names>
            <surname>Sohn</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. P.</given-names>
            <surname>Murphy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. J.</given-names>
            <surname>Masanz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.-P. A.</given-names>
            <surname>Kocher</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G. K.</given-names>
            <surname>Savova</surname>
          </string-name>
          ,
          <article-title>Classification of medication status change in clinical narratives</article-title>
          ,
          <source>in: AMIA Annual Symposium Proceedings</source>
          , volume
          <volume>2010</volume>
          , American Medical Informatics Association,
          <year>2010</year>
          , p.
          <fpage>762</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>G.</given-names>
            <surname>Gkotsis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Velupillai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Oellrich</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Dean</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Liakata</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Dutta</surname>
          </string-name>
          ,
          <article-title>Don't let notes be misunderstood: A negation detection method for assessing risk of suicide in mental health records</article-title>
          ,
          <source>in: Proceedings of the Third Workshop on Computational Linguistics and Clinical Psychology</source>
          ,
          <year>2016</year>
          , pp.
          <fpage>95</fpage>
          -
          <lpage>105</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>L.</given-names>
            <surname>Rumeng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N. Jagannatha</given-names>
            <surname>Abhyuday</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Hong</surname>
          </string-name>
          ,
          <article-title>A hybrid neural network model for joint prediction of presence and period assertions of medical events in clinical notes</article-title>
          ,
          <source>in: AMIA Annual Symposium Proceedings</source>
          , volume
          <volume>2017</volume>
          , American Medical Informatics Association,
          <year>2017</year>
          , p.
          <fpage>1149</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>P.</given-names>
            <surname>Bhatia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Celikkaya</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Khalilia</surname>
          </string-name>
          ,
          <article-title>Joint entity extraction and assertion detection for clinical text</article-title>
          , arXiv preprint arXiv:
          <year>1812</year>
          .
          <volume>05270</volume>
          (
          <year>2018</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>H.</given-names>
            <surname>Harkema</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. N.</given-names>
            <surname>Dowling</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Thornblade</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W. W.</given-names>
            <surname>Chapman</surname>
          </string-name>
          ,
          <article-title>Context: an algorithm for determining negation, experiencer, and temporal status from clinical reports</article-title>
          ,
          <source>Journal of biomedical informatics 42</source>
          (
          <year>2009</year>
          )
          <fpage>839</fpage>
          -
          <lpage>851</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>D.</given-names>
            <surname>Mahajan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. J.</given-names>
            <surname>Liang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Tsou</surname>
          </string-name>
          ,
          <article-title>Toward understanding clinical context of medication change events in clinical narratives</article-title>
          , CoRR abs/
          <year>2011</year>
          .08835 (
          <year>2020</year>
          ). URL: https://arxiv.org/ abs/
          <year>2011</year>
          .08835. arXiv:
          <year>2011</year>
          .08835.
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>Z. N.</given-names>
            <surname>Flamholz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Crane-Droesch</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L. H.</given-names>
            <surname>Ungar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G. E.</given-names>
            <surname>Weissman</surname>
          </string-name>
          ,
          <article-title>Word embeddings trained on published case reports are lightweight, efective for clinical tasks, and free of protected health information</article-title>
          ,
          <source>Journal of Biomedical Informatics</source>
          <volume>125</volume>
          (
          <year>2022</year>
          )
          <fpage>103971</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>K.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Altosaar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Ranganath</surname>
          </string-name>
          , Clinicalbert:
          <article-title>Modeling clinical notes and predicting hospital readmission</article-title>
          , arXiv preprint arXiv:
          <year>1904</year>
          .
          <volume>05342</volume>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>K.</given-names>
            <surname>Raj Kanakarajan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Kundumani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Sankarasubbu</surname>
          </string-name>
          , Bioelectra: pretrained biomedical
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>