<!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>Employing Hybrid Reasoning to Support Clinical Decision-Making</article-title>
      </title-group>
      <contrib-group>
        <aff id="aff0">
          <label>0</label>
          <institution>Rensselaer Polytechnic Institute</institution>
          ,
          <addr-line>Troy, NY, 12180</addr-line>
          ,
          <country country="US">USA</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>Clinical reasoning, involving abstraction, abduction, deduction, and induction, is the primary tool that physicians use when making clinical decisions. To support them, we focus on the creation of an AI system that is able to emulate clinical reasoning. We leverage Semantic Web technologies to perform a set of AI tasks involving the various forms of inference associated with clinical reasoning strategies. In particular, for the scope of this work, we focus on clinical problems that require differential diagnosis techniques. For a given clinical scenario, overlapping reasoning types and strategies may be employed by a physician in conjunction, signifying the need for our AI system to perform hybrid reasoning. Therefore, we consider the construction of a hybrid reasoner that is compatible with description logics. For medical scenarios where description logics may not have some needed expressivity, we consider possible extensions that will allow for the representation of such a scenario. The reasoning system, clinical rule representation, and the resulting recommendations will be evaluated based on domain expert consultation in order to determine whether the recommendation aligns with what the expert would recommend.</p>
      </abstract>
      <kwd-group>
        <kwd>Hybrid Reasoning</kwd>
        <kwd>Deduction</kwd>
        <kwd>Abduction</kwd>
        <kwd>Temporal Rea- soning</kwd>
        <kwd>Knowledge Representation</kwd>
        <kwd>Diabetes</kwd>
        <kwd>Ontology</kwd>
        <kwd>Explainable</kwd>
        <kwd>AI</kwd>
        <kwd>Inference</kwd>
        <kwd>Disease</kwd>
        <kwd>Informatics</kwd>
        <kwd>Di erential Diagnosis</kwd>
        <kwd>Clinical</kwd>
        <kwd>Reasoning Strategies</kwd>
        <kwd>Rule Representation</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Problem statement</title>
      <p>
        This thesis focuses on the design and implementation of a clinical decision
support system that is able to perform hybrid reasoning by emulating how
physicians reason. Clinical reasoning is employed in many medical tasks, such as those
involving information comprehension, decision-making, and medical error
identi cation. Approaches for clinical reasoning use four distinct types of inference:
abstraction, abduction, deduction, and induction [
        <xref ref-type="bibr" rid="ref1 ref15">1, 15</xref>
        ]. We base our approach
on the Select and Test Model (ST-Model), an epistemological framework for
medical reasoning in which an expert chooses a plausible hypothesis which is
subsequently con rmed or falsi ed through testing [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ]. The cyclic nature of the
ST-Model demonstrates how the di erent types of reasoning can be applied in
conjunction during a clinical reasoning framework. Given a set of initial patient
data/information, abstraction is applied to identify problem features, which can
be used, through abduction, to determine a set of plausible hypotheses.
Alternatively, inductive techniques can be applied to arrive at hypotheses directly
from the data. In applying this model for clinical reasoning, we deviate from the
traditional ST-Model and instead of including the induction step, we use the
observed data to validate diagnostic hypotheses. The resulting hypotheses are
then ranked in terms of likelihood as well as clinical relevance, and are used for
the deductive inference of expected outcomes or consequences. In order to
support clinical decision-making, we note that three reasoning strategies commonly
employed by physicians include di erential diagnosis, treatment planning, and
plan critiquing. In this paper, we focus primarily on di erential diagnosis.
      </p>
      <p>To illustrate the applicability of this revised ST-Model framework using a
simple example, consider a scenario where a patient gained a signi cant amount
of weight over a short period of time. The observed data that the patient gained
30 pounds over 2 months is abstracted to be a clinical problem. Abduction is
used to determine four likely hypotheses for the patient unintentionally gaining
weight, such as 1) a decrease in the amount of activity, 2) a change in the
patient's diet, 3) a medicinal e ect, or 4) a biological e ect.1 These hypotheses
can be ranked in terms of importance, where medicinal or biological e ects are
more clinically relevant than a decrease in activity or a change of diet. Existing
data in the system can be used to rule out or validate the hypotheses. For
example, if Internet of Things (IoT) data pertaining to step counts shows that
the patient's amount of activity has not decreased, hypothesis 1 can be ruled out.
Hypothesis 3 regarding medicinal e ects could be broken into sub-hypotheses,
such as due side-e ects of a single medicine or contraindications between multiple
medications. This would cause the system to check for symptoms of the drugs
that the patient is prescribed. The biological e ect of hypothesis 4 could be
a decrease in the patient's metabolism, which in turn may be explained by a
disease like hypothyroidism, and would require more data for validation. Under
the open-world assumption, this hypothesis would not be ruled out, and instead
the system would recommend a test to gather more data, such as a TSH
(thyroidstimulating hormone) test to check for thyroxine (a thyroid hormone) levels.</p>
      <p>In order to implement the ST-Model framework into an Arti cial Intelligence
