<!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>
      <journal-title-group>
        <journal-title>E. T. Mekonnen); pierpaolo.dondio@tudublin.ie (P. Dondio); luca.longo@tudublin.ie
(L. Longo)</journal-title>
      </journal-title-group>
    </journal-meta>
    <article-meta>
      <title-group>
        <article-title>Explaining Deep Learning Time Series Classification Models using a Decision Tree-Based Post-Hoc XAI Method</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Ephrem T. Mekonnen</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Pierpaolo Dondio</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Luca Longo</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>School of Computer Science, Technological University Dublin</institution>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2023</year>
      </pub-date>
      <volume>000</volume>
      <fpage>9</fpage>
      <lpage>0009</lpage>
      <abstract>
        <p>This preliminary study proposes a new post hoc method to explain deep learning-based time series classification models using a decision tree. Our approach generates a decision tree graph or rulesets as an explanation, improving interpretability compared to saliency map-based methods. The method involves two phases: training and evaluating the deep learning-based time series classification model and extracting prototypical events from the evaluation set to train the decision tree classifier. We conducted experiments on artificial and real datasets, evaluating the explanations based on accuracy, fidelity, number of nodes, and depth. Our preliminary findings suggest that our post-hoc method improves the interpretability and trust of complex time series classification models.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Explainable Artificial Intelligence</kwd>
        <kwd>Deep Learning</kwd>
        <kwd>Time Series Classification</kwd>
        <kwd>Decision Tree</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        Time series classification is crucial in domains like finance [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ], healthcare [
        <xref ref-type="bibr" rid="ref2 ref3">2, 3</xref>
        ], human
