<!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>August</journal-title>
      </journal-title-group>
    </journal-meta>
    <article-meta>
      <title-group>
        <article-title>Mechanism⋆</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Shunsuke HAYASHI</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Yuga ONO</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Ryuto ISHIBASHI</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Qi LI</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Lin MENG</string-name>
          <email>menglin@fc.ristumei.ac.jp</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>College of Science and Engineering, Ritsumeikan University</institution>
          ,
          <addr-line>1-1-1 Noji-higashi, Kusatsu, Shiga, Japan 525-8577</addr-line>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Graduate School of Science and Engineering, Ritsumeikan University</institution>
          ,
          <addr-line>1-1-1 Noji-higashi, Kusatsu, Shiga</addr-line>
          ,
          <country country="JP">Japan</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2023</year>
      </pub-date>
      <volume>2</volume>
      <fpage>8</fpage>
      <lpage>29</lpage>
      <abstract>
        <p>Facial expression recognition (FER) has been studied widely up to the present because FER is highly applicable. However, the COVID-19 pandemic forces people to wear face masks daily. A face mask removes information necessary for FER from a face and contains unnecessary information such as color and material. This paper aims to prevent the influence of meaningless regions for recognition, such as masks and backgrounds, due to the use of the attention mechanism. To obtain the optimal attention map, this paper has prepared two-stage networks. In stage 1, the network learns a simple task like masked/unmasked classification to generate an attention map. In stage 2, we train the network and use an attention map to guide the network to focus on the meaningful region to FER. As a result, the accuracy of our proposal achieved 86.8% and is 2.5% higher than VGG. The experimental results have proved the efectiveness of the proposed method.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        Facial expression recognition (FER) is one of the major recognition themes because this is
