<!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>Transformer neural networks in Industry 4.0⋆</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Denys Olianin</string-name>
          <email>denys.olianin@gmail.com</email>
          <xref ref-type="aff" rid="aff3">3</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Halyna Tsupryk</string-name>
          <email>tsupryk_h@tntu.edu.ua</email>
          <xref ref-type="aff" rid="aff3">3</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Tetiana Hovorushchenko</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Oksana Bahrii-Zaiats</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Igor Andrushchak</string-name>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>I. Horbachevsky Ternopil National Medical University</institution>
          ,
          <addr-line>Maidan Voli St., 1, Ternopil, 46002</addr-line>
          ,
          <country country="UA">Ukraine</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Khmelnytskyi National University</institution>
          ,
          <addr-line>Institutska str., 11, Khmelnytskyi, 29016</addr-line>
          ,
          <country country="UA">Ukraine</country>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>Lutsk National Technical University</institution>
          ,
          <addr-line>Lvivska St., 75, Lutsk, 43018</addr-line>
          ,
          <country country="UA">Ukraine</country>
        </aff>
        <aff id="aff3">
          <label>3</label>
          <institution>Ternopil Ivan Pului National Technical University</institution>
          ,
          <addr-line>Ruska St, 56, 46051, Ternopil</addr-line>
          ,
          <country country="UA">Ukraine</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>This paper investigates the emerging role of transformer-based neural networks in advancing Industry 4.0, where the rapid generation of unstructured data-from maintenance logs to sensor readings -necessitates robust analytical tools. We begin by examining the core architecture of transformers, highlighting self-attention and parallel processing as key innovations that facilitate long-range dependency modeling. We then explore how these capabilities address critical Industry 4.0 needs, such as predictive maintenance, anomaly detection, and defect localization. Case studies in text-based log analysis demonstrate significant accuracy gains-often exceeding 90%-when compared to conventional methods like regex-based parsing or RNNs. Similarly, Vision Transformers (ViTs) excel in quality control tasks, accurately identifying subtle defects under challenging conditions. In the realm of time-series sensor data, transformer architectures capture intricate temporal correlations, enabling early fault detection and forecasting of remaining useful life. Despite these successes, the paper also notes practical challenges, including computational demands, the need for interpretability, and deployment constraints on industrial edge devices. Concluding remarks emphasize that transformer-based AI stands as a cornerstone for Industry 4.0, offering a flexible and powerful framework to tackle the complexity of modern manufacturing environments while suggesting avenues for future research in optimization and domainspecific customization.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Transformer neural networks</kwd>
        <kwd>predictive maintenance</kwd>
        <kwd>anomaly detection</kwd>
        <kwd>computer vision</kwd>
        <kwd>IIoT 1</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        Modern digital technologies have fundamentally transformed both everyday life and industrial
operations. On the consumer side, innovations such as smart home systems and widespread
internet connectivity have enhanced daily living. In parallel, Industry 4.0 harnesses these
technological advancements to optimize manufacturing processes, increase production efficiency,
and facilitate a more effective creation of goods. Neural network integration to industrial processes
become popular in recent years, highlighting its versatility and usability [
        <xref ref-type="bibr" rid="ref10 ref11 ref12">10-13</xref>
        ]. These studies
illustrate the successful use of neural networks to model various physical and mechanical
properties of composite materials, such as epoxy composites, under different treatments and testing
conditions, underscoring their practical utility in engineering and materials science domains. In
this framework, the adoption of cutting-edge technologies—particularly transformer-based artificial
intelligence—plays a pivotal role in the fourth industrial revolution. This paper explores how
transformer-based AI can drive industrial innovation, improve data analysis, and streamline
decision-making processes, ultimately contributing to the advancement of modern manufacturing
practices.
      </p>
      <p>0009-0002-5266-3941 (D. Olianin); 0000-0002-8106-5628 (H. Tsupryk); 0000-0002-7942-1857 (T. Hovorushchenko);
0000-0002-5533-3561 (O. Bahrii-Zaiats); 0000-0002-8751-4420 (I. Andrushchak)</p>
    </sec>
    <sec id="sec-2">
      <title>2. Transformer neural network</title>
      <p>
        First introduced in work [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ], transformer neural network (TNN) was used for natural language