(AI) system, our approach involves semantically annotating and transforming
patient data into Resource Description Framework (RDF), individually encoding
each reasoning technique as an agent that detects changes and reasons over
content in the knowledge graph, and validating ranked hypotheses through test
cases and expert consultation.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Importance</title>
      <p>This work is geared towards aiding physicians during the clinical decision-making
process by creating an AI system that can reason in a way similar to how a
physician reasons. Earlier work on medical expert systems use approaches involving
1 https://www.webmd.com/diet/ss/slideshow-weight-gain-shockers
decision tree rules or the construction of knowledge bases by leveraging machine
learning techniques. Our approach di ers from that earlier work in that we are
building an AI system using semantic web technologies in a manner that
conforms with Description Logics (in particular, with OWL-DL). This allows us to
both leverage recent ontologies created in knowledge representation for health
care e orts and existing inference engines that reason over OWL-DL ontologies.
Furthermore, we note that by limiting expressivity, we can perform tractable
reasoning over OWL-DL ontologies. Therefore, a challenge worth exploring involves
the representation of medical knowledge such that polynomial time reasoning can
be achieved while preserving important domain and patient details.</p>
      <p>
        Furthermore, since part of this work involves the implementation of an
abductive reasoning component, we are advancing semantic web techniques to allow
for non-monotonic reasoning (where conclusions can be validated or rejected as
more data is observed). As Chitsaz de nes in her thesis [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], abductive reasoning
is \the process of inferring the best explanation from given observations [in
accordance with] background knowledge." In the example related to patient weight
gain presented in Section 1, abductive reasoning is used to generate several
hypotheses. Non-monotonic reasoning allows for each of these hypotheses to exist
in a state in which they are not yet con rmed to be true or false, allowing for
acceptance or rejection once more data is leveraged for validation. This process,
which is necessary for emulating the way a physician reasons, can be recorded
through the use of provenance capturing. By creating a framework that is able
to perform abduction in this way, we promote traceability in reasoning and move
towards the goal of explainable AI systems.
3
      </p>
    </sec>
    <sec id="sec-3">
      <title>Related Work</title>
      <p>
        As early as the 1950s, Arti cial Intelligence (AI) techniques were beginning to
be applied to model clinical reasoning and medical decision-making [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]. By the
end of the decade, work on the reasoning foundations for medical diagnosis, in
which Bayes' formula was adapted to nd conditional probabilities of a disease
given a set of symptoms [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ], lead to the application of probabilistic approaches
for modeling clinical reasoning over the next decade. In addition to probabilistic
approaches for diagnostics, research around this time also focused on medical
literature retrieval and indexing, such as MEDLARS (Medical Literature Analysis
and Retrieval System [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ]).
      </p>
      <p>
        By the 1970s, theoretical research on medical reasoning was beginning to be
