<!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>Metaformer Model with ArcFaceLoss and Contrastive Learning for SnakeCLEF2023 Fine-Grained Classification</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Zhennan Shi</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Huazhen Chen</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Chang Liu</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Jun Qiu</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Beijing Information Science and Technology University</institution>
          ,
          <addr-line>Beijing, 100101</addr-line>
          ,
          <country country="CN">China</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Tianjin University</institution>
          ,
          <addr-line>Tianjin, 300072</addr-line>
          ,
          <country country="CN">China</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>Fine-Grained Visual Classification (FGVC) has always been a significant direction in computer vision. This paper describes our solution for the SnakeCLEF2023 competition. Firstly, we employ the MetaFormer architecture to process both the meta information and image information of the data. Secondly, we utilize ArcFace loss to address the issue of imbalanced data distribution. Next, we leverage the SimCLR contrastive learning method to allow the model to fully utilize the information from the dataset. Lastly, we employ data preprocessing techniques to enhance accuracy. Our approach achieved 88.30% on the private-score-track1 and 1613 on the private-score-track2, securing the third position. Github: https://github.com/BAOfanTing/SnakeCLEF2023</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Fine-Grained Visual Classification</kwd>
        <kwd>SnakeCLEF2023</kwd>
        <kwd>Long Tail Distribution</kwd>
        <kwd>Multimodal Backbone</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>The human eye is an extraordinary organ capable of not only distinguishing broad
categories of objects such as bikes, cats, and dogs but also further classifying them into specific
subcategories like Garfield cats, Tabby cats, British Shorthair blue cats, and so on. The process
of distinguishing diferent subcategories of cats within the broader category of cats is known
as fine-grained visual classification (FGVC). After the rapid development of computer vision,
people have attempted to use computer vision instead of human eyes for fine-grained visual
classification.</p>
      <p>
        FGVC has applications in our daily lives, industries, and businesses. For example, when