processing (NLP) problems as translating text to different language. At their core lies the
selfattention mechanism, which enables the model to evaluate the relevance of each element in the
input sequence relative to every other element. This mechanism works by assigning attention
scores, allowing the model to weigh the influence of each component, regardless of its position in
the sequence.
      </p>
      <p>Unlike traditional recurrent neural networks (RNN) that process data sequentially, transformers
handle entire sequences simultaneously through parallel processing. This not only accelerates
training but also enhances the model's ability to capture long-range dependencies—connections
between distant elements in the data—that are often critical for understanding complex patterns.
Additionally, transformers incorporate positional encodings to maintain the order of input
elements, ensuring that the temporal or sequential relationships are preserved.</p>
      <p>This combination of self-attention, parallel processing, and positional encoding makes
transformers exceptionally powerful for tasks ranging from natural language processing to
realtime analysis of industrial data, where understanding intricate and distant relationships within
large datasets is essential.</p>
      <p>Since introduction of TNN, a lot of modification were developed, for example encoder only and
decoder only models were created for different tasks. Some modifications turned transformer-based
networks into image recognition models, called Vision Transformers (ViT), and other modifications
can create a tool for a prediction.</p>
    </sec>
    <sec id="sec-3">
      <title>3. Relevance to Industry 4.0</title>
      <p>Main benefit of Industry 4.0 approach to the production is producing higher volume of products
with higher pace than regular plants. Key component to this is the Internet of things, which
connects every automized part of the plant in manufacturing. These parts are covered by various
sensors that monitor every step in the manufacturing process as well as state of the machine itself.
If some part of the manufacturing line failed it can hold process for some valuable time.</p>
      <sec id="sec-3-1">
        <title>3.1. Transformers for unstructured text data in Industry 4.0</title>
        <p>
          Recent studies showed that transformer-based neural networks that are designed for forecasting
and predicting failures can solve this problem with high accuracy. In paper [
          <xref ref-type="bibr" rid="ref2">2</xref>
          ] Erik Giovani
proposed modified transformer-network without encoder and decoder for forecasting failure in
rotational machinery. Proposed changes were made due to preprocessed data from vibrational
sensors and absence in need of text outputs. After evaluation model showed 98% accuracy in
machinery failure prediction.
        </p>
        <p>Industrial operations also produce extensive free-text data—maintenance reports, error logs,
incident descriptions, etc.—which contain valuable knowledge for predictive maintenance and
process improvement. Transformers originally developed for NLP are now used to parse and
analyze this text. For example, BERT and its variants have been applied to maintenance logs to
perform tasks like anomaly detection and knowledge extraction.</p>
        <p>
          In work [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ] used a BERT-based model for system log anomaly detection. By capturing the
contextual semantics of log messages with self-attention, their approach achieved high precision,
recall, and F1-scores (all &gt;0.90) on benchmark datasets, outperforming traditional log-parsing
methods. In their framework, a large language model (LLM) first structures raw logs, and then
LogBERT (a Transformer network) encodes the log sequences to detect abnormal patterns,
confirming the effectiveness of transformers in filtering noise and improving downstream fault
detection. This demonstrates that transformers can automatically learn patterns of “normal” vs.
“faulty” sequences from unlabeled log data, which is crucial for proactive monitoring in
Industry 4.0.
        </p>
        <p>
          In another work [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ] developed a transformer-based pipeline to build a fault knowledge graph
from equipment maintenance text. They fine-tuned RoBERTa (a BERT variant) to perform Named
Entity Recognition (NER) on Chinese industrial fault records, extracting key entities like equipment
names, fault causes, and remedies. The transformer model, combined with a BiLSTM-CRF tagger,
yielded very high accuracy (average F1 ≈ 0.95) in identifying these entities. This was a significant
improvement over RNN-based baselines; for instance, adding the pre-trained BERT encoder
boosted NER F1 from ~0.816 to ~0.941 in their experiments. The authors report that the
transformer’s contextual embeddings enabled the system to effectively extract fault-related
information from unstructured text that would be difficult to parse with manual templates. Such
extracted knowledge can feed into predictive maintenance systems or structured knowledge graphs
for decision support.
        </p>
        <p>
          Another work [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ]: NVIDIA’s engineering team demonstrated a real-world proof-of-concept
