<!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>Software  development  based  on  artificial  neural  networks  for  fitness club </article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Vadim S. Tynchenko</string-name>
          <email>vadimond@mail.ru</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Vladimir V. Bukhtoyarov</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Aleksey Alexander V. Lavrishchev</string-name>
          <email>lav@optilink.pro</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Yuriy N. Seregin</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>N. Bocharov</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Bauman Moscow State Technical University</institution>
          ,
          <addr-line>5/1, 2nd Baumanskaya st., Moscow, 105005, Russian Federation</addr-line>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Reshetnev Siberian State University of Science and Technology</institution>
          ,
          <addr-line>31, Krasnoyarskiy rabochiy pr., Krasnoyarsk, 660037, Russian Federation</addr-line>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>Siberian Federal University</institution>
          ,
          <addr-line>79, Svobodny pr., Krasnoyarsk, 660041, Russian Federation</addr-line>
        </aff>
      </contrib-group>
      <abstract>
        <p>   An artificial neural network is a system of simple processors (artificial neurons) that are connected and interact with each other. Programming neural networks means training the network, not writing program code. Thanks to training, the network is able to identify dependencies between data (input and output), generalize, simplify the results, and use knowledge to break down complex problems into simpler ones. The aim of the presented work is to improve the efficiency of managing the needs of the clients of the fitness club through the use of modern methods of data analysis. As a technology for the implementation of such an analysis, the work uses neural networks of a special type - Kohonen networks. On the basis of the proposed approach, the final software product is being developed to improve the quality of management of a fitness club.</p>
      </abstract>
      <kwd-group>
        <kwd> 1  Artificial neural networks</kwd>
        <kwd>Kohonen maps</kwd>
        <kwd>mathematical models</kwd>
        <kwd>software system</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction </title>
      <p>
        Dendrites run from the nerve cell body to other neurons, where they receive signals at junction points
called synapses. The input signals received by the synapse are fed to the body of the neuron. Here they
are summed up, with some inputs striving to excite the neuron, others - to prevent its excitation. When
the total excitation in the body of a neuron exceeds a certain threshold, the neuron is excited, sending a
signal to other neurons along the axon. This basic functional scheme has many complications and
exceptions, however, most artificial neural networks model only these simple properties [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ].
      </p>
      <p>There are several methods for training neural networks that we will focus on in this work - supervised
learning, unsupervised learning, semi-supervised learning, reinforcement learning.</p>
      <p>The object of the research is the process of optimizing the selection of services and increasing profits
by analyzing the system data, based on the fitness club “NRGym”. The subject of research is an
intelligent data analysis system based on the fitness club “NRGym”. The scientific novelty in this study
lies in the use of neural network technologies (information models), as well as a data analysis
optimization system.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Material and methods   2.1.</title>
    </sec>
    <sec id="sec-3">
      <title>Supervised learning </title>
      <p>Let's consider in more detail the methods of training neural networks mentioned above.</p>
      <p>
        Supervised learning assumes the availability of a complete set of labeled data for training the model