taking a photograph of a bird, this technology can be utilized to identify the species of the
bird [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. When capturing an image of a car, this technology can be utilized to determine its
brand, model, production year, and other relevant details [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. FGVC technology is continuously
evolving and holds the potential for even more applications in the future.
      </p>
      <p>General image classification
Cat</p>
      <p>Bike</p>
      <p>Amphiesma
stolatum</p>
      <p>Bitis caudalis
Dog</p>
      <p>Bitis peringueyi</p>
      <p>
        FGVC faces several challenges. Challenge 1: Large intra-class variations. Individuals within
the same class can exhibit significant diferences in appearance. As shown in Figure 2, the adult
and sub-adult plumages of the Red-crowned Crane have distinct coloration[
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. Challenge 2:
Small inter-class variations. Individuals within the diferent classes are very similar or closely
related in certain aspects. For example, the Coral Snake and the Milk Snake have striking
similarities in their appearance, both having bodies with black, red, and yellow bands. Their
colors and patterns are almost identical, except for the arrangement of bands. This competition
is the SnakeCLEF2023[
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] competition in LifeCLEF2023[
        <xref ref-type="bibr" rid="ref5 ref6">5, 6</xref>
        ], which focuses on snake species
classification, both humans and machines face dificulties due to the large intra-class variations
and small inter-class variations in snake appearances. To distinguish them, it is necessary to
learn features from the head shape, body shape, appearance, skin texture, and eye structure [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ].
（a）
（b）
（c）
（d）
      </p>
    </sec>
    <sec id="sec-2">
      <title>2. Related work</title>
      <p>FGVC methods can be divided into two categories: methods that only use image information
and methods that incorporate meta information, such as geographic location, gender, and shape.</p>
      <p>
        Using only image information. The mentioned network structures proposed various
approaches for image recognition. CMAL-Net [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] introduced a cross-layer mutual attention
learning network that enabled the model to focus on discriminative regions. Yong Hou et al. [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ]
proposed a multilayer feature descriptors fusion CNN model that considered both second-order
and first-order local feature descriptors from diferent layers. P-CNN [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ] employed a system
consisting of three modules: Squeeze-and-Excitation (SE) block, Part Localization Network
(PLN), and Part Classification Network (PCN) to enhance fine-grained classification performance.
RA-CNN [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ] proposed a novel recurrent attention convolutional neural network that recursively
learned discriminative region attention and region-based feature representation at multiple
scales. MRA-CNN [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] improved RA-CNN by incorporating associations between multiple
feature regions. It also introduced a feature scale-dependent (FSD) algorithm to select optimal
features as input for the classifier. These network structures proposed diferent approaches and
techniques.
      </p>
      <p>
        Moving on to snake image recognition, Amiza Amir et al. [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] proposed an image-based
method for the automatic identification of snake species, achieving an accuracy of 87 %. However,
it was limited to identifying only 22 species of snakes. Z. Yang et al. [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ] proposed using a
detection network to identify the snake’s area before classifying its species. Due to limited
training data, it could only distinguish 11 snake species. Patel et al. [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ] modified and successfully
implemented four region-based convolutional neural network (R-CNN) architectures for image
classification, achieving an overall accuracy rate of around 75 %.
      </p>
      <p>
        Using mata information. Incorporating meta-information has proven efective. Zhai et al.
[
        <xref ref-type="bibr" rid="ref16">16</xref>
        ] proposed a joint graph regularized heterogeneous metric learning (JGRHML) algorithm
that integrated the structure of diferent media using joint graph regularization. Geo-Aware [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ]
systematically investigated various ways of incorporating geolocation information into
finegrained image classification, such as geolocation priors, post-processing, or feature modulation.
CVL [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ] proposed a two-stream model combining vision and language (CVL) for learning
latent semantic representations. The visual stream learned deep features using convolutional
neural networks, while the language stream utilized natural language descriptions to indicate
distinctive parts or features of each image. The language stream provided a flexible and compact
encoding method for salient visual aspects, aiding in the discrimination of subcategories. These
models incorporated meta-information in diferent ways.
      </p>
      <p>
        Regarding snake image recognition with meta-information, Bloch L et al. [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ] utilized YOLOv5
as a detection network and incorporated meta-information such as geographic information for
snake classification. However, the issue of imbalanced datasets remained unresolved. I Bolon
et al. [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ] used Vision Transformer as the backbone and integrated geographic information
through binary masking.
      </p>
      <p>In summary, these network structures and methods provide insights for improving image
recognition and snake species classification. However, each method has its strengths and
limitations. Some methods excel in snake species classification accuracy but are limited by
imbalanced data, while others can incorporate rich meta-information but may require more
computational resources. Therefore, it is crucial to consider these pros and cons and choose the
appropriate method based on specific requirements.</p>
    </sec>
    <sec id="sec-3">
      <title>3. Method</title>
      <sec id="sec-3-1">
        <title>3.1. Dataset</title>
        <p>Through analyzing the sample distribution of diferent categories in the dataset, we discovered
a significant class imbalance issue in the dataset. Some classes have as many as 2000 samples,
while others have only a few samples. The distribution of images for each category is shown in
Figure 3, which exhibits a long-tail distribution pattern. Furthermore, we compared the dataset
with the dataset from the previous year and found an increase of over 200 snake species in
Table 1. However, the training set has fewer samples this year, with a reduction of 100000
samples. The increased number of classes and the decreased training samples further increase
the dificulty of this year’s task.</p>
        <p>Evaluation Metric:This year, the organizers calculated various metrics. First, they calculated
the standard Acc and macro-averaged  1. In addition, they calculated the toxicant confusion
error, which is the number of samples that confused toxicants as harmless divided by the number
of toxicants in the test set.</p>
        <p>First consider a function  such () = 1 if species  is venonmous, otherwise () = 0. For
a correct species  and predicted species ˆ, the (, ˆ) is given as follows:
⎧ 0
⎪
⎪⎪⎪ 1
(, ˆ) = ⎨ 2
⎪⎪ 2
⎪
⎪⎩ 5
if  = ˆ
if  ̸= ˆ and () = 0 and () = 0
if  ̸= ˆ and () = 0 and (ˆ) = 1
if  ̸= ˆ and () = 1 and (ˆ) = 1
if  ̸= ˆ and () = 1 and (ˆ) = 0
 −  − 2 = ∑︁  (, ˆ)

The challenge meteric private-score-track2 is sum of  over all test observations:
(1)
(2)</p>
        <p>The metric private-score-track1 is a weighted average between the macro  1-score and the
weighted accuracies of diferent types of confusion.</p>
        <p>−  − 1 =
where 1 = 1.0, 2 = 1.0, 3 = 2.0, 4 = 5.0, 5 = 2.0, are the weights of individual
terms. 1 is the macro  1-score, 1 is the percentage of wrongly classified harmless species
as another harmless species, 2 is the percentage of wrongly classified harmless species as
another venomous species, 3 is the percentage of wrongly classified venomous species as
another harmless species, and 4 is the percentage of wrongly classified venomous species as
another venomous species.
3.2. Model</p>
        <p>
          For the competition, we utilized the MetaFormer [
          <xref ref-type="bibr" rid="ref21">21</xref>
          ] architecture, which is a useful network
architecture for computer vision tasks. MetaFormer has designed a five-stage network structure.
The first stage S0 is a simple three-layer convolutional structure. S1 and S2 are MBConv blocks
[
          <xref ref-type="bibr" rid="ref22">22</xref>
          ] with squeeze-excitation. MBConv blocks are based on an inverted residual mechanism and
a bottleneck design. The inverted residual structure is designed to provide higher nonlinear
representation capability while keeping the model lightweight, and the bottleneck uses smaller
intermediate layers to reduce computation. S3 and S4 are Transformer blocks with relative
position bias. This bias alleviates the problem that the order of the tokens in the input sequence
cannot be used in the self-attention operation.
        </p>
        <p>
          We modify the input meta information of MetaFormer. Specifically, the meta information is
modified to include the code, endemic, and binomial names. The workflow of MetaFormer is
shown in Figure 4[
          <xref ref-type="bibr" rid="ref23">23</xref>
          ].
        </p>
        <p>Xenoxybelis argenteus
Endemic:False
Code:VE
Binomial name:
Xenoxybelis argenteus
one-hot
convolution
Epdemic</p>
        <p>Code
Binomial name</p>
        <p>Patch
Embedding
Non-Linear
Embedding
·
· vision token
class token
meta token
·
·</p>
        <p>Relative
Transformer
classification</p>
      </sec>
      <sec id="sec-3-2">
        <title>3.3. Long-Tailed loss</title>
        <p>
          In order to address the issue of imbalanced sample distribution in the dataset, we employed a
long-tail loss function. There are several commonly used loss functions to cope with the class
imbalance problem. ArcFace loss [
          <xref ref-type="bibr" rid="ref24">24</xref>
          ] is designed for face recognition tasks. Other loss functions
include the Class-Balanced Loss [
          <xref ref-type="bibr" rid="ref25">25</xref>
          ], which calculates a small neighborhood associated with
each sample for computation. Seesaw Loss [
          <xref ref-type="bibr" rid="ref26">26</xref>
          ] mitigates the risk of increased misclassification
due to gradient attenuation in negative samples. Equalization Loss v2 [
          <xref ref-type="bibr" rid="ref27">27</xref>
          ] discovers a novel
gradient-guided reweighting mechanism.
        </p>
        <p>Compared with other loss functions, ArcFace Loss optimizes the measure of feature space
by introducing angle cosine values, so that the angles between feature vectors can reflect the
similarity between samples. By normalizing the feature vectors and introducing an adjustable
parameter, ArcFace Loss enhances the distinguishability of the features and reduces the
diference in magnitude of the feature vectors. These features make ArcFace Loss a good performer
in fine-grained classification tasks, so we adopt it as our loss function.</p>
        <p>ArcFace loss’s formula is as follows:</p>
        <p>1 ∑︁ log
arcface ( ) = − 
=1</p>
        <p>(cos(  +))
(cos(  +)) + ∑︀
=1,̸=  cos  
(4)
where  represents the number of samples,  represents the number of classes,  is the true
class of the -th sample,   is the angle between the feature vector of the -th sample and its
true class, and   is the angle between the feature vector of the -th sample and the -th class. 
represents the scale parameter.  represents the margin parameter, which is the inter-class
distance. In both the numerator and denominator, a margin is added to each individual term,
represented by  and  in Figure 5. By calculating the loss with this margin, the margin increases
gradually, resulting in the compression of the region for each class. This efectively enlarges
the inter-class distance while reducing the intra-class distance.</p>
        <p>result</p>
      </sec>
      <sec id="sec-3-3">
        <title>3.4. SimCLR self-supervised learning</title>
        <p>
          SimCLR [
          <xref ref-type="bibr" rid="ref28">28</xref>
          ] is a self-supervised learning framework that has gained significant attention in
the field of computer vision. The main goal of SimCLR is to learn meaningful representations of
unlabeled data by maximizing agreement between diferent augmented views of the same image
while minimizing agreement between views of diferent images. The framework’s workflow is
shown in Figure 6. By maximizing the similarity between the representations of positive image
        </p>
        <p>Data
Augmentation</p>
        <p>Encoder
Encoder
hi
hj</p>
        <p>Dense Relu Dense
Dense Relu Dense
zi
zj
Maximize
similarity
Base Encoder</p>
        <p>Projection Head
pairs, SimCLR encourages the model to learn meaningful and discriminative features of images.</p>
        <p>
          We also adopted the InfoNCE [
          <xref ref-type="bibr" rid="ref29">29</xref>
          ] loss function, commonly used in contrastive learning. It
places positive samples in the numerator and negative samples in the denominator, aiming to
maximize the similarity of positive samples while minimizing the similarity of negative samples.
The formula for InfoNCE is expressed as follows:
        </p>
        <p>exp ( · +/ )
 = − log ∑︀
=0 exp ( · / )
(5)
where + represents the positive samples for  while the remaining  denotes the negative
samples.  refers to the temperature hyperparameter, which we set to 0.25 in our subsequent
experiments.</p>
      </sec>
      <sec id="sec-3-4">
        <title>3.5. Pre-post-process</title>
        <p>Data Preprocessing: In order to enhance the generalization ability of the method, we applied
image augmentation techniques to the input images, including resizing and center cropping.
We also introduced random vertical flipping, random horizontal flipping, and random 45-degree
rotation to augment the training dataset.</p>
        <p>Data Postprocessing: During the testing phase, we employed the Test Time Augmentation
(TTA) strategy. TTA augments the input test data with operations such as expansion, flipping,
and rotation to obtain a set of data for an image and take the mean value of the final predictions.
For the csv file of the test dataset, each observation-id corresponds to multiple images, and the
model predicts one class for each image, so there may be multiple diferent predicted classes
for each observation id. For each observation id, we select the class with the most occurrences
as the final prediction result. We also adopt an integrated learning strategy to improve the
accuracy by fusing the results of MetaFormer-0, Metaformer-2, and Metaformer-2 with SimCLR
three models. For each observation-id, we select the class with the most occurrences from the
csv files generated by the three models as the final prediction result.</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Experiments</title>
      <sec id="sec-4-1">
        <title>4.1. Implementation Details</title>
        <p>
          We conducted all the experiments with one NVIDIA GeForce RTX 3090. We used the
AdamW[
          <xref ref-type="bibr" rid="ref30">30</xref>
          ] optimizer with a weight decay of 0.05 and a base learning rate of 5e-5. The
batch size is determined by the maximum number that the GPU can handle, usually an integer
multiple of 2. We use the batch size of 22. And the initial learning rate is modified according
to batch size (That is, the learning rate multiplied by the batch size multiplied by the number
of GPUs divided by 512.). Also, set the number of training epochs to 100. During training, we
used data augmentation and rotation. We also use the CosineLRScheduler of the timm library
to modify the learning rate. At first the learning rate increases from the warmup learning rate
5e-8 to the base learning rate, and then enters the cosine annealing phase, where the learning
rate is adjusted by the cosine function, decreasing with increasing epochs until it decreases to
min learning rate 5e-7.
        </p>
      </sec>
      <sec id="sec-4-2">
        <title>4.2. Ablation Studies</title>
        <p>
          Firstly, we attempted the approach based on EficientNet [
          <xref ref-type="bibr" rid="ref31">31</xref>
          ], the loss function used was
CrossEntropy Loss. However, we found the model couldn’t incorporate meta information,
resulting in lower accuracy than expected. Therefore, we switched to the MetaFormer model.
Comparison of above two models is shown in Table 2. The results demonstrated the superiority
of the MetaFormer backbone. Thus, we use MetaFormer-2 as the backbone of our method.
        </p>
        <p>To further enhance accuracy, we employed the SimCLR contrastive learning method to train
the model and fine-tuned it with an input of size 512x512. As shown in Table 3, our highest
accuracy was achieved using the SimCLR contrastive learning method. The results show the
efectiveness of the contrastive learning method SimCLR.</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Conclusion</title>
      <p>In this paper, we presented our solution for the snakeCLEF2023 competition. We adopted the
MetaFormer architecture to incorporate efective meta information, utilized the ArcFace loss
function to address the issue of long-tail data distribution, employed the SimCLR contrastive
learning method with pre-trained models to improve accuracy, and applied data augmentation
techniques to enhance the model’s generalization ability.</p>
      <p>
        Our solution achieved 88.30% on the private-score-track1 and and 1613 on the
private-scoretrack2, securing the third position. Due to time and resource constraints, we were unable to
further explore the long-tail loss function and new contrastive learning methods. However, the
results demonstrate the efectiveness of our approach and highlight the potential for further
improvements. Future work could involve the following aspects: 1) Exploring or designing new
long-tail loss functions. 2) Investigating other contrastive learning methods, such as the MAE
[
        <xref ref-type="bibr" rid="ref32">32</xref>
        ] pre-training method, to further enhance the performance of pre-training.
      </p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>A.</given-names>
            <surname>Miyaguchi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Yu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Cheungvivatpant</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Dudley</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Swain</surname>
          </string-name>
          ,
          <article-title>Motif mining and unsupervised representation learning for birdclef 2022</article-title>
          , arXiv preprint arXiv:
          <volume>2206</volume>
          .04805 (
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>B.</given-names>
            <surname>Cynthia Sherin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Jayavel</surname>
          </string-name>
          ,
          <article-title>Efective vehicle classification and re-identification on stanford cars dataset using convolutional neural networks</article-title>
          ,
          <source>in: Proceedings of 3rd International Conference on Artificial Intelligence: Advances and Applications: ICAIAA 2022</source>
          , Springer,
          <year>2023</year>
          , pp.
          <fpage>177</fpage>
          -
          <lpage>190</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>X.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Cao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Zhu</surname>
          </string-name>
          ,
          <article-title>A multi-scale approach to investigating the wintering habitat selection of red-crowned cranes in the yancheng nature reserve, china</article-title>
          .,
          <source>Pakistan Journal of Zoology</source>
          <volume>48</volume>
          (
          <year>2016</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>L.</given-names>
            <surname>Picek</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Šulc</surname>
          </string-name>
          , Chamidullin,
          <string-name>
            <given-names>A. M.</given-names>
            <surname>Durso</surname>
          </string-name>
          , Overview of snakeclef 2023:
          <article-title>Snake identification in medically important scenarios</article-title>
          ,
          <source>in: CLEF 2023-Conference and Labs of the Evaluation Forum</source>
          ,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>A.</given-names>
            <surname>Joly</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Goëau</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Kahl</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Picek</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Botella</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Marcos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Šulc</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hrúz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Lorieul</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. S.</given-names>
            <surname>Moussi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Servajean</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Kellenberger</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Cole</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Durso</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Glotin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Planqué</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.-P.</given-names>
            <surname>Vellinga</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Klinck</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Denton</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Eggel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Bonnet</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Müller</surname>
          </string-name>
          ,
          <article-title>Lifeclef 2023 teaser: Species identification and prediction challenges</article-title>
          , in: J.
          <string-name>
            <surname>Kamps</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <string-name>
            <surname>Goeuriot</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          <string-name>
            <surname>Crestani</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Maistro</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          <string-name>
            <surname>Joho</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          <string-name>
            <surname>Davis</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Gurrin</surname>
            ,
            <given-names>U.</given-names>
          </string-name>
          <string-name>
            <surname>Kruschwitz</surname>
            ,
            <given-names>A</given-names>
          </string-name>
          . Caputo (Eds.),
          <source>Advances in Information Retrieval</source>
          , Springer Nature Switzerland, Cham,
          <year>2023</year>
          , pp.
          <fpage>568</fpage>
          -
          <lpage>576</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>A.</given-names>
            <surname>Joly</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Botella</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Picek</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Kahl</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Goëau</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Deneu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Marcos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Estopinan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Chamidullin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Šulc</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hrúz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Servajean</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Kellenberger</surname>
          </string-name>
          , E. Cole,
          <string-name>
            <given-names>H.</given-names>
            <surname>Glotin</surname>
          </string-name>
          , et al.,
          <source>Overview of lifeclef</source>
          <year>2023</year>
          <article-title>: evaluation of ai models for the identification and prediction of birds, plants, snakes and fungi</article-title>
          ,
          <source>in: Experimental IR Meets Multilinguality, Multimodality, and Interaction: 14th International Conference of the CLEF Association, CLEF</source>
          <year>2023</year>
          , Thessaloniki, Greece,
          <source>September 18-23</source>
          ,
          <year>2023</year>
          , Proceedings, Springer,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>N. I.</given-names>
            <surname>Progga</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Rezoana</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. S.</given-names>
            <surname>Hossain</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R. U.</given-names>
            <surname>Islam</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Andersson</surname>
          </string-name>
          ,
          <article-title>A cnn based model for venomous and non-venomous snake classification</article-title>
          , in: Applied Intelligence and Informatics: First International Conference, AII 2021,
          <article-title>Nottingham</article-title>
          ,
          <string-name>
            <surname>UK</surname>
          </string-name>
          ,
          <source>July 30-31</source>
          ,
          <year>2021</year>
          , Proceedings 1, Springer,
          <year>2021</year>
          , pp.
          <fpage>216</fpage>
          -
          <lpage>231</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>D.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Zhao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Kato</surname>
          </string-name>
          ,
          <article-title>Learn from each other to classify better: Cross-layer mutual attention learning for fine-grained visual classification</article-title>
          ,
          <source>Pattern Recognition</source>
          <volume>140</volume>
          (
          <year>2023</year>
          )
          <fpage>109550</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Hou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Luo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Zhao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Peng</surname>
          </string-name>
          ,
          <article-title>Multilayer feature descriptors fusion cnn models for nfie-grained visual recognition</article-title>
          ,
          <source>Computer Animation and Virtual Worlds</source>
          <volume>30</volume>
          (
          <year>2019</year>
          )
          <article-title>e1897</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>J.</given-names>
            <surname>Han</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Yao</surname>
          </string-name>
          , G. Cheng,
          <string-name>
            <given-names>X.</given-names>
            <surname>Feng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Xu</surname>
          </string-name>
          , P-cnn:
          <article-title>Part-based convolutional neural networks for fine-grained visual categorization</article-title>
          ,
          <source>IEEE transactions on pattern analysis and machine intelligence</source>
          <volume>44</volume>
          (
          <year>2019</year>
          )
          <fpage>579</fpage>
          -
          <lpage>590</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>J.</given-names>
            <surname>Fu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Zheng</surname>
          </string-name>
          , T. Mei,
          <article-title>Look closer to see better: Recurrent attention convolutional neural network for fine-grained image recognition</article-title>
          ,
          <source>in: Proceedings of the IEEE conference on computer vision and pattern recognition</source>
          ,
          <year>2017</year>
          , pp.
          <fpage>4438</fpage>
          -
          <lpage>4446</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>S.</given-names>
            <surname>Fayou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Ngo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Sek,</surname>
          </string-name>
          <article-title>Combining multi-feature regions for fine-grained image recognition</article-title>
          ,
          <source>Int. J. Image Graph. Signal Process</source>
          <volume>14</volume>
          (
          <year>2022</year>
          )
          <fpage>15</fpage>
          -
          <lpage>25</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>A.</given-names>
            <surname>Amir</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N. A. H.</given-names>
            <surname>Zahri</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Yaakob</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R. B.</given-names>
            <surname>Ahmad</surname>
          </string-name>
          ,
          <article-title>Image classification for snake species using machine learning techniques</article-title>
          ,
          <source>in: Computational Intelligence in Information Systems: Proceedings of the Computational Intelligence in Information Systems Conference (CIIS</source>
          <year>2016</year>
          ), Springer,
          <year>2017</year>
          , pp.
          <fpage>52</fpage>
          -
          <lpage>59</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Sinnott</surname>
          </string-name>
          ,
          <article-title>Snake detection and classification using deep learning (</article-title>
          <year>2021</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>A.</given-names>
            <surname>Patel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Cheung</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Khatod</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Matijosaitiene</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Arteaga</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. W.</given-names>
            <surname>Gilkey</surname>
          </string-name>
          <string-name>
            <surname>Jr</surname>
          </string-name>
          ,
          <article-title>Revealing the unknown: real-time recognition of galápagos snake species using deep learning</article-title>
          ,
          <source>Animals</source>
          <volume>10</volume>
          (
          <year>2020</year>
          )
          <fpage>806</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>X.</given-names>
            <surname>Zhai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Peng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Xiao</surname>
          </string-name>
          ,
          <article-title>Heterogeneous metric learning with joint graph regularization for cross-media retrieval</article-title>
          ,
          <source>in: Proceedings of the AAAI Conference on Artificial Intelligence</source>
          , volume
          <volume>27</volume>
          ,
          <year>2013</year>
          , pp.
          <fpage>1198</fpage>
          -
          <lpage>1204</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>G.</given-names>
            <surname>Chu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Potetz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Howard</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Song</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Brucher</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Leung</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Adam</surname>
          </string-name>
          ,
          <article-title>Geo-aware networks for fine-grained recognition</article-title>
          ,
          <source>in: Proceedings of the IEEE/CVF International Conference on Computer Vision Workshops</source>
          ,
          <year>2019</year>
          , pp.
          <fpage>0</fpage>
          -
          <lpage>0</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <given-names>X.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Peng</surname>
          </string-name>
          ,
          <article-title>Fine-grained image classification via combining vision and language</article-title>
          ,
          <source>in: Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition</source>
          ,
          <year>2017</year>
          , pp.
          <fpage>5994</fpage>
          -
          <lpage>6002</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <given-names>L.</given-names>
            <surname>Bloch</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.-F.</given-names>
            <surname>Böckmann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Bracke</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C. M.</given-names>
            <surname>Friedrich</surname>
          </string-name>
          ,
          <article-title>Combination of object detection, geospatial data, and feature concatenation for snake species identification (</article-title>
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <given-names>I.</given-names>
            <surname>Bolon</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Picek</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. M.</given-names>
            <surname>Durso</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Alcoba</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Chappuis</surname>
          </string-name>
          , R. Ruiz de Castañeda,
          <article-title>An artificial intelligence model to identify snakes from across the world: Opportunities and challenges for global health and herpetology</article-title>
          ,
          <source>PLoS neglected tropical diseases 16</source>
          (
          <year>2022</year>
          )
          <article-title>e0010647</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <given-names>Q.</given-names>
            <surname>Diao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Jiang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Wen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Yuan</surname>
          </string-name>
          ,
          <article-title>Metaformer: A unified meta framework for ifne-grained recognition</article-title>
          ,
          <source>arXiv preprint arXiv:2203.02751</source>
          (
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [22]
          <string-name>
            <given-names>M.</given-names>
            <surname>Sandler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Howard</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Zhu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Zhmoginov</surname>
          </string-name>
          , L.-C.
          <article-title>Chen, Mobilenetv2: Inverted residuals and linear bottlenecks</article-title>
          ,
          <source>in: Proceedings of the IEEE conference on computer vision and pattern recognition</source>
          ,
          <year>2018</year>
          , pp.
          <fpage>4510</fpage>
          -
          <lpage>4520</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [23]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Zhu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Fang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Feng</surname>
          </string-name>
          ,
          <article-title>Explored an efective methodology for ifne-grained snake recognition</article-title>
          ,
          <source>arXiv preprint arXiv:2207.11637</source>
          (
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [24]
          <string-name>
            <given-names>J.</given-names>
            <surname>Deng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Guo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Xue</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Zafeiriou</surname>
          </string-name>
          , Arcface:
          <article-title>Additive angular margin loss for deep face recognition</article-title>
          ,
          <source>in: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition</source>
          ,
          <year>2019</year>
          , pp.
          <fpage>4690</fpage>
          -
          <lpage>4699</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          [25]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Cui</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Jia</surname>
          </string-name>
          , T.-
          <string-name>
            <given-names>Y.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Song</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Belongie</surname>
          </string-name>
          ,
          <article-title>Class-balanced loss based on efective number of samples</article-title>
          ,
          <source>in: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition</source>
          ,
          <year>2019</year>
          , pp.
          <fpage>9268</fpage>
          -
          <lpage>9277</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          [26]
          <string-name>
            <given-names>J.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Cao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Pang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Gong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C. C.</given-names>
            <surname>Loy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <article-title>Seesaw loss for long-tailed instance segmentation</article-title>
          ,
          <source>in: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition</source>
          ,
          <year>2021</year>
          , pp.
          <fpage>9695</fpage>
          -
          <lpage>9704</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          [27]
          <string-name>
            <given-names>J.</given-names>
            <surname>Tan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Lu</surname>
          </string-name>
          , G. Zhang,
          <string-name>
            <given-names>C.</given-names>
            <surname>Yin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <article-title>Equalization loss v2: A new gradient balance approach for long-tailed object detection</article-title>
          ,
          <source>in: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition</source>
          ,
          <year>2021</year>
          , pp.
          <fpage>1685</fpage>
          -
          <lpage>1694</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          [28]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Tu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Song</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Yang</surname>
          </string-name>
          , E. Zhu,
          <article-title>Deep graph clustering via dual correlation reduction</article-title>
          ,
          <source>in: Proceedings of the AAAI Conference on Artificial Intelligence</source>
          , volume
          <volume>36</volume>
          ,
          <year>2022</year>
          , pp.
          <fpage>7603</fpage>
          -
          <lpage>7611</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          [29]
          <string-name>
            <surname>A.</surname>
          </string-name>
          v. d. Oord,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Vinyals</surname>
          </string-name>
          ,
          <article-title>Representation learning with contrastive predictive coding</article-title>
          , arXiv preprint arXiv:
          <year>1807</year>
          .
          <volume>03748</volume>
          (
          <year>2018</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref30">
        <mixed-citation>
          [30]
          <string-name>
            <given-names>I.</given-names>
            <surname>Loshchilov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Hutter</surname>
          </string-name>
          ,
          <article-title>Decoupled weight decay regularization</article-title>
          ,
          <source>arXiv preprint arXiv:1711.05101</source>
          (
          <year>2017</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref31">
        <mixed-citation>
          [31]
          <string-name>
            <given-names>M.</given-names>
            <surname>Tan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Le</surname>
          </string-name>
          , Eficientnet:
          <article-title>Rethinking model scaling for convolutional neural networks</article-title>
          ,
          <source>in: International conference on machine learning, PMLR</source>
          ,
          <year>2019</year>
          , pp.
          <fpage>6105</fpage>
          -
          <lpage>6114</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref32">
        <mixed-citation>
          [32]
          <string-name>
            <given-names>K.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Xie</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Dollár</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Girshick</surname>
          </string-name>
          ,
          <article-title>Masked autoencoders are scalable vision learners</article-title>
          ,
          <source>in: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition</source>
          ,
          <year>2022</year>
          , pp.
          <fpage>16000</fpage>
          -
          <lpage>16009</lpage>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>