using transformers for predictive maintenance on server hardware. They applied NLP to kernel log
data from NVIDIA DGX systems to automatically pinpoint log lines indicating root causes of
failures. Using a fine-tuned BERT sequence classifier, the pilot system was able to highlight
important log messages and classify whether a given log segment was a root-cause indicator. This
approach aimed to drastically reduce manual log analysis by maintenance engineers. In the POC,
the BERT-based model achieved near-perfect accuracy (over 99.9% on test data) in distinguishing
root-cause log entries from normal logs, illustrating transformers’ capacity to learn subtle patterns
in unstructured log text that correlate with equipment faults. This real-world example underscores
that transformer models can be successfully deployed to improve industrial troubleshooting and
downtime reduction.
        </p>
      </sec>
      <sec id="sec-3-2">
        <title>3.2. Transformers in Computer Vision for Quality Control</title>
        <p>Another rich source of unstructured data in Industry 4.0 is images and video from production lines
(e.g. for product inspection, defect detection, and surveillance). Vision transformers, which adapt
the transformer architecture to image patches, have lately been applied to these tasks with great
success.</p>
        <p>
          Smith in his work [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ] proposed using a modern ViT architecture for automated surface
inspection in leather manufacturing. In this setting, images of leather sheets must be analyzed for
anomalies (scratches, wrinkles, etc.) that affect quality. The researchers trained ViT models on a
small dataset of low-resolution images (including an open-source leather defect dataset and the
MVTec anomaly detection dataset) and compared them against lightweight methods based on
convolution neural network (CNN). Experiments showed that the transformer-based model
outperformed state-of-the-art lightweight methods in classification accuracy for defect vs. normal
samples. Notably, the ViT achieved higher accuracy despite the challenges of low-res images and
limited training data, thanks to its strong ability to capture both local and global patterns via
selfattention. In addition to superior accuracy, the ViT approach proved advantageous in its low
computational load and robustness to smaller image sizes, which is beneficial for real-time
inspection on the factory floor. This study validates that transformers can surpass traditional vision
models for industrial quality control, even under practical constraints.
        </p>
        <p>
          Beyond classifying items as defective or not, transformers can localize subtle faults in images.
The self-attention mechanism enables the model to consider relationships across an entire image,
which helps in detecting small, context-dependent anomalies. For instance, the ViT model in work
[
          <xref ref-type="bibr" rid="ref6">6</xref>
          ] could not only classify leather samples but also highlight the regions where defects were
present (despite the resolution being low). Same research has found ViTs effective for tasks like
surface crack detection and weld x-ray analysis, often outperforming CNNs in detecting anomalies
under varying conditions. These advances suggest that in Industry 4.0 settings (smart factories,
automated inspection stations), vision transformers offer a new level of accuracy and reliability for
ensuring product quality.
        </p>
        <p>A practical consideration for Industry 4.0 vision is how easily models can be adapted to new
parts or visual conditions. Transformers trained on large datasets (e.g. ImageNet or proprietary
multi-product image data) can be fine-tuned on specific defect detection tasks with relatively small
sample sizes. This transfer learning approach has been shown to work well with ViTs, which can
leverage pretrained attention weights to quickly learn new defect patterns. Researchers have
reported success using pretrained ViT backbones for quick deployment in scenarios like PCB
inspection and assembly line monitoring, reducing the need for collecting massive task-specific
image datasets. This flexibility aligns with Industry 4.0’s requirement for adaptable AI systems that
can keep up with changing products and materials.</p>
      </sec>
      <sec id="sec-3-3">
        <title>3.3. Transformers for Time-Series Sensor Data and Anomaly detection</title>
        <p>Industrial IoT sensors continuously generate time-series data (vibrations, temperatures, pressures,
etc.). Although such data is numerical, it can be considered unstructured in the sense of being
unlabeled, high-dimensional streams requiring advanced pattern recognition. Transformer models
have started to play a key role in analyzing these sequences for anomaly detection and forecasting.</p>
        <p>
          A major advantage of transformers is the ability to capture long-range dependencies in