at all stages of its construction [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. Figure 1 shows an example of supervised learning.
      </p>
      <p>
        The presence of a fully labeled dataset means that each example in the training set corresponds to
the answer that the algorithm should receive. Thus, a tagged dataset of flower photographs will train a
neural network where roses, daisies or daffodils are depicted. When the network receives a new photo,
it will compare it with examples from the training dataset to predict the answer [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ].
Figure 1: An example of supervised learning ‐ classification (left), and its further use for segmentation 
and object recognition 
      </p>
      <p>
        Basically, supervised learning is used to solve two types of problems: classification and regression
[
        <xref ref-type="bibr" rid="ref9">9</xref>
        ].
      </p>
      <p>In classification problems, the algorithm predicts discrete values corresponding to the numbers of
the classes to which the objects belong. In a training dataset with animal photos, each image will have
a corresponding label - "cat", "koala" or "turtle". The quality of the algorithm is assessed by how
accurately it can correctly classify new photos with koalas and turtles. [ten]</p>
      <p>Regression tasks, on the other hand, are associated with continuous data. One example, linear
regression, calculates the expected value of a variable y given specific x values.</p>
      <p>More utilitarian machine learning tasks involve a large number of variables. For example, a neural
network that predicts the price of an apartment in San Francisco based on its area, location, and public
transport availability. The algorithm performs the work of an expert who calculates the price of an
apartment based on the same data.</p>
      <p>Thus, supervised learning is most suitable for tasks when there is an impressive set of reliable data
for training the algorithm.
2.2.</p>
    </sec>
    <sec id="sec-4">
      <title>Unsupervised learning </title>
      <p>
        Perfectly labeled and clean data is not easy to come by. Therefore, sometimes the algorithm is faced
with the task of finding previously unknown answers. This is where learning without a teacher is needed
[
        <xref ref-type="bibr" rid="ref11">11</xref>
        ].
      </p>
      <p>In unsupervised learning, the model has a dataset, and there is no explicit indication of what to do
with it. The neural network tries to independently find correlations in the data, extracting useful features
and analyzing them., An example of such training is shown in Figure 2.</p>
      <sec id="sec-4-1">
        <title>Figure 2: Clustering data based on common characteristics </title>
        <p>
          Depending on the task, the model organizes the data in different ways. [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ]:
 Clustering. Even without the special knowledge of an expert ornithologist, you can look at a
collection of photographs and divide them into groups by bird species based on feather color,
beak size or shape. The algorithm picks up similar data, finds common features, and groups
them together
 Detection of anomalies. Banks can detect fraudulent transactions by identifying unusual
behavior in customer buying behavior. For example, it is suspicious if the same credit card is
used in California and Denmark on the same day. Similarly, unsupervised learning is used to
find outliers in data
 Associations. Choose diapers, applesauce and baby sippy mug from the online store and the site
will recommend that you add a bib and baby monitor to your order. This is an example of
associations: some characteristics of an object are correlated with other characteristics.
Considering a couple of key features of an object, the model can predict others with which there
is a connection
 Autoencoders. Autoencoders take input, encode it, and then try to recreate the initial data from
the resulting code. Using noisy and raw versions of images for training, autoencoders can
remove noise from video data, images, or medical scans to improve data quality
        </p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>Semi‐supervised learning </title>
      <p>
        Semi-supervised learning is characterized by its name: the training dataset contains both tagged and
unlabeled data. This method is especially useful when it is difficult to extract important features from
the data or to mark up all objects - a laborious task [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ].
      </p>
      <p>This machine learning technique is common for the analysis of medical images such as CT scans or
MRI scans. An experienced radiologist can mark up a small subset of scans that show tumors and
diseases. But manually marking up all scans is too time-consuming and expensive task. However, a
neural network can extract information from a small fraction of labeled data and improve prediction
accuracy compared to a model that trains exclusively on untagged data.</p>
      <p>A popular training method that requires a small set of labeled data is to use a generative adversarial
network (GAN).
2.4.</p>
    </sec>
    <sec id="sec-6">
      <title>Reinforcement learning </title>
      <p>
        Video games are based on an incentive system. Complete the level and get a reward. Defeat all
monsters and earn a bonus. Trapped - game over, don't get caught. These incentives help players
understand how best to act in the next round of the game. Without feedback, people would just make
random decisions and hope to move to the next level of play. Reinforcement learning follows the same
principle (Figure 3). Video games are a popular test environment for research [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ].
      </p>
      <p>AI agents try to find the best way to achieve a goal or improve performance for a specific
environment. When an agent takes actions that contribute to the achievement of a goal, he receives a
reward. The global goal is to predict the next steps in order to earn the maximum reward in the end.</p>
      <p>When making a decision, the agent studies feedback, new tactics and solutions that can lead to
greater gains. This approach uses a long-term strategy - just like in chess: the next best move may not
help you win in the long run. Therefore, the agent tries to maximize the total reward.</p>
      <p>This is an iterative process. The more levels of feedback, the better the agent's strategy becomes.
This approach is especially useful for training robots that operate autonomous vehicles or inventory in
a warehouse.</p>
      <p>Just like the students at school, each algorithm learns in a different way. But thanks to the variety of
methods available, the question is to choose the right one and teach your neural network to understand
the environment.</p>
    </sec>
    <sec id="sec-7">
      <title>3. Result and discussion </title>
      <p>A self-organizing map defines an ordered mapping, a kind of projection from a set of specified data
items onto a regular, usually two-dimensional, grid. The model is associated with each grid point. These
models are computed using the SOM algorithm. The item will be mapped to the node whose model is
most similar to the item, that is, has the smallest distance from the item in some metric.</p>
      <p>When implementing the SOM algorithm, the grid configuration (rectangular or hexagonal), as well
as the number of neurons in the network, are preset. Some sources recommend using as many neurons
as possible in the map. At the same time, the initial learning radius (neighborhood in the
Englishlanguage literature) significantly affects the ability to generalize using the resulting map.</p>
      <p>In the case when the number of map nodes exceeds the number of examples in the training set, then
the success of using the algorithm largely depends on the appropriate choice of the initial training radius.
However, in the case when the size of the map is tens of thousands of neurons, the time required to train
the map is usually too long for solving practical problems. Thus, it is necessary to reach an acceptable
compromise when choosing the number of nodes.</p>
      <p>Before starting training the map, it is necessary to initialize the weights of the neurons. A
wellchosen initialization method can significantly speed up learning and lead to better results. There are
three ways to initiate initial weights.</p>
      <p>Initialization with random values, when all weights are given small random values. Initialization by
examples, when the values of randomly selected examples from the training set are set as initial values</p>
      <p>Linear initialization. In this case, the weights are initiated by the values of vectors linearly ordered
along a linear subspace between the two principal eigenvectors of the original dataset. Eigenvectors can
be found, for example, using the Gram-Schmidt procedure.</p>
      <p>Training consists of a sequence of corrections of vectors representing neurons. At each step of
training, one of the vectors is randomly selected from the initial data set, and then a search is made for
the vector of neurons coefficients that is most similar to it. In this case, the winner neuron is selected,
which is most similar to the vector of inputs. Similarity in this problem is understood as the distance
between vectors, usually calculated in Euclidean space.</p>
      <p>After the winner neuron is found, the neural network weights are adjusted. In this case, the vector
describing the winning neuron and the vectors describing its neighbors in the grid move in the direction
of the input vector.</p>
      <p>With this rendering method, the resulting map can be represented as a puff cake. Each layer of which
is a coloring generated by one of the components of the original data. The resulting set of colorings can
be used to analyze the patterns that exist between the components of the dataset.</p>
      <p>After forming the map, we get a set of nodes that can be displayed as a two-dimensional image. In
this case, each node of the map can be assigned a section in the figure, four or hexagonal, the coordinates
of which are determined by the coordinates of the corresponding node in the lattice. Now, for
visualization, it remains only to determine the color of the cells of this picture. For this, the values of
the components are used.</p>
      <p>The resulting colorings together form an atlas showing the location of the components, the
connections between them, as well as the relative location of the various values of the components.</p>
      <p>A cluster will be a group of vectors, the distance between which within this group is less than the
distance to neighboring groups. The cluster structure when using the SOM algorithm can be displayed
by visualizing the distance between the support vectors (neuron weights).</p>
      <p>The most common use of this method is the unified distance matrix (u-matrix). For this, the distance
between the vector of neuron weights in the grid and its nearest neighbors is calculated. These values
are then used to determine the color that this node will be drawn with.</p>
      <p>Usually grayscale is used, and the greater the distance, the darker the node is drawn. When used in
this way, the nodes with the greatest distance between them and their neighbors correspond to black,
and to nearby nodes - white.</p>
      <p>In Figure 4, we observe the visualization of the neural network operation using Kohonen maps.</p>
      <p>In order to correctly design a software structure, it is necessary to form and analyze various
requirements.</p>
      <p>Business Requirements:
 Reducing the cost of enterprise management
 Achieve effective resource management
 Obtaining results of the required quality
 Ensuring the implementation of the most profitable initiatives
 Ensuring continuous interaction with the client
User requirements:
 Providing a choice of work scenario
 Ability to work with reports, depending on the selected user
Functional requirements (functions):
 Display of work progress
 Postponement of works execution
 Coordination of terms of performance and the fact of work performance
 Sorting, adding / deleting / editing data
 Data output in the form of reports</p>
      <p>Based on these requirements, the menu structure of the software product was developed, which is
shown in Figure 5.</p>
      <p>The program consists of a single form in which the main functions are highlighted in separate tabs.
User-editable lists open when loaded.</p>
      <p>At the moment, the program consists of three forms, on which the main form, parameters of the
modeled objects are displayed.</p>
      <p>By changing the parameters of the simulated objects, the user has the ability to customize the results
of the model, depending on the goals.</p>
      <p>The system allows you to perform the following actions:
 View the main menu
 Entering data into the system
 View the trainers database
 Viewing the database of group programs
 Registration in the system for new users</p>
      <p>Figure 6, 7, 8, 9 show the system interface.</p>
      <sec id="sec-7-1">
        <title>Figure 8: Function interface “Selection of group programs”  Figure 9: Data Entry function interface </title>
      </sec>
    </sec>
    <sec id="sec-8">
      <title>4. Conclusion  </title>
      <p>An algorithm of the system's operation was developed and thought out, in particular, during the
conceptual design, 12 entities were identified, of which 2 are reference. At the stage of logical design,
all attributes and attribute domains were formed, and a logical model was built. A physical model of
the system has been developed using the dbForge for MySQL database administration program with
the structure of the database tables. The structure of the software product as a whole was developed,
and the structure of interaction between the tabs of the main window was described in detail and the
process of working with the system was described.</p>
      <p>As a result of the current work, the authors have developed an Intelligent Data Analysis System to
manage the needs of clients of the fitness club “NRGym”, which allows accumulating data on the health
of clients, assessing the effectiveness of sports activities with various details, compiling, constructing
and printing various reports and graphs for a certain time period, to optimize the process of assessing
sports activity, to reduce the search time for the necessary information due to the ability to search and
filter.</p>
    </sec>
    <sec id="sec-9">
      <title>5. References </title>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>P. G.</given-names>
            <surname>Circle</surname>
          </string-name>
          ,
          <article-title>Neural networks and neurocomputers</article-title>
          , MPEI, Moscow,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>V. V.</given-names>
            <surname>Kruglov</surname>
          </string-name>
          ,
          <string-name>
            <surname>M. I. Dli</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R. Y.</given-names>
            <surname>Golunov</surname>
          </string-name>
          ,
          <source>Fuzzy logic and artificial neural networks, Fizmatlit</source>
          , Moscow,
          <year>2001</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>D.</given-names>
            <surname>Graupe</surname>
          </string-name>
          ,
          <source>Principles of Artificial Neural Networks, World Scientific Publishing Co. Pte</source>
          . Ltd., New York, NY,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>D.</given-names>
            <surname>Cox</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Biel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Hoque</surname>
          </string-name>
          ,
          <article-title>Experimental Design of Artificial Neural-Network Solutions for Traffic Sign Recognition</article-title>
          ,
          <source>in: Proceedings of SAI Intelligent Systems Conference</source>
          , Springer, Cham,
          <year>2021</year>
          , pp.
          <fpage>362</fpage>
          -
          <lpage>372</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>A.</given-names>
            <surname>Sallom</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Fatahi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Zamani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Ebadi</surname>
          </string-name>
          ,
          <article-title>Optimization in vitro conditions for plum × apricot embryo rescue and modeling some critical factors by using artificial neural networks technology</article-title>
          ,
          <source>Scientia Horticulturae</source>
          <volume>289</volume>
          (
          <year>2021</year>
          )
          <fpage>110487</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>A.</given-names>
            <surname>Monié</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Franceschi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Balayssac</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Malet-Martino</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Delample</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Perez</surname>
          </string-name>
          , J. C.
          <article-title>Garrigues Study of rapeseed oil gelation induced by commercial monoglycerides using a chemometric approach</article-title>
          ,
          <source>Food Chem</source>
          <volume>1</volume>
          (
          <year>2021</year>
          )
          <fpage>130870</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>R.</given-names>
            <surname>Caruana</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Niculescu-Mizil</surname>
          </string-name>
          ,
          <article-title>An empirical Comparison of Supervised Learning Algorithms</article-title>
          ,
          <source>in: Proc. 23rd Int. Conf. Mach. Learn. - ICML '06</source>
          ,
          <year>2006</year>
          , New York, NY, United States, pp.
          <fpage>161</fpage>
          -
          <lpage>168</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Xie</surname>
          </string-name>
          , W. Liu,
          <string-name>
            <given-names>C.</given-names>
            <surname>Song</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , J. Jing, TSCDNet +:
          <string-name>
            <given-names>A Highly</given-names>
            <surname>Robust Substation Anomaly Detection Method</surname>
          </string-name>
          ,
          <source>Optik</source>
          <volume>1</volume>
          (
          <year>2021</year>
          )
          <fpage>167808</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>Q.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Min</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Han</surname>
          </string-name>
          ,
          <string-name>
            <surname>Q</surname>
          </string-name>
          . Liu,
          <string-name>
            <given-names>C.</given-names>
            <surname>Zha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Zhao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Wei</surname>
          </string-name>
          ,
          <article-title>Inter-Domain Adaptation Label for Data Augmentation in Vehicle Re-identification</article-title>
          ,
          <source>IEEE Trans, Multimed</source>
          (
          <year>2021</year>
          )
          <article-title>1</article-title>
          .
          <fpage>20</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>F.</given-names>
            <surname>Ghani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>U.</given-names>
            <surname>Sattar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Narmeen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H. Wazir</given-names>
            <surname>Khan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Mehmood</surname>
          </string-name>
          ,
          <article-title>A Methodology for Glaucoma Disease Detection Using Deep Learning Techniques</article-title>
          ,
          <source>Int. J. Comput. Digit. Syst</source>
          (
          <year>2021</year>
          )
          <fpage>1</fpage>
          -
          <lpage>11</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>R.</given-names>
            <surname>Ma</surname>
          </string-name>
          , R. Angryk,
          <article-title>Tiered Clustering for Time Series Data</article-title>
          ,
          <source>in: Int. Conf. Deep Learn, Big Data Blockchain</source>
          , Springer, Cham,
          <year>2021</year>
          , pp
          <fpage>3</fpage>
          -
          <lpage>14</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>C.</given-names>
            <surname>Sandoval</surname>
          </string-name>
          , E. Pirogova,
          <string-name>
            <given-names>M.</given-names>
            <surname>Lech</surname>
          </string-name>
          ,
          <article-title>Adversarial Learning Approach to Unsupervised Labeling of Fine Art Paintings</article-title>
          ,
          <source>IEEE Access 5</source>
          (
          <year>2021</year>
          )
          <fpage>81969</fpage>
          -
          <lpage>81985</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>W.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Wen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Wang</surname>
          </string-name>
          , J. Liu,
          <string-name>
            <surname>Semi-Supervised Temporal</surname>
            Action Proposal Generation via Exploiting 2-
            <given-names>D</given-names>
          </string-name>
          <string-name>
            <surname>Proposal</surname>
          </string-name>
          Map,
          <source>IEEE Trans, Multimed</source>
          <volume>10</volume>
          (
          <year>2021</year>
          )
          <fpage>1</fpage>
          -
          <lpage>15</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>D.</given-names>
            <surname>Daoun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Ibnat</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Alom</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Aung</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. A.</given-names>
            <surname>Azim</surname>
          </string-name>
          ,
          <article-title>Reinforcement Learning: A Friendly Introduction</article-title>
          ,
          <source>in: Int. Conf. Deep Learn. Big Data Blockchain</source>
          , Springer, Cham,
          <year>2021</year>
          , pp
          <fpage>134</fpage>
          -
          <lpage>46</lpage>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>