expected to be widely used in many fields, such as healthcare and smartphone applications.
Various deep-learning models have been proposed to achieve these goals until now[
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. Since
2019, COVID-19 has spread worldwide and forced people to wear face masks outside[
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. The
percentage of people wearing a mask in Japan is high in 2023. The demand for FER on masked
faces has increased. Wearing a mask covers most of the face with meaningful information
for FER, such as the mouth and nose. Additionally, masks have redundant features like color
and material. These have a negative impact on facial expression recognition. The attention
mechanism is one method that solves this problem. The attention mechanism dynamically
decides where to focus attention on input data and guides the classification network to focus
on the area around the eyes, and these issues are alleviated.
      </p>
      <p>The 5th International Symposium on Advanced Technologies and Applications in the Internet of Things (ATAIT 2023) ,
∗These authors contributed equally.</p>
      <p>LGOBE
http://http://www.ihpc.se.ritsumei.ac.jp/ (L. MENG)
CEUR</p>
      <p>To resolve this problem, this paper proposes the FER system based on CNN that introduces
an attention mechanism divided into two stages. In stage 1, the network classifies whether the
input image contains a mask and generates an attention map from this learning. This attention
map has information about where to focus attention in the spatial direction of the input image
or feature map. Moreover, this stage also aims to stabilize the generation of the attention map by
learning a simple classification. In stage 2, the network performs classification by synthesizing
the feature map and the attention map obtained in the previous stage. Due to synthesizing
them, the region necessary for recognition is given attention, and the rest is ignored. In short,
the major contribution of the paper has two aspects:
• By generating and using the attention mechanism, our proposal prevents influence from
extraneous information such as masks and backgrounds. Our proposal also has improved
accuracy compared to other CNNs.
• Our method has dynamically achieved stable attention map generation without human
power like annotation and image processing such as landmark detection.</p>
      <p>The remaining parts of this paper are organized as follows. Section 2 introduces the related
works. In Section 3, we propose our FER system. Section 4 shows the experimental method and
dataset. Section 5 reports experimental results. Finally, this paper is concluded in Section 6.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Related work</title>
      <sec id="sec-2-1">
        <title>2.1. Deep Learning</title>
        <p>
          Deep learning is one of the popular techniques of machine learning[
          <xref ref-type="bibr" rid="ref3 ref4 ref5">3, 4, 5</xref>
          ]. The reason deep
learning has been able to evolve so far is due to advances in hardware and the ease of acquiring
big data. In particular, CNN uses convolution layers and pooling layers to imitate the human
visual mechanism called the local receptive field. And CNN achieves high recognition accuracy.
Lightweight models [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ][
          <xref ref-type="bibr" rid="ref7">7</xref>
          ] and improvement models[
          <xref ref-type="bibr" rid="ref8">8</xref>
          ][
          <xref ref-type="bibr" rid="ref9">9</xref>
          ] have been proposed. These have
been applied in many fields up to now. These have been widely used as a base model for facial
expression recognition.
        </p>
      </sec>
      <sec id="sec-2-2">
        <title>2.2. Facial Expression Recognition (FER)</title>
        <p>
          FER is approximately divided into a static image-based FER network and dynamic-based FER
networks[
          <xref ref-type="bibr" rid="ref1">1</xref>
          ]. Especially, static image-based studies tend to be popular due to the ease of
statistical analysis and the availability of relevant training and test data. Static image-based FER
networks are categorized as ensembles[
          <xref ref-type="bibr" rid="ref10">10</xref>
          ], vision transformer-based networks[
          <xref ref-type="bibr" rid="ref11">11</xref>
          ], attention
mechanisms, and so on.
        </p>
      </sec>
      <sec id="sec-2-3">
        <title>2.3. Attention Mechanism</title>
        <p>
          One of the major problems in facial expression recognition is the occlusion problem. This
problem is that the face is partially hidden by obstacles such as glasses or hands. Wearing a face
mask falls into the category of this issue. To solve this, various attention mechanisms have been
proposed. Attention mechanisms’ approaches to occlusion problems are broadly divided into
two categories, such as patch-base-CNN[
          <xref ref-type="bibr" rid="ref12">12</xref>
          ][
          <xref ref-type="bibr" rid="ref13">13</xref>
          ][14] and attention-map-base-CNN.
Patch-baseCNN divides the face image into patch images based on facial organ points and independently
extracts feature vectors. After that, classification is performed by concatenating each feature
vector and inputting it into the fully connected layers. By weighting patches necessary for facial
expression recognition, the network pays attention to specific regions. Most of these studies
use landmarks as reference points for each facial organ. They are detected even if facial images
are partially hidden by obstructions. However, face masks cover most of the facial image, and
the detection rate of landmarks is not stable. Attention-map-base-CNN generates an attention
map that expresses where to pay attention in the spatial direction during training[15][16][17].
These networks combine feature maps with attention maps into weighted feature maps. Their
networks focus on the valid area for FER by using attention maps. FERatt[18] incorporates
the segmentation branch to generate an attention map. FERatt generates a mask image of the
face from the input image and uses it to reconstruct the image to remove the wasted region.
However, this method requires the mask image to be annotated by hand. The problem with this
approach is that it takes a lot of time and manpower. Attention Branch Network(ABN)[16] is an
end-to-end network that consistently performs feature extraction, attention map generation, and
classification. The method of generating attention maps is based on CAM[ 19]. ABN visualizes
the basis for classification decisions as well as achieves improved recognition accuracy in various
tasks by introducing an attention mechanism.
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>3. Proposed Method</title>
      <p>As shown in Figure 1, our FER system consists of two-stages such as Masked/Unmasked
Classification and Facial Expression Classification.</p>
      <sec id="sec-3-1">
        <title>3.1. Stage 1: Masked/Unmasked Classification Network (MCN)</title>
        <p>In stage 1, the Masked/Unmasked Classification Network (MCN) is intended to dynamically
generate the appropriate attention map from simple classification such as masked/unmasked
binary classification. MCN, designed based on ABN as shown in Figure 2, incorporates the
traditional recognition network structure and the Attention branch. The attention branch
compresses the feature map into a 1 channel by inputting the 1 × 1 convolution layer and outputs
it as attention maps. To ensure that the attention branch learns optimally, This branch also
makes a class prediction and calculates the loss. Accordingly, the overall loss function of this
network is determined by Eq1.</p>
        <p>(  ) =   (  ) +   (  )
(1)
The output attention map is normalized from 0 to 1 by the sigmoid function before the final
output. The attention map output from the attention branch has diferent features depending
on the prediction class of the attention branch because of the diferent points of the GPA and
1×1 convolution layer response. If the network containing the Attention branch directly learns
to classify facial expressions, the appearance of the output attention map varies in accordance
with expression classes. To avoid this, MCN classifies whether the input image is masked or
not. When masked facial images are inputs, return a common attention map regardless of facial
expression. Moreover, expression recognition is a dificult task because it requires looking at
every detail of the face. It makes the generation of attention maps tricky. Thus, this network
replaces this with a simple classification like the masked/unmasked binary classification to
stabilize. When learning of this classification is complete, unnecessary nodes to output the
attention map are disconnected from the network which fixes the weight parameters of this
network. Therefore, MCN becomes a generator that returns an appropriate attention map for
the input images as shown in Figure 2 (b).</p>
      </sec>
      <sec id="sec-3-2">
        <title>3.2. Stage 2: Facial Expression Classification Network (FECN)</title>
        <p>In Stage 2, Facial Expression Classification Network (FECN) uses the attention map to guide
the network to pay more attention to the region that is essential to FER when this network
classifies facial expressions. FECN combines feature maps generated from input images with
attention maps by hadamard product and outputs the final probability of each class as shown in
Figure 4. The attention map obtained from MFC is  (  ), and a feature map is   (  ). Weighted
feature map is defined   ′(  ), i.e., Eq.2.</p>
        <p>′(  ) =  (  ) ⊙   (  )
(2)
Due to using this weighted feature map, this network is trained while ignoring the unnecessary
regions, including face mask and background.</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. EXPERIMENTS</title>
      <sec id="sec-4-1">
        <title>4.1. Dataset</title>
        <p>Large amounts of data are required to train deep learning adequately. Unfortunately, it is
dificult to collect facial expression data, including masks. Moreover, these data are not widely
available. Therefore, in this paper, we create a new dataset by pasting a mask image on the
facial expression dataset called RAF-DB[20]. RAF-DB is a large-scale facial expression database
with around 30K great-diverse facial images downloaded from the Internet and includes subjects
of various ethnicities, ages, and genders. By 40 experts, these data were categorized into 7
classes such as angry, fearful, disgusted, happy, sad, surprised, and normal. We paste the
face mask image into this dataset following the method[21]. It detects facial contour points
(landmarks) from a face image and synthesizes a mask image according to the coordinates. In
reality, people wear face masks of various textures and colors, so in this experiment, white
non-woven cloth, black cloth, and gray cloth are equally included in the dataset as shown in
Figure 5. We removed data that cannot be visually classified as facial expressions and failed to
paste a face mask. This experiment has prepared two datasets as shown in Table1. The first
dataset is the masked/unmasked dataset (MU-dataset), including unprocessed face images and
mask-wearing images to train the masked/unmasked binary classifier. MU-dataset has about
500 images for training and 100 images for testing and includes multiple emotions. The second
dataset is the Masked FER dataset (M-FER-dataset) containing expression classes. However,
the mouth has meaningful information in helping to distinguish between the emotions of fear
and surprise[22]. By wearing a face mask, it is dificult for both humans and computers to
classify these expressions. Therefore, this FER focuses on four target classes such as angry,
surprised, normal, and happy. M-FER-dataset has about 4000 images for training and 400 images
for testing. These datasets are performed parallel shifts and random horizontal flips as data
augmentation.</p>
      </sec>
      <sec id="sec-4-2">
        <title>4.2. Experimental Method</title>
        <p>This paper compares the accuracy of our proposal with the VGGNet and simple ABN to elucidate
our superiority. Table2 indicates the dataset used by each network as well as whether each
network outputs the attention map. ABN and VGGNet are trained on M-FER-dataset to classify
facial expressions. In our proposal, the MCN is firstly trained on MU-dataset to generate the
attention map, and FECN is nextly trained on M-FER-dataset. This experiment used a GPU
device called GeForce RTX 3080 and Pytorch as the Python framework.</p>
      </sec>
      <sec id="sec-4-3">
        <title>4.3. Experimental results of Attention Map Output</title>
      </sec>
      <sec id="sec-4-4">
        <title>4.4. Experimental results of Facial Expression Classification</title>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Discussion and Future Work</title>
      <sec id="sec-5-1">
        <title>5.1. Discussion</title>
        <p>This experiment prepares ABN which directly is trained in FER to compare with our proposal,
which is divided into two-stage. When a masked face image is input to ABN, the output is
the unique attention map that depends on the input facial expression, as shown in Figure 6 (c).
In addition, dificult classifications such as FER make it hard to generate attention maps, and
Figure 6 (c) shows that the angry class is one example. When these unstable attention maps
are used as the attention mechanism, Table 3 indicates that recognition performance decreases
on the contrary. To avoid this situation, we replaced the learning to generate attention maps
with a simple classification. As a result, an attention map was generated focused on the area
around the eyes for all classes, as shown in Figure 6 (a). These attention maps make FECN pay
attention to the region that is meaningful to FER, such as the area around the eyes, and remove
extraneous information, including background and mask patterns. Table 3 shows our proposal
has achieved improved recognition accuracy on Masked FER.</p>
      </sec>
      <sec id="sec-5-2">
        <title>5.2. Future Work</title>
        <p>FER requires real-time performance. The network must also be lightweight so that it runs on
small devices. In this paper, our FER system is divided into two stages and trains diferent
networks at each stage. Thus, the number of parameters for the entire network considerably
has increased. Both MCN and FECN have their own feature extractors. Therefore, we aim to
solve this problem by having these feature extractors share weights.</p>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>6. Conculsion</title>
      <p>As COVID-19 is spreading worldwide, people are forced to wear masks when going out.
Therefore, the demand for FER while wearing a face mask has increased. However, masks hide most
of the face as well as contain extraneous information such as the pattern and color of the mask.
To prevent these negative efects, our FER system has incorporated an Attention mechanism
and consists of two stages such as classification and facial expression classification. By dividing
our FER system into two stages, our proposal has succeeded in generating an attention map
that is closer to the ideal for this task than other attention models. As a result, our proposal
achieved 86.7% recognition accuracy. In the future, the challenge is to reduce the size of the
network to decrease the number of parameters and amount of calculations.
[14] Y. Li, J. Zeng, S. Shan, X. Chen, Occlusion aware facial expression recognition using cnn
with attention mechanism, IEEE Transactions on Image Processing 28 (2019) 2439–2450.
doi:1 0 . 1 1 0 9 / T I P . 2 0 1 8 . 2 8 8 6 7 6 7 .
[15] S. Minaee, M. Minaei, A. Abdolrashidi, Deep-emotion: Facial expression recognition using
attentional convolutional network, Sensors 21 (2021) 3046.
[16] H. Fukui, T. Hirakawa, T. Yamashita, H. Fujiyoshi, Attention branch network: Learning of
attention mechanism for visual explanation, 2019. a r X i v : 1 8 1 2 . 1 0 0 2 5 .
[17] Y. Zhang, C. Wang, X. Ling, W. Deng, Learn from all: Erasing attention consistency for
noisy label facial expression recognition, 2022. a r X i v : 2 2 0 7 . 1 0 2 9 9 .
[18] P. D. M. Fernandez, F. A. G. Peña, T. I. Ren, A. Cunha, Feratt: Facial expression recognition
with attention net, 2019. a r X i v : 1 9 0 2 . 0 3 2 8 4 .
[19] B. Zhou, A. Khosla, A. Lapedriza, A. Oliva, A. Torralba, Learning deep features for
discriminative localization, 2015. a r X i v : 1 5 1 2 . 0 4 1 5 0 .
[20] S. Li, W. Deng, J. Du, Reliable crowdsourcing and deep locality-preserving learning for
expression recognition in the wild, in: 2017 IEEE Conference on Computer Vision and
Pattern Recognition (CVPR), IEEE, 2017, pp. 2584–2593.
[21] A. Anwar, A. Raychowdhury, Masked face recognition for secure authentication, 2020.</p>
      <p>a r X i v : 2 0 0 8 . 1 1 1 0 4 .
[22] M. W. Schurgin, J. Nelson, S. Iida, H. Ohira, J. Y. Chiao, S. L. Franconeri,
Eye movements during emotion recognition in faces, Journal of Vision
14 (2014) 14–14. URL: https://doi.org/10.1167/14.13.14. doi:1 0 . 1 1 6 7 / 1 4 . 1 3 . 1 4 .
a r X i v : h t t p s : / / a r v o j o u r n a l s . o r g / a r v o / c o n t e n t ¥  / / /933685/1534 −
7362 − 14 − 13 − 14. .</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>M.</given-names>
            <surname>Karnati</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Seal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Bhattacharjee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Yazidi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Krejcar</surname>
          </string-name>
          ,
          <article-title>Understanding deep learning techniques for recognition of human emotions using facial expressions: A comprehensive survey</article-title>
          ,
          <source>IEEE Transactions on Instrumentation and Measurement</source>
          <volume>72</volume>
          (
          <year>2023</year>
          )
          <fpage>1</fpage>
          -
          <lpage>31</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>M.</given-names>
            <surname>Wen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Yokoo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Yue</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Meng</surname>
          </string-name>
          ,
          <article-title>An ai-based mask-wearing status recognition and person identification system</article-title>
          ,
          <source>in: 2021 International Symposium on Advanced Technologies and Applications in the Internet of Things (ATAIT</source>
          <year>2021</year>
          ),
          <year>August</year>
          .
          <year>2021</year>
          .(In JAPAN),
          <year>2021</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>X.</given-names>
            <surname>Yue</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Fujikawa</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Meng</surname>
          </string-name>
          ,
          <article-title>Dynamic Dataset Augmentation for Deep LearningBased Oracle Bone Inscriptions Recognition</article-title>
          ,
          <source>J. Comput. Cult. Herit</source>
          .
          <volume>15</volume>
          (
          <year>2022</year>
          ). URL: https://doi.org/10.1145/3532868.
          <source>doi:1 0 . 1 1</source>
          <volume>4 5 / 3 5 3 2 8 6 8 .</volume>
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>X.</given-names>
            <surname>Yue</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Meng</surname>
          </string-name>
          ,
          <article-title>An ultralightweight object detection network for empty-dish recycling robots</article-title>
          ,
          <source>IEEE Transactions on Instrumentation and Measurement</source>
          <volume>72</volume>
          (
          <year>2023</year>
          )
          <fpage>1</fpage>
          -
          <lpage>12</lpage>
          .
          <source>doi:1 0 . 1 1 0 9 / T I M . 2 0</source>
          <volume>2 3 . 3 2 4 1 0 7 8 .</volume>
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Fujikawa</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Yue</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C. V.</given-names>
            <surname>Aravinda</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G. A.</given-names>
            <surname>Prabhu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Meng</surname>
          </string-name>
          ,
          <article-title>Recognition of Oracle Bone Inscriptions by using Two Deep Learning Models</article-title>
          ,
          <source>International Journal of Digital Humanities</source>
          (
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>A. G.</given-names>
            <surname>Howard</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Zhu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Kalenichenko</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Weyand</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Andreetto</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Adam</surname>
          </string-name>
          , Mobilenets:
          <article-title>Eficient convolutional neural networks for mobile vision applications</article-title>
          ,
          <source>arXiv preprint arXiv:1704.04861</source>
          (
          <year>2017</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>S.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Deng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Du</surname>
          </string-name>
          ,
          <article-title>Reliable crowdsourcing and deep locality-preserving learning for expression recognition in the wild</article-title>
          ,
          <source>in: 2017 IEEE Conference on Computer Vision and Pattern Recognition (CVPR)</source>
          , IEEE,
          <year>2017</year>
          , pp.
          <fpage>2584</fpage>
          -
          <lpage>2593</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>K.</given-names>
            <surname>Simonyan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Zisserman</surname>
          </string-name>
          ,
          <article-title>Very deep convolutional networks for large-scale image recognition</article-title>
          ,
          <source>arXiv preprint arXiv:1409.1556</source>
          (
          <year>2014</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>K.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , S. Ren,
          <string-name>
            <given-names>J.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <article-title>Deep residual learning for image recognition</article-title>
          ,
          <source>in: Proceedings of the IEEE conference on computer vision and pattern recognition</source>
          ,
          <year>2016</year>
          , pp.
          <fpage>770</fpage>
          -
          <lpage>778</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>K.</given-names>
            <surname>Mohan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Seal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Krejcar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Yazidi</surname>
          </string-name>
          ,
          <article-title>Facial expression recognition using local gravitational force descriptor-based deep convolution neural networks</article-title>
          ,
          <source>IEEE Transactions on Instrumentation and Measurement</source>
          <volume>70</volume>
          (
          <year>2021</year>
          )
          <fpage>1</fpage>
          -
          <lpage>12</lpage>
          .
          <source>doi:1 0 . 1 1 0 9 / T I M . 2 0</source>
          <volume>2 0 . 3 0 3 1 8 3 5 .</volume>
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>F.</given-names>
            <surname>Ma</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <article-title>Facial expression recognition with visual transformers and attentional selective fusion</article-title>
          ,
          <source>IEEE Transactions on Afective Computing</source>
          (
          <year>2021</year>
          )
          <fpage>1</fpage>
          -
          <lpage>1</lpage>
          . URL: https://doi. org/10.1109%
          <fpage>2Ftaffc</fpage>
          .
          <year>2021</year>
          .
          <volume>3122146</volume>
          .
          <source>doi:1 0 . 1 1</source>
          <volume>0 9</volume>
          / t a f f
          <source>c . 2 0</source>
          <volume>2 1 . 3 1 2 2 1 4 6 .</volume>
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>G.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Peng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Huang</surname>
          </string-name>
          , F. Cheng, H. Yuan,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <article-title>A region group adaptive attention model for subtle expression recognition</article-title>
          ,
          <source>IEEE Transactions on Afective Computing</source>
          (
          <year>2021</year>
          )
          <fpage>1</fpage>
          -
          <lpage>1</lpage>
          .
          <source>doi:1 0 . 1 1</source>
          <volume>0</volume>
          <fpage>9</fpage>
          <string-name>
            <surname>/ T A F F C .</surname>
          </string-name>
          <article-title>2 0 2 1 . 3 1 3 3 4 2 9</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Zeng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Shan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <article-title>Patch-gated cnn for occlusion-aware facial expression recognition</article-title>
          ,
          <source>in: 2018 24th International Conference on Pattern Recognition (ICPR)</source>
          ,
          <year>2018</year>
          , pp.
          <fpage>2209</fpage>
          -
          <lpage>2214</lpage>
          .
          <source>doi:1 0 . 1 1</source>
          <volume>0 9 /</volume>
          <string-name>
            <surname>I C P</surname>
          </string-name>
          R .
          <volume>2 0 1 8 . 8 5 4 5 8 5 3 .</volume>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>