applied towards the creation of medical expert systems. Approaches related to
the Newell-Simon methodology on how humans solve problems in di erent
situations [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] were applied in the creation of expert systems [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. Also around this time
period (1970s-80s) SUMEX-AIM (Stanford University Medical Experimental {
AI in Medicine [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]) arose, a computational infrastructure shared by multiple
institutions. This lead to discussions and workshops related to biomedical problem
solving and clinical decision-making [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ].
      </p>
      <p>
        While work on expert systems continued into the 80s, the importance of having
these systems be explainable and justi ed became more apparent. Explainable
expert systems, developed in collaboration between knowledge engineers and
domain experts, represented a shift from procedural encoding to declarative
knowledge representation [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ]. Relevant literature from this time period also
includes work on medical reasoning, including the ideas that physicians develop
hypotheses early in the diagnostic process [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] and experts di er from novices
in approaches involving hypothetico-deductive reasoning [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ]. These di erences
derive both from the features of a knowledge base [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] and highly automated
perceptual processes [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ] that experts have in contrast with novices.
      </p>
      <p>
        An approach that builds on this work uses propositional analysis to build rules
from knowledge that abstracts medical problem solving into steps involving data
gathering, diagnosis, therapeutic planning, and patient management [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ].
Another important idea from this work is that medical reasoning often involves both
forward and backward reasoning. This direction of research continued
throughout the 90s to show that propositional and semantic analyses can improve the
validity, usability, and comprehension of Clinical Practice Guidelines (CPGs),
mental models could be used as a cognitive framework for how people reason,
and reasoning approaches were often data and hypothesis driven [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ].
4
      </p>
    </sec>
    <sec id="sec-4">
      <title>Research questions</title>
      <p>
        In conducting this work, we focus on several research questions. We begin by
determining the following: Which forms of reasoning should be incorporated into
a clinical decision support system in order to emulate how a physician reasons?
When consulting related literature in order to determine the forms of reasoning
that should be incorporated into a clinical decision support system, we nd that
mentions of abstraction, deduction, induction, abduction, temporal reasoning,
and causal reasoning [
        <xref ref-type="bibr" rid="ref1 ref15 ref19">1, 19, 15</xref>
        ]. Since our approach for replicating physician
reasoning is based on the ST-Model [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ], we focus on the abstraction process to
formulate observed data into a representative problem space. For observations
occurring over a period of time, we leverage existing approaches for temporal
reasoning [
        <xref ref-type="bibr" rid="ref13 ref18">13, 18</xref>
        ]. Through abduction, we determine potential hypotheses that
can be used to explain the clinical problem at hand. We incorporate probabilistic
reasoning techniques when ranking abductive hypotheses in order to rst address
more clinically relevant hypotheses. From each hypothesis, we deductively
determine a set of predictions corresponding to expected patient data. While using
existing semantic technology for deduction, we do consider the writing of custom
inference rules when necessary. While we do not focus on induction, we attempt
to validate abductive hypotheses by comparing the expected and observed data.
      </p>
      <p>The next research question we consider relates to design requirements: What
are the necessary implementation considerations for building a hybrid reasoner
that conforms with OWL Description Logics (OWL-DL)? Speci cally, we
consider satis ability, consistency, and explainability. In terms of satis ability, we
search for contradictions with respect to the ontologies that are used and between
facts that are asserted to be true. To check for consistency, we determine if the
facts in the knowledge base are satis able. Inconsistencies within the knowledge
base result in instances of the owl:Nothing class. If the reasoner does not return
such instances, we conclude that the knowledge base is consistent. Finally, we
require an explanation for facts derived from inference processes. In order to
guarantee that our hybrid reasoner conforms with DL, initially the
implementation is limited to Semantic Web compliant technologies. We consider the extent
to which the expressivity of the ontologies that we use can be limited in order
to allow for tractible reasoning while still allowing the necessary medical
knowledge to be accurately represented. As additional functionalities are incorporated,
such as non-monotonic abductive reasoning, tests will be written to ensure that
the systems is constrained to the bounds of DL. Boundary limit testing will be
conducted to determine which scenarios break this constraint.</p>
      <p>For our considered usage scenarios, we ask the following: How can verbal
statements made by physicians (captured in written transcripts) be represented as
reasoning rules? As mentioned earlier, our approach is based on the ST-model. In
terms of representing verbal statements, we consider representational simpli
cation by abstracting out mentions of conditions, treatments, diseases/diagnoses,
risks/symptoms, and goals. In doing so, we must ensure that the resulting rule
is both semantically consistent and representative of the original
recommendation or statement. For example, in the use case of Section 1, the symptom
of weight gain may point to a diagnosis for hypothyroidism under the
condition that thyroxine levels are low. A diagnosis of hypothyroidism may result in
treatment in the form of a levothyroxine prescription (commonly used to treat
hypothyroidism) in order obtain the goal of decreasing the patient's weight.
5</p>
    </sec>
    <sec id="sec-5">
      <title>Preliminary results</title>
      <p>
        In order to apply our approach on patient data, we represent the data as RDF in
a semantic structure consistent with the execution of the reasoning rules derived
from physician transcripts. The Semantic Data Dictionary (SDD) approach [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ]
has been applied for annotating and converting patient data to RDF from several
publicly available biomedical datasets. Additionally, we have received permission
to annotate data from two private datasets, StepUp and Limited Claims EHR
Dataset (LCED). StepUp contains data about its user's physical activities,
including step count, so it can be used to test for hypothesis 1 of the use case of
Section 1. LCED contains administrative claims information as well as Electronic
Health Record (EHR) data, including information about patient demographics,
habits, and prescriptions [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. Therefore, it can be used for patient characteristic
representation for testing using real patient data.
      </p>
      <p>
        In terms of implementation, a customizable deductive reasoner has been
incorporated into the Whyis [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ] knowledge management framework. Preliminary
work on traceability within this framework has commenced and is being
leveraged to aid in the abductive reasoning component. Initial work related to clinical
decision support and rule representation includes the categorization of reasoning
6
      </p>
    </sec>
    <sec id="sec-6">
      <title>Evaluation</title>
      <p>types and strategies from physicians transcripts, as well as discussions on how
to adapt the ST-Model for use within the framework of this thesis.
In this section, we begin by discussing some of the evaluation that has been
conducted for the aforementioned methodology. We continue by discussing
additional evaluation of our clinical decision-making system that we plan to conduct.</p>
      <p>
        The SDD approach, which is leveraged to semantically convert tabular data
into RDF, has been evaluated against traditional data dictionaries, data
integration approaches, and mapping languages [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ]. Reasoning component
implementations have been validated using unit tests to check for the expected
functionality. As further components are incorporated, additional tests will be
written accordingly, including tests of e ciency when reasoning over large data.
      </p>
      <p>In addition to testing the functionality of the implementation, we will use
background biomedical knowledge to evaluate clinical reasoning processes. By
providing a clinical expert with sets of test patient data and asking them to walk
through their diagnostic process, we will evaluate the set of hypotheses that the
system generates through comparison with the physician's hypotheses, which we
will measure through the use of con dence scores. While the determination of
the full evaluation pipeline is still work in progress, in addition to measuring
hypothesis con dence, we plan to conduct a comparative evaluation against other
hybrid reasoning systems. Additionally, for each individual reasoning
component, we will evaluate capabilities against other special purpose reasoners that
are able to do the associated reasoning task. The complete set of metrics for such
an evaluation is yet to be determined. Abductive explanations will be ranked
in terms of likelihood using appropriate heuristic metrics. One such metric
corresponds to whether the hypotheses are accurately ranked in terms of clinical
importance (such as medicinal implications being more relevant than a change
in the patient's diet). The accuracy of these rankings will be evaluated based
on importance assigned by a domain expert who is provided the same set of
hypotheses. Initially, the clinical expert we will consult is a member of the author's
thesis committee who holds both Ph.D. and M.D. degrees in relevant areas.
7</p>
    </sec>
    <sec id="sec-7">
      <title>Re ections</title>
      <p>We have discussed the creation of a decision support system that is similar to
some of the expert systems that we encountered during the literature review.
While these systems used various AI techniques, they were not implemented
using semantic web technologies. Our approach di ers from earlier methods as we
are creating a system that conforms with OWL-DL. We are able to integrate
various forms of inference by leveraging existing e cient reasoners (for example,
for performing deduction or temporal reasoning) that also conform with
OWLDL semantics. Additionally, semantic knowledge resources, such as biomedical
ontologies and patient data, can be incorporated into our knowledge base that
can be used during the decision-making processes. The use of semantic
technologies allows us to capture provenance, detect inconsistencies, integrate multiple
knowledge resources, and leveraging existing tools for performing deductive and
temporal reasoning. Our application can help address speci c challenges by
aiding physicians with clinical problems involving reasoning strategies.</p>
      <p>Future work includes the incorporation of other reasoning strategies, such as
therapy planning and plan critiquing. Extensions in this direction include
leveraging CPGs to represent existing therapy plan recommendations and test
physician conformance to CPGs. Additionally, medical information from biomedical
resources that provide recommendations based on scienti c evidence, as well as
clinical opinions on whether or not to follow guideline recommendation, can be
used to model plan critiquing. We mention in Section 4 that the incorporation of
inductive reasoning is beyond the scope of this thesis, as the implementation of
an abductive component will be su ciently challenging in itself. Future
extensions may include leveraging existing machine learning techniques to incorporate
induction capabilities into our framework.</p>
    </sec>
    <sec id="sec-8">
      <title>Acknowledgements</title>
      <p>I am advised by Professor Deborah L. McGuinness, Constellation Chair at
Tetherless World Constellation (TWC), RPI. I am thankful for the members of TWC
who have helped me edit this paper. This work is done as part of the Health
Empowerment by Analytics, Learning, and Semantics (HEALS) project and is
supported by IBM Research AI through the AI Horizons Network.</p>
      <p>Bibliography</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <surname>Arocha</surname>
            ,
            <given-names>J.F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Patel</surname>
            ,
            <given-names>V.L.</given-names>
          </string-name>
          :
          <article-title>Identifying reasoning strategies in medical decision making: a methodological guide</article-title>
          .
          <source>Journal of biomedical informatics 38(2)</source>
          ,
          <volume>154</volume>
          {
          <fpage>171</fpage>
          (
          <year>2005</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <surname>Chitsaz</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Approaches to Abductive and Inductive Reasoning in Lightweight Ontologies</article-title>
          .
          <source>Ph.D. thesis</source>
          , Gri th University (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <surname>Choudhury</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gkoulalas-Divanis</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Salonidis</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sylla</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Park</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hsu</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Das</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Di erential privacy-enabled federated learning for sensitive health data</article-title>
          .
          <source>arXiv preprint arXiv:1910</source>
          .
          <volume>02578</volume>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <surname>Elstein</surname>
            ,
            <given-names>A.S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shulman</surname>
            ,
            <given-names>L.S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sprafka</surname>
            ,
            <given-names>S.A.</given-names>
          </string-name>
          :
          <article-title>Medical problem solving an analysis of clinical reasoning (</article-title>
          <year>1978</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <surname>Feltovich</surname>
            ,
            <given-names>P.J.</given-names>
          </string-name>
          :
          <article-title>Knowledge based components of expertise in medical diagnosis</article-title>
          .
          <source>Tech. rep.</source>
          ,
          <source>PITTSBURGH UNIV PA LEARNING RESEARCH AND DEVELOPMENT CENTER</source>
          (
          <year>1981</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <surname>Freiherr</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          :
          <article-title>The seeds of arti cial intelligence: SUMEX-AIM</article-title>
          . No.
          <issue>80</issue>
          , US Department of Health, Education, and
          <string-name>
            <surname>Welfare</surname>
          </string-name>
          , Public Health Service . . . (
          <year>1980</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <surname>Hayes-Roth</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Waterman</surname>
            ,
            <given-names>D.A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lenat</surname>
            ,
            <given-names>D.B.</given-names>
          </string-name>
          :
          <article-title>Building expert system (</article-title>
          <year>1983</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <surname>Kulikowski</surname>
            ,
            <given-names>C.A.</given-names>
          </string-name>
          :
          <article-title>Beginnings of arti cial intelligence in medicine (aim): Computational arti ce assisting scienti c inquiry and clinical art{with reections on present aim challenges</article-title>
          .
          <source>Yearbook of medical informatics</source>
          <volume>28</volume>
          (
          <issue>01</issue>
          ),
          <volume>249</volume>
          {
          <fpage>256</fpage>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <surname>Ledley</surname>
            ,
            <given-names>R.S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lusted</surname>
            ,
            <given-names>L.B.</given-names>
          </string-name>
          :
          <article-title>Reasoning foundations of medical diagnosis</article-title>
          .
          <source>Science</source>
          <volume>130</volume>
          (
          <issue>3366</issue>
          ),
          <volume>9</volume>
          {
          <fpage>21</fpage>
          (
          <year>1959</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <surname>Lesgold</surname>
            ,
            <given-names>A.M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Feltovich</surname>
            ,
            <given-names>P.J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Glaser</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>The acquisition of perceptual diagnostic skill in radiology</article-title>
          .
          <source>Tech. rep.</source>
          ,
          <source>PITTSBURGH UNIV PA LEARNING RESEARCH AND DEVELOPMENT CENTER</source>
          (
          <year>1981</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <surname>McCusker</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rashid</surname>
            ,
            <given-names>S.M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Agu</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bennett</surname>
            ,
            <given-names>K.P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>McGuinness</surname>
            ,
            <given-names>D.L.</given-names>
          </string-name>
          :
          <article-title>The whyis knowledge graph framework in action</article-title>
          . In: International Semantic Web Conference (P&amp;D/Industry/BlueSky) (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <surname>Newell</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Simon</surname>
            ,
            <given-names>H.A.</given-names>
          </string-name>
          , et al.:
          <article-title>Human problem solving</article-title>
          , vol.
          <volume>104</volume>
          . PrenticeHall Englewood Cli s,
          <source>NJ</source>
          (
          <year>1972</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>O</given-names>
            <surname>'Connor</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.J.</given-names>
            ,
            <surname>Das</surname>
          </string-name>
          ,
          <string-name>
            <surname>A.K.</surname>
          </string-name>
          :
          <article-title>A method for representing and querying temporal information in owl</article-title>
          .
          <source>In: International joint conference on biomedical engineering systems and technologies</source>
          . pp.
          <volume>97</volume>
          {
          <fpage>110</fpage>
          . Springer (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <surname>Patel</surname>
            ,
            <given-names>V.L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Arocha</surname>
            ,
            <given-names>J.F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Diermeier</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Greenes</surname>
            ,
            <given-names>R.A.</given-names>
          </string-name>
          , Shortli e, E.H.:
          <article-title>Methods of cognitive analysis to support the design and evaluation of biomedical systems: the case of clinical practice guidelines</article-title>
          .
          <source>Journal of biomedical informatics 34(1)</source>
          ,
          <volume>52</volume>
          {
          <fpage>66</fpage>
          (
          <year>2001</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <surname>Patel</surname>
            ,
            <given-names>V.L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Arocha</surname>
            ,
            <given-names>J.F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhang</surname>
          </string-name>
          , J.:
          <article-title>Medical reasoning and thinking</article-title>
          .
          <source>The Oxford handbook of thinking and reasoning</source>
          pp.
          <volume>736</volume>
          {
          <issue>754</issue>
          (
          <year>2012</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <surname>Patel</surname>
            ,
            <given-names>V.L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Groen</surname>
            ,
            <given-names>G.J.</given-names>
          </string-name>
          :
          <article-title>Knowledge based solution strategies in medical reasoning</article-title>
          .
          <source>Cognitive science 10</source>
          (
          <issue>1</issue>
          ),
          <volume>91</volume>
          {
          <fpage>116</fpage>
          (
          <year>1986</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <surname>Rashid</surname>
            ,
            <given-names>S.M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>McCusker</surname>
            ,
            <given-names>J.P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pinheiro</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bax</surname>
            ,
            <given-names>M.P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Santos</surname>
            ,
            <given-names>H.O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stingone</surname>
            ,
            <given-names>J.A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Das</surname>
            ,
            <given-names>A.K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>McGuinness</surname>
            ,
            <given-names>D.L.</given-names>
          </string-name>
          :
          <article-title>The semantic data dictionary { an approach for describing and annotating data</article-title>
          .
          <source>Data Intelligence</source>
          pp.
          <volume>443</volume>
          {
          <issue>486</issue>
          (
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <surname>Rospocher</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>van Erp</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vossen</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Fokkens</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Aldabe</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rigau</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Soroa</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ploeger</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bogaard</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>Building event-centric knowledge graphs from news</article-title>
          .
          <source>Web Semantics: Science, Services and Agents on the World Wide Web</source>
          (
          <year>2016</year>
          ). https://doi.org/10.1016/j.websem.
          <year>2015</year>
          .
          <volume>12</volume>
          .004, http://www. sciencedirect.com/science/article/pii/S1570826815001456
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <surname>Stefanelli</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lanzola</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ramoni</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Knowledge acquisition based on an epistemological model of medical reasoning</article-title>
          .
          <source>In: 1992 14th Annual International Conference of the IEEE Engineering in Medicine and Biology Society</source>
          . vol.
          <volume>3</volume>
          , pp.
          <volume>880</volume>
          {
          <fpage>882</fpage>
          .
          <string-name>
            <surname>IEEE</surname>
          </string-name>
          (
          <year>1992</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <surname>Swartout</surname>
            ,
            <given-names>W.R.</given-names>
          </string-name>
          :
          <article-title>Xplain: A system for creating and explaining expert consulting programs</article-title>
          .
          <source>Arti cial intelligence</source>
          <volume>21</volume>
          (
          <issue>3</issue>
          ),
          <volume>285</volume>
          {
          <fpage>325</fpage>
          (
          <year>1983</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <surname>Taine</surname>
            ,
            <given-names>S.:</given-names>
          </string-name>
          <article-title>The medical literature analysis and retrieval system (medlars) of the us national library of medicine</article-title>
          .
          <source>Methods of information in medicine 2(02)</source>
          ,
          <volume>65</volume>
          {
          <fpage>69</fpage>
          (
          <year>1963</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>