sequences was presented in work[
          <xref ref-type="bibr" rid="ref7">7</xref>
          ]. Unlike traditional RNN/LSTM models that can struggle with
long sequences, transformers use self-attention to learn relationships between events far apart in
time. Recent work by Zia et al[
          <xref ref-type="bibr" rid="ref7">7</xref>
          ]. applies a transformer-based architecture to multivariate IoT
sensor data for anomaly detection, specifically introducing a Transformer-based adversarial
perturbation model for detecting abnormal patterns in complex sensor streams. They note that the
transformer’s self-attention is remarkably effective at extracting intricate temporal patterns and
correlations from sequential sensor data. This allows the model to recognize subtle precursors to
failures that span long durations or involve multiple interdependent parameters—something critical
for predictive maintenance of industrial equipment.
        </p>
        <p>Because of these properties, transformer-based models have been shown to outperform classical
approaches in IoT anomaly detection tasks. Zia et al. report that their transformer not only
captures long-term dependencies but also integrates with techniques like adversarial training to
enhance robustness, yielding overall better performance in dynamic IoT environments. In practical
terms, this means fewer false alarms and missed detections when monitoring complex machinery.
Another study by Alexopoulos et al. (2024) combined LSTM autoencoders with a Transformer
encoder to forecast equipment failures (predictive maintenance) on a real manufacturing dataset.</p>
        <p>
          In work [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ] The transformer encoder helped model the interactions of multiple sensor signals
over time, improving the accuracy of remaining useful life (RUL) predictions for components.
These studies validate that transformers can learn the multi-scale temporal features of industrial
processes (e.g. periodic cycles, gradual drifts, sudden spikes) more effectively than earlier methods,
leading to more reliable anomaly detection and forecasting in Industry 4.0 applications.
        </p>
        <p>
          Another architecture based on Transformer-based neural network is introduced in work[
          <xref ref-type="bibr" rid="ref9">9</xref>
          ], as
novel data driven framework for real-time data processing and machine failure prediction.
Implemented proposed neural network system has proven system’s accuracy rate in 70.84% and
improved product yield from 78.38% to 89.62%.
        </p>
        <p>Case Example where transformer neural networks can be applied is Equipment Monitoring: In
power generation and energy distribution, transformers (the electrical kind) and other assets are
monitored via sensors. Research in the past few years has begun using transformer neural
networks to analyze such sensor data for early warning of faults. For example, an IoT-based
monitoring system might deploy a tiny transformer model at the edge to flag anomalies in real
time. Initial case studies have shown that even lightweight transformer models can run on
industrial edge devices and detect anomalies like motor vibration irregularities or temperature
excursions with high accuracy, thanks to the efficiency of the attention mechanism in focusing on
crucial signal features. This suggests a broad potential for transformer networks to be embedded in
Industry 4.0 sensor platforms for on-the-fly analytics and condition monitoring.</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Conclusions</title>
      <p>Over the past four to five years, transformer neural networks have proven highly effective for
mining unstructured industrial data, ranging from textual maintenance logs to visual inspections
and sensor signals. Their ability to learn rich representations and capture long-range interactions
has advanced automation and intelligence within smart factories. In numerous tasks—such as log
anomaly detection, fault information extraction, and visual defect classification—transformers
consistently outperform traditional methods like regex-based parsing, CNNs, and RNNs.</p>
      <p>A key factor behind these strong results is the self-attention mechanism, which enables models
to incorporate the global context of data (e.g., entire log sequences or full image patches). This
leads to a deeper understanding of subtle patterns that might otherwise remain hidden—
particularly crucial in Industry 4.0, where minor anomalies can signal potential system failures.
Additionally, transformers’ architecture is versatile, facilitating the development of hybrid and
domain-specific models that combine representation learning with specialized components (e.g.,
CRF layers for sequence labeling or autoencoders for anomaly detection).</p>
      <p>Despite these strengths, several challenges warrant further exploration. Transformers can be
computationally intensive, particularly when dealing with high-dimensional data in real-time
scenarios. Interpretability also remains a pressing issue; in industrial environments,
decisionmaking often requires transparent insights into how models arrive at specific conclusions. Future
research may focus on optimizing transformer architectures for edge devices, improving
explainability, and incorporating domain knowledge more seamlessly into model design.</p>
      <p>Overall, transformer-based AI has emerged as a vital driver of Industry 4.0, offering a scalable