activity recognition [
        <xref ref-type="bibr" rid="ref4 ref5">4, 5</xref>
        ], and environment monitoring [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. Deep learning models have shown
remarkable performance in this task. However, they are often seen as "black boxes" due to
their complexity, limiting interpretability. Explainable Artificial Intelligence (XAI) [
        <xref ref-type="bibr" rid="ref7 ref8 ref9">7, 8, 9</xref>
        ] aims
to address this issue by developing techniques that provide understandable and transparent
explanations for deep learning models. To explain deep learning-based time series classification
models, XAI methods like Local Interpretable Model-agnostic Explanations (LIME)[
        <xref ref-type="bibr" rid="ref10">10</xref>
        ], saliency
maps [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ], and Layer-wise Relevance Propagation (LRP)[
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] have been adapted [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ]. However,
these methods struggle to generate easily understandable explanations for time series data
[
        <xref ref-type="bibr" rid="ref14">14</xref>
        ], often catering more to developers[
        <xref ref-type="bibr" rid="ref15">15</xref>
        ]. Additionally, the temporal nature of time series
data poses challenges for feature importance-based approaches. This paper proposes a novel
post-hoc XAI method to explain deep learning-based time series classification models using
a decision tree. Decision trees are inherently interpretable and visually accessible [16]. Our
approach aims to generate a decision tree graph or rules that are comprehensible to non-experts,
enhancing understanding of the model’s predictions.
      </p>
    </sec>
    <sec id="sec-2">
      <title>2. Related work</title>
      <p>
        Explainable Artificial Intelligence (XAI) has gained significant attention in the machine learning
ifeld as a means to address the lack of transparency and interpretability in complex models. Two
prominent approaches in XAI are attribution methods and attention-based methods. Attribution
methods, such as LIME [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ] and LRP[
        <xref ref-type="bibr" rid="ref12">12</xref>
        ], have been widely adopted in computer vision to
identify salient parts of an input that contribute to model predictions. However, applying these
techniques to explain time series data poses challenges due to the inherent non-intelligible
nature of such data [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ]. Siddique et al. propose TSViz in [17] to explain Convolutional Neural
Networks (CNNs) using a saliency map, and the authors in [18] exploit TSViz to design TSXplain
to explain the decisions of Deep Neural Networks (DNNs) in time series. TSXplain identifies
the most salient regions responsible for a model’s prediction and the most important time series
through TSViz [17]. These regions and instances are then combined with diferent statistical
features used to generate natural language explanations.
      </p>
      <p>
        Although attributions are used to attribute a relevance score to each input value of a model,
generating explanations for time series using only attribution and their relevance scores is
challenging due to the non-intelligible nature of time series [19]. Heatmaps, the primary
explanation medium for attributions, are often promising for domain experts, but inefective for
general users, as relevance scores are dificult to interpret without additional underlying data
knowledge [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ].
      </p>
      <p>
        Attention mechanisms, often employed in transformer networks, have demonstrated
remarkable performance in language-related tasks [20]. As attention is embedded in the network
architecture, most attention-based approaches are ante-hoc explanation methods. Karim et al.
[21] combine Convolutional Neural Networks (CNNs) and Long Short-Term Memory (LSTM)
submodules to create a specialized time series classification model. The authors also propose
a variant incorporating an attention mechanism, allowing us to explain the decision process
of the LSTM model. Similar to attributions, attentions can highlight relevant parts of the
input. However, attention only works if specific components are implemented into the model’s
architecture. Like attributions, attentions are often visualised as heatmaps and are somewhat
challenging to interpret in many cases [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ]. To overcome the limitations of existing methods,
our work proposes a novel approach for explaining deep learning-based time series classification
models using a decision tree graph. Decision trees ofer intuitive and structured explanations
by representing the underlying logic of an ML model as rulesets[22, 23].
      </p>
    </sec>
    <sec id="sec-3">
      <title>3. Proposed method</title>
      <p>Our method consists of two phases: training a Deep Learning-based time series classification
model, and evaluating its performance, generating synthetic training data from the evaluation
set, using its predictions as the target variable.</p>
      <p>Dataset preparation - Three publicly available datasets, namely cylinder-bell-funnel (CBF),
ECG200, and FordA, were used for this study. These datasets were downloaded from the UCR
time series classification archive [ 24]. The cylinder-bell-funnel dataset aims to classify time
series into three classes: cylinder, bell, or funnel [25]. The ECG200 dataset consists of time
series representing electrical activity during heartbeats, with two classes: normal heartbeat
and myocardial infarction. The FordA dataset comprises engine noise time series data collected
during typical operating conditions, specifically to classify the presence or absence of symptoms
in the engine.</p>
      <p>Model training - An LSTM model was constructed using the PyTorch-based tsai library
[26], with a specific emphasis on explainability. The model was trained and evaluated on the
following datasets: CBF, ECG200, and FordA. The test results showed an accuracy of 98.0% for
CBF, 76.0% for ECG200, and 89.5% for FordA. This evaluation took into account the availability
of other state-of-the-art models for these specific datasets.</p>
      <p>Synthetic training data preparation - At this stage, the evaluation set was processed in two
ways: Firstly, global feature calculation is applied to extract overall characteristics from the time
series data, including global maxima, global minima, channel means, and stream duration. This
helps provide a holistic understanding of the data. Additionally, parameterized event primitives
(PEPs) are employed to capture specific events expected in the domain. Extracting PEPs from
a time series helps to represent the temporal characteristics of events as parameters, which
facilitates learning for interpretable models such as decision trees [27]. These PEPs include
increasing and decreasing events, which capture start time, duration, and average gradient
value parameters, as well as local maximum and minimum events, which capture time and
corresponding value parameters. To prepare the synthetic training data, a three-step process was
followed. In the first step, parameterized events were extracted from each time series sequence
of the evaluation set. The events were represented as tuples containing relevant parameters. In
the second step, the parameterized events were flattened to apply clustering algorithms, such
as KMeans, and generate clusters. The optimal number of clusters was determined using the
silhouette method. In the third step, event attribution was performed, mapping the extracted
events to the clusters. This resulted in a matrix where each cell denoted the number of events
belonging to a specific cluster for a particular instance. The event attribution matrices were
combined with global features and the trained model’s predictions on the evaluation set, instead
of using ground truth. This created a complete synthetic training dataset.</p>
      <p>Applying interpretable model - Following the generation of synthetic training data, the
decision tree classifier was applied as the next step. The synthetic training data was divided
into training and testing sets, with 70% of the data allocated for training and 30% for testing.</p>
      <p>Objective evaluation - To ensure an objective and quantitative assessment of the
interpretability of the proposed method, four metrics were selected: accuracy, fidelity, depth, and
number of nodes. The evaluation process was conducted without any human intervention to
maintain objectivity. Accuracy measures the proportion of correct predictions made by the
model, while fidelity evaluates the consistency between the model’s decisions. The depth and
number of nodes indicate the complexity of the decision tree.</p>
    </sec>
    <sec id="sec-4">
      <title>4. Results and Discussion</title>
      <p>The proposed method was applied to three time series datasets (CBF, ECG200, and FordA),
and its performance was evaluated based on accuracy, fidelity, number of nodes, and depth.
The evaluation results are summarized in Table 1. The results demonstrated that the proposed
method achieved notable accuracy and fidelity scores across all three datasets. The results
show that the proposed method efectively explains predictions in deep learning-based time
series classification models. Regarding the complexity of the generated decision tree graphs, the
number of nodes and depth remained relatively low for all three datasets. This suggests that the
proposed method can generate interpretable explanations using relatively simple decision trees,
facilitating domain experts comprehension. The list of extracted rules below demonstrates
Table 1
Objective metrics results for decision tree-based explanations</p>
      <p>Dataset</p>
      <p>Accuracy (%) Fidelity (%)</p>
      <p>Nodes</p>
      <p>Depth
CBF
ECG
FordA
the preliminary findings of our experiment using the ECG200 dataset. Each rule highlights the
importance of particular time steps along with the corresponding events occurring at those
steps, significantly impacting the model’s prediction. Additionally, if domain experts provide
definitions for the conditional part of the rules, we can generate human-readable explanations
for better comprehension.</p>
      <p>Rule 1: Local minimum at time 66 with value 0.25 ≤ 11.0 ⇒ Normal
Rule 2: Local minimum at time 66 with value 0.25 &gt; 11.0 and local minimum at time
66 with value 0.25 ≤ 20.5 ⇒ Infarction
Rule 3: Local minimum at time 66 with value 0.25 &gt; 11.0 and local minimum at time
66 with value 0.25 &gt; 20.5 ⇒ Infarction</p>
    </sec>
    <sec id="sec-5">
      <title>5. Conclusion</title>
      <p>In conclusion, the proposed method shows promising performance in terms of accuracy, fidelity,
and interpretability in the selected time series datasets. The generated decision tree-based
explanations provide valuable insights into the underlying factors influencing the model’s
predictions. Future work could focus on enhancing the method’s capability to handle more
complex datasets while preserving its interpretability.
[16] G. Vilone, L. Longo, A quantitative evaluation of global, rule-based explanations of
post-hoc, model agnostic methods, Frontiers in artificial intelligence 4 (2021) 717899.
[17] S. A. Siddiqui, D. Mercier, M. Munir, A. Dengel, S. Ahmed, Tsviz: Demystification of deep
learning models for time-series analysis, IEEE Access 7 (2019) 67027–67040.
[18] M. Munir, S. A. Siddiqui, F. Küsters, D. Mercier, A. Dengel, S. Ahmed, Tsxplain:
Demystification of dnn decisions for time-series using natural language and statistical features, in:
Artificial Neural Networks and Machine Learning–ICANN 2019: Workshop and Special
Sessions: 28th International Conference on Artificial Neural Networks, Munich, Germany,
September 17–19, 2019, Proceedings 28, Springer, 2019, pp. 426–439.
[19] U. Schlegel, D. A. Keim, Time series model attribution visualizations as explanations, in:
2021 IEEE Workshop on TRust and EXpertise in Visual Analytics (TREX), IEEE, 2021, pp.
27–31.
[20] A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, Ł. Kaiser, I.
Polosukhin, Attention is all you need, Advances in neural information processing systems 30
(2017).
[21] F. Karim, S. Majumdar, H. Darabi, S. Chen, Lstm fully convolutional networks for time
series classification, IEEE access 6 (2017) 1662–1669.
[22] G. Vilone, L. Longo, Classification of explainable artificial intelligence methods through
their output formats, Machine Learning and Knowledge Extraction 3 (2021) 615–661.
[23] G. Vilone, L. Longo, A novel human-centred evaluation approach and an argument-based
method for explainable artificial intelligence, in: Artificial Intelligence Applications and
Innovations: 18th IFIP WG 12.5 International Conference, AIAI 2022, Hersonissos, Crete,
Greece, June 17–20, 2022, Proceedings, Part I, Springer, 2022, pp. 447–460.
[24] H. A. Dau, A. Bagnall, K. Kamgar, C.-C. M. Yeh, Y. Zhu, S. Gharghabi, C. A. Ratanamahatana,
E. Keogh, The ucr time series archive, IEEE/CAA Journal of Automatica Sinica 6 (2019)
1293–1305.
[25] N. Saito, Local feature extraction and its applications using a library of bases, Yale
University, 1994.
[26] I. Oguiza, tsai - a state-of-the-art deep learning library for time series and sequential data,</p>
      <p>Github, 2022. URL: https://github.com/timeseriesAI/tsai.
[27] M. W. Kadous, Learning comprehensible descriptions of multivariate time series., in:
ICML, volume 454, 1999, p. 463.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>X.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Liang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Zhiyuli</surname>
          </string-name>
          ,
          <string-name>
            <surname>S. Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Xu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Wu</surname>
          </string-name>
          , At-lstm:
          <article-title>An attention-based lstm model for financial time series prediction</article-title>
          ,
          <source>in: IOP Conference Series: Materials Science and Engineering</source>
          , volume
          <volume>569</volume>
          ,
          <string-name>
            <given-names>IOP</given-names>
            <surname>Publishing</surname>
          </string-name>
          ,
          <year>2019</year>
          , p.
          <fpage>052037</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>P.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Han</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , C. Wu,
          <article-title>Arrhythmia classification of lstm autoencoder based on time series anomaly detection</article-title>
          ,
          <source>Biomedical Signal Processing and Control</source>
          <volume>71</volume>
          (
          <year>2022</year>
          )
          <fpage>103228</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>N.</given-names>
            <surname>Strodthof</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Wagner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Schaefter</surname>
          </string-name>
          , W. Samek,
          <article-title>Deep learning for ecg analysis: Benchmarks and insights from ptb-xl</article-title>
          ,
          <source>IEEE Journal of Biomedical and Health Informatics</source>
          <volume>25</volume>
          (
          <year>2020</year>
          )
          <fpage>1519</fpage>
          -
          <lpage>1528</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>S.</given-names>
            <surname>Mekruksavanich</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Jitpattanakul</surname>
          </string-name>
          ,
          <article-title>Lstm networks using smartphone data for sensorbased human activity recognition in smart homes</article-title>
          ,
          <source>Sensors</source>
          <volume>21</volume>
          (
          <year>2021</year>
          )
          <fpage>1636</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>S.</given-names>
            <surname>Joshi</surname>
          </string-name>
          , E. Abdelfattah,
          <article-title>Deep neural networks for time series classification in human activity recognition</article-title>
          ,
          <source>in: 2021 IEEE 12th Annual Information Technology, Electronics and Mobile Communication Conference (IEMCON)</source>
          , IEEE,
          <year>2021</year>
          , pp.
          <fpage>0559</fpage>
          -
          <lpage>0566</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>T.</given-names>
            <surname>Shu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V. K.</given-names>
            <surname>Bhargava</surname>
          </string-name>
          , C. W. de Silva,
          <article-title>An energy-eficient dual prediction scheme using lms filter and lstm in wireless sensor networks for environment monitoring</article-title>
          ,
          <source>IEEE Internet of Things Journal</source>
          <volume>6</volume>
          (
          <year>2019</year>
          )
          <fpage>6736</fpage>
          -
          <lpage>6747</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>A.</given-names>
            <surname>Theissler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Spinnato</surname>
          </string-name>
          , U. Schlegel,
          <string-name>
            <given-names>R.</given-names>
            <surname>Guidotti</surname>
          </string-name>
          ,
          <article-title>Explainable ai for time series classification: A review, taxonomy and research directions</article-title>
          , IEEE Access (
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>L.</given-names>
            <surname>Longo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Goebel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Lecue</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Kieseberg</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Holzinger</surname>
          </string-name>
          ,
          <source>Explainable artificial intelligence: Concepts</source>
          , applications, research challenges and visions,
          <source>in: Machine Learning and Knowledge Extraction: 4th IFIP TC 5, TC 12, WG 8.4, WG 8</source>
          .9,
          <string-name>
            <surname>WG</surname>
          </string-name>
          <year>12</year>
          .9 International CrossDomain Conference, CD-MAKE
          <year>2020</year>
          , Dublin, Ireland,
          <source>August 25-28</source>
          ,
          <year>2020</year>
          , Proceedings, Springer,
          <year>2020</year>
          , pp.
          <fpage>1</fpage>
          -
          <lpage>16</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>F.</given-names>
            <surname>Di Martino</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Delmastro</surname>
          </string-name>
          ,
          <article-title>Explainable ai for clinical and remote health applications: a survey on tabular and time series data</article-title>
          ,
          <source>Artificial Intelligence Review</source>
          (
          <year>2022</year>
          )
          <fpage>1</fpage>
          -
          <lpage>55</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>M. T.</given-names>
            <surname>Ribeiro</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Singh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Guestrin</surname>
          </string-name>
          ,
          <article-title>Why should i trust you? explaining the predictions of any classifier</article-title>
          ,
          <source>in: Proceedings of the 22nd ACM SIGKDD international conference on knowledge discovery and data mining</source>
          ,
          <year>2016</year>
          , pp.
          <fpage>1135</fpage>
          -
          <lpage>1144</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>K.</given-names>
            <surname>Simonyan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Vedaldi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Zisserman</surname>
          </string-name>
          ,
          <article-title>Deep inside convolutional networks: Visualising image classification models and saliency maps</article-title>
          ,
          <source>arXiv preprint arXiv:1312.6034</source>
          (
          <year>2013</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>S.</given-names>
            <surname>Bach</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Binder</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Montavon</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Klauschen</surname>
          </string-name>
          ,
          <string-name>
            <surname>K.-R. Müller</surname>
          </string-name>
          , W. Samek,
          <article-title>On pixel-wise explanations for non-linear classifier decisions by layer-wise relevance propagation</article-title>
          ,
          <source>PloS one 10</source>
          (
          <year>2015</year>
          )
          <article-title>e0130140</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>U.</given-names>
            <surname>Schlegel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Arnout</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>El-Assady</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Oelke</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. A.</given-names>
            <surname>Keim</surname>
          </string-name>
          ,
          <article-title>Towards a rigorous evaluation of xai methods on time series</article-title>
          , in: 2019 IEEE/CVF International Conference on Computer Vision Workshop (ICCVW), IEEE,
          <year>2019</year>
          , pp.
          <fpage>4197</fpage>
          -
          <lpage>4201</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>J. V.</given-names>
            <surname>Jeyakumar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Noor</surname>
          </string-name>
          , Y.-H. Cheng, L. Garcia,
          <string-name>
            <given-names>M.</given-names>
            <surname>Srivastava</surname>
          </string-name>
          ,
          <article-title>How can i explain this to you? an empirical study of deep neural network explanation methods</article-title>
          ,
          <source>Advances in Neural Information Processing Systems</source>
          <volume>33</volume>
          (
          <year>2020</year>
          )
          <fpage>4211</fpage>
          -
          <lpage>4222</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>T.</given-names>
            <surname>Rojat</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Puget</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Filliat</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. Del</given-names>
            <surname>Ser</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Gelin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Díaz-Rodríguez</surname>
          </string-name>
          ,
          <article-title>Explainable artificial intelligence (xai) on timeseries data: A survey</article-title>
          ,
          <source>arXiv preprint arXiv:2104.00950</source>
          (
          <year>2021</year>
          ).
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>