and powerful framework for analyzing diverse, unstructured data streams. Continued
advancements in model efficiency, explainability, and domain-specific customization are poised to
further enhance their impact across modern manufacturing and beyond.</p>
    </sec>
    <sec id="sec-5">
      <title>Declaration on Generative AI</title>
      <p>The authors have not employed any Generative AI tools.
[13] Stukhliak, P., Totosko O., Stukhliak, D., Vynokurova, O., &amp; Lytvynenko, I. (2024). Use of neural
networks for modelling the mechanical characteristics of epoxy composites treated with
electric spark water hammer. CEUR Workshop Proceedings, 3896, 405-418.
[14] Analytical stress analysis of the furan epoxy composite coatings subjected to tensile test.</p>
      <p>Dolgov, N., Stukhlyak, P., Totosko, O., Melnychenko, O., Stukhlyak, D., Chykhira, I. Mechanics
of Advanced Materials and Structure. (2023), https://doi.org/10.1080/15376494.2023.2239811</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <surname>Wang</surname>
            , Xin,
            <given-names>Tapani</given-names>
          </string-name>
          <string-name>
            <surname>Ahonen</surname>
            , and
            <given-names>Jari</given-names>
          </string-name>
          <string-name>
            <surname>Nurmi</surname>
          </string-name>
          .
          <article-title>"Applying CDMA technique to network-onchip." IEEE transactions on very large scale integration (VLSI) systems</article-title>
           
          <volume>15</volume>
          .10 (
          <year>2007</year>
          ):
          <fpage>1091</fpage>
          -
          <lpage>1100</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <surname>Vaswani</surname>
          </string-name>
          , Ashish; Shazeer, Noam; Parmar, Niki; Uszkoreit, Jakob; Jones, Llion; Gomez,
          <string-name>
            <surname>Aidan</surname>
            <given-names>N</given-names>
          </string-name>
          ; Kaiser, Łukasz; Polosukhin,
          <string-name>
            <surname>Illia</surname>
          </string-name>
          (
          <year>December 2017</year>
          ).
          <article-title>"Attention is All you Need"</article-title>
          . In I. Guyon and
          <string-name>
            <given-names>U.</given-names>
            <surname>Von Luxburg</surname>
          </string-name>
          and
          <string-name>
            <given-names>S.</given-names>
            <surname>Bengio</surname>
          </string-name>
          and
          <string-name>
            <given-names>H.</given-names>
            <surname>Wallach</surname>
          </string-name>
          and
          <string-name>
            <given-names>R.</given-names>
            <surname>Fergus</surname>
          </string-name>
          and
          <string-name>
            <given-names>S.</given-names>
            <surname>Vishwanathan</surname>
          </string-name>
          and
          <string-name>
            <given-names>R.</given-names>
            <surname>Garnett</surname>
          </string-name>
          (ed.).
          <source> 31st Conference on Neural Information Processing Systems (NIPS)</source>
          .
          <source>Advances in Neural Information Processing Systems</source>
          . Vol. 
          <fpage>30</fpage>
          . Curran Associates, Inc. 
          <source>ArXiv:1706.03762</source>
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>Sperandio</given-names>
            <surname>Nascimento</surname>
          </string-name>
          , Erick Giovani, Julian Santana Liang, Ilan Sousa Figueiredo, and Lilian Lefol Nani Guarieiro. “
          <article-title>T4PdM: a Deep Neural Network based on the Transformer Architecture for Fault Diagnosis of Rotating Machinery”</article-title>
          .
          <source>arXiv preprint arXiv:2204.03725</source>
          (
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <surname>Zhou</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Rao</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Zhou</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Hu</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <article-title>Leveraging Large Language Models and BERT for Log Parsing</article-title>
          and
          <string-name>
            <given-names>Anomaly</given-names>
            <surname>Detection</surname>
          </string-name>
          . Mathematics 
          <year>2024</year>
          , 
          <volume>12</volume>
          ,
          <fpage>2758</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <surname>Gao</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Zhang</surname>
          </string-name>
          , L.;
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ; Zhang,
          <string-name>
            <surname>B.</surname>
          </string-name>
          ; Liu,
          <string-name>
            <given-names>W.</given-names>
            ; Zhang, J.;
            <surname>Xie</surname>
          </string-name>
          ,
          <string-name>
            <surname>L.</surname>
          </string-name>
          <article-title>Named Entity Recognition for Equipment Fault Diagnosis Based on RoBERTa-wwm-ext and Deep Learning Integration</article-title>
          . Electronics 
          <year>2024</year>
          , 
          <volume>13</volume>
          , 3935. https://doi.org/10.3390/electronics13193935
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6] NVIDIA. “
          <article-title>Enabling Predictive Maintenance Using Root Cause Analysis, NLP, and NVIDIA Morpheus.” NVIDIA Developer Blog (n</article-title>
          .d.). URL: https://developer.nvidia.com/blog/enablingpredictive
          <article-title>-maintenance-using-root-cause-analysis-nlp-and-nvidia-morpheus/.</article-title>
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <surname>Smith</surname>
            ,
            <given-names>A.D.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Du</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Kurien</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <article-title>Vision Transformers for Anomaly Detection and Localisation in Leather Surface Defect Classification Based on Low-Resolution Images and a Small Dataset</article-title>
          .
          <source> Appl. Sci. </source>
          <year>2023</year>
          , 
          <volume>13</volume>
          , 8716. https://doi.org/10.3390/app13158716
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <surname>Zia</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ; Bibi,
          <string-name>
            <given-names>N.</given-names>
            ;
            <surname>Alhazmi</surname>
          </string-name>
          ,
          <string-name>
            <surname>S.</surname>
          </string-name>
          ; Muhammad,
          <string-name>
            <given-names>N.</given-names>
            ;
            <surname>Alhazmi</surname>
          </string-name>
          ,
          <string-name>
            <surname>A.</surname>
          </string-name>
          <article-title>Enhanced Anomaly Detection in IoT Through Transformer-Based Adversarial Perturbations Model</article-title>
          . Electronics 
          <year>2025</year>
          , 
          <volume>14</volume>
          ,
          <fpage>1094</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <surname>Bampoula</surname>
            <given-names>X</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Nikolakis</surname>
            <given-names>N</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Alexopoulos</surname>
            <given-names>K.</given-names>
          </string-name>
          <article-title>Condition Monitoring and Predictive Maintenance of Assets in Manufacturing Using LSTM-Autoencoders and Transformer Encoders</article-title>
          . 
          <string-name>
            <surname>Sensors</surname>
          </string-name>
          (Basel).
          <year>2024</year>
          ;
          <volume>24</volume>
          (
          <issue>10</issue>
          ):
          <fpage>3215</fpage>
          .
          <article-title>Published 2024 May 18</article-title>
          . doi:
          <volume>10</volume>
          .3390/s24103215
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <surname>Poland</surname>
            , David &amp; Puglisi, Lemuel &amp; Ravì,
            <given-names>Daniele.</given-names>
          </string-name>
          (
          <year>2024</year>
          ).
          <article-title>Industrial Machines Health Prognosis Using a Transformer-Based Framework</article-title>
          .
          <fpage>776</fpage>
          -
          <lpage>781</lpage>
          .
          <fpage>10</fpage>
          .1109/MetroXRAINE62247.
          <year>2024</year>
          .
          <volume>10796172</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <surname>Stukhliak</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Martsenyuk</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Totosko</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stukhlyak</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Didych</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          (
          <year>2024</year>
          ).
          <article-title>The use of neural networks for modeling the thermophusical characteristics of epoxy composites treated with electric spark water hammer</article-title>
          .
          <source>CEUR Workshop Proceedings</source>
          ,
          <volume>3742</volume>
          ,
          <fpage>13</fpage>
          -
          <lpage>24</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <surname>Stukhliak</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Totosko</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vynokurova</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Stukhlyyak</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          (
          <year>2024</year>
          ).
          <article-title>Investigation of tribotechnical characteristics of epoxy composites using neural networks</article-title>
          .
          <source>CEUR Workshop Proceedings</source>
          ,
          <volume>3842</volume>
          ,
          <fpage>157</fpage>
          -
          <lpage>170</lpage>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>