<!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>Pretrained audio neural networks for Speech emotion recognition in Portuguese</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Marcelo Matheus Gauy</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Marcelo Finger</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Universidade de São Paulo</institution>
          ,
          <addr-line>Rua do Matão 1010, São Paulo</addr-line>
          ,
          <country country="BR">Brazil</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>The goal of speech emotion recognition (SER) is to identify the emotional aspects of speech. The SER challenge for Brazilian Portuguese speech was proposed with short snippets of Portuguese which are classified as neutral, non-neutral female and non-neutral male according to paralinguistic elements (laughing, crying, etc). This dataset contains about 50 minutes of Brazilian Portuguese speech. As the dataset leans on the small side, we investigate whether a combination of transfer learning and data augmentation techniques can produce positive results. Thus, by combining a data augmentation technique called SpecAugment, with the use of Pretrained Audio Neural Networks (PANNs) for transfer learning we are able to obtain interesting results. The PANNs (CNN6, CNN10 and CNN14) are pretrained on a large dataset called AudioSet containing more than 5000 hours of audio. They were finetuned on the SER dataset and the best performing model (CNN10) on the validation set was submitted to the challenge, achieving an  1 score of 0.73 up from 0.54 from the baselines provided by the challenge. Moreover, we also tested the use of Transformer neural architecture, pretrained on about 600 hours of Brazilian Portuguese audio data. Transformers, as well as more complex models of PANNs (CNN14), fail to generalize to the test set in the SER dataset and do not beat the baseline. Considering the limitation of the dataset sizes, currently the best approach for SER is using PANNs (specifically, CNN6 and CNN10).</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Speech emotion recognition</kwd>
        <kwd>Pretrained audio neural networks</kwd>
        <kwd>Transfer learning</kwd>
        <kwd>Transformers</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        Speech emotion recognition (SER) aims at identifying the emotional aspects of speech
independently from the actual semantic content. SER can be used to identify the emotions of
humans, e.g., when using mobile phones, an ability that may become crucial in improving
human-machine interactions in the future [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. Several eforts to acquire speech data classified
with diferent emotional labels have been undertaken [
        <xref ref-type="bibr" rid="ref2 ref3 ref4">2, 3, 4</xref>
        ]. These datasets are typically small
in size, even for languages such as English. In order to tackle these datasets, the use of transfer
learning and data augmentation techniques may be instrumental.
      </p>
      <p>
        Transfer learning is the method of training a network on a particular problem where there is an
abundance of data, with the goal of using the acquired knowledge to obtain better performance
on a related problem with limited data available. Transfer learning has been efectively used
in many fields of deep learning such as computer vision [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] and language modelling [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. Data
augmentation is the method of increasing the amount of data available by slightly modifying
copies of the data. This can be done, for example, by masking parts of the input or by adding
Gaussian noise to it.
      </p>
      <p>In this paper, we use transfer learning and data augmentation techniques to study SER in
Brazilian Portuguese speech. We participate in the shared task SER challenge, a challenge for
Brazilian Portuguese speech emotion recognition. This challenge made available a labeled
dataset of 625 audio files as training set for SER. Moreover, a dataset of 308 files was made
available as the test set. The training and test datasets consisted of short snippets of Brazilian
Portuguese speech, usually less than 15  long, labeled neutral, non-neutral female and
nonneutral male (non-neutral for audios containing laughs, cries, etc).</p>
      <p>
        For transfer learning, we employ Pretrained audio neural network (PANN) [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ], which are
convolutional neural networks trained on a large dataset of audios (AudioSet [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]), consisting of
1.9 million audio clips distributed across 527 sound classes. By using the pretrained models
made available by the developers, and finetuning on the SER dataset for Brazilian Portuguese
speech, we are able to beat the proposed baselines of prosodic features and wav2vec features.
We achieve (via CNN10) F1-score of 0.73, up from 0.54 from the baselines. During finetuning,
we employ a data augmentation technique called SpecAugment [9].
      </p>
      <p>We also tested the use of Transformer neural networks, pretrained on a large amount of
Brazilian Portuguese audio data [10]. However, we find that, with the current amount of available
data for SER, Transformers do not generalize their training performance to the validation and
test sets. This holds even while using most common techniques to prevent overfitting. The
same behaviour was also observed for more complex PANNs, such as CNN14.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Related Work</title>
      <p>
        There is a large literature on SER in English [11, 12, 13, 14, 15, 16, 17, 18]. Moreover, there are a
lot of small datasets for SER in English, such as, RAVDESS [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], SAVEE [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] and IEMOCAP [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. To
the best of our knowledge, the SER dataset for Brazilian Portuguese speech is the only available
dataset on the language. In addition, English datasets are usually classified in a diferent set of
labels. RAVDESS [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], for example, has the classes of calm, happy, angry, sad, fearful, surprise
and disgust. This contrasts with the classes of neutral, non-neutral female and non-neutral
male present in the SER dataset for Brazilian Portuguese speech. As such, comparisons of our
work with the state of the art in English language are not really possible. Nevertheless, the
authors of [18], the most recent work, obtain an average recall on RAVDESS of 84.3 percent
using wav2vec 2.0 [19]. On IEMOCAP, they obtain an average recall of 67.2 percent, also using
wav2vec 2.0.
      </p>
      <p>
        Transfer learning is a very common technique in situations where the dataset available is small
in size. It has been efectively employed in computer vision [
        <xref ref-type="bibr" rid="ref5">5, 20</xref>
        ], language modelling [
        <xref ref-type="bibr" rid="ref6">6, 21</xref>
        ]
and audio tasks [
        <xref ref-type="bibr" rid="ref7">7, 22, 18</xref>
        ]. In the original PANN paper [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ], authors propose several convolutional
neural networks pretrained on AudioSet which can be finetuned on other smaller datasets. In [ 18]
the authors use wav2vec 2.0 pretrained on Librispeech and finetuned on either RAVDESS or
IEMOCAP for speech emotion recognition. Finally, in [22] the authors provide a comprehensive
review on transfer learning methods used for speech and language processing tasks.
      </p>
    </sec>
    <sec id="sec-3">
      <title>3. Methodology</title>
      <sec id="sec-3-1">
        <title>3.1. SER Dataset</title>
        <p>To perform SER on Brazilian Portuguese speech, we use the training dataset (CORAA SER
version 1.0) provided for the challenge. This dataset was built from the C-ORAL-BRASIL I
corpus [23], with 625 audio files, typically less than 15-long, containing informal spontaneous
Brazilian Portuguese speech. These audio files are labeled neutral, non-neutral female,
nonneutral male. An audio is labeled non-neutral male if it is a male speaker and it contains
paralinguistic elements in the speech (such as laughing, crying, etc). Similarly, an audio is
labeled non-neutral female if it is a female speaker and the speech contains such paralinguistic
elements.</p>
        <p>We split the oficial training dataset into training ( 80%), validation (10%) and test sets (10%).
The split was done in an arbitrary way to ensure that the three datasets were balanced (i.e.
contained relatively the same proportion of neutral, non-neutral female and non-neutral male
ifles). The training dataset consisted of 500 files, the validation dataset consisted of 63 files and
the test set of 62 files. The results we report are for the validation and test set performance.</p>
        <p>As the oficial test dataset made available did not have labels, we have labeled it ourselves,
out of curiosity and to enable more consistent tests of the performance of the networks. While
the labels may not be perfect, they provide a close enough picture, so the performance of the
models can be measured as an average over multiple experiments (as we were observing high
variance). As such, we also provide results for the oficial test set with our unoficial labels. We
stress that we did not use the test set labels for any form of model or parameter selection.</p>
        <p>
          Lastly, the PANNs we use have been trained on the AudioSet [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ] dataset containing more
than 5000 hours of audio distributed across 527 classes.
        </p>
      </sec>
      <sec id="sec-3-2">
        <title>3.2. PANN Architectures</title>
        <p>CNN14 contains 12 such convolutional blocks (6 pairs). All networks have a penultimate fully
connected layer to add extra representation ability, as well as a final 527 units fully connected
layer where a sigmoid is applied to obtain the probabilities for each class. In Table 1, the first
line describes the input of the networks, that is,  frames of Log Mel Spectrogram with 64 mel
bins for each frame. Each subsequent line represents a layer of the networks. The numbers
following the @ sign represent the quantity of 5 × 5 or 3 × 3 feature maps used.</p>
      </sec>
      <sec id="sec-3-3">
        <title>3.3. Transformer Encoder Architecture</title>
        <p>In addition to experimenting with the PANNs, we also attempt to extract good performances
from Transformers. The Transformer architecture we use is equivalent to the Transformer
Encoder architecture from [30]. That is, we use a three-layer Transformer with multi-head
self attention. Each encoder layer is composed of two sub-layers. The first is a multi-head
selfattention network and the second is a fully connected feed-forward layer. Each sub-layer has a
residual connection followed by layer normalization [31]. The encoder layers and sub-layers
produce outputs of dimension  (in experiments  is either 128 or 512). The fully connected
feed forward network within each encoder layer has an inner dimension of 4. We feed the
Transformer Encoders the MFCC-gram of the audios, with each token fed to the Transformer
corresponding to a frame of the MFCC-gram [32]. We name these Transformers, the
MFCCgram Transformers [32]. We use sinusoidal positional encoding so the Transformer has access
to the order of the sequence fed [30, 33]. The input frames are projected linearly to a hidden
layer of dimension , as direct addition of acoustic features to positional encoding may lead to
training failure [33].</p>
        <p>Typically, Transformers undergo two training phases: pretraining and finetuning. In the
pretraining phase, we make use of a technique called Time alteration [33] to pretrain the
Transformer in about 600 hours of Brazilian Portuguese audio data (in other words, we use
pretrained models from [10]). Time alteration is a technique that masks random spans of frames
of the MFCC-gram similarly to how time masking functions in SpecAugment (described in
subsection 3.4). During pretraining, the model is trained to reconstruct the masked frames. For
Brazilian Portuguese audio data, we use the corpora of NURC-São Paulo[34], NURC-Recife [35],
ALIP [36], SP2010 [37] and Programa Certas Palavras [38]. In the experiments, we also show
the performance of Transformers which do not undergo pretraining, that is, which we initialize
at random and do finetuning directly. We name those Transformers the Baseline MFCC-gram
Transformers. After pretraining, the Transformers are finetuned on the SER dataset.</p>
      </sec>
      <sec id="sec-3-4">
        <title>3.4. Data augmentation: SpecAugment</title>
        <p>The SER training dataset used for the challenge leans on the small side and contains about
50 minutes of audio. To mitigate the potential overfitting efects of a small training dataset,
we perform a common audio data augmentation technique called SpecAugment [9] on the
Mel spectrogram (or MFCC-gram) of the audio files before feeding it to the network’s layers.
SpecAugment consists in masking random spans of consecutive segments of the spectrogram
of the audios. Masking can be done along the time dimension (that is, on spans of consecutive
frames), or along the frequency dimension (that is, on spans of consecutive frequency channels).</p>
        <p>
          Following [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ], time masking is done by selecting a uniform length ℓ (chosen between 0 and
64) and a uniform frame start  (chosen between 0 and  − ℓ, where  is the total number of
frames of the audio) and proceeding to mask the frames from  to  + ℓ − 1. We mask two such
blocks of consecutive frames. Frequency masking is similar to time masking but done along
the frequency dimension. So, a random uniform length ℓ is chosen (between 0 and 8) and a
uniform frequency band  is chosen (between 0 and  − ℓ where  is the total number of Mel
frequency bins). The frequency bands from  to  + ℓ − 1 are masked to zero. As with time
masking, we mask two such blocks of consecutive frequency bands.
        </p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Results and Discussion</title>
      <p>
        We will check the performance of the three proposed PANNs (CNN6, CNN10 and CNN14) on
the SER training and test datasets. In order to take advantage of the large pretraining done on
the AudioSet [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] dataset, we will use the pretrained models of CNN6, CNN10 and CNN14 made
available by the authors of [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. These can be found in Zenodo. These pretrained models will be
ifnetuned on the SER training dataset in order to achieve better performance than the baseline.
      </p>
      <p>
        Moreover, to showcase the massive level of transfer learning that is happening via the
pretrained models, we will show the performance of the three networks (CNN6, CNN10 and
CNN14) without the use of a pretrained model, that is, initializing their weights at random and
not making use of the AudioSet [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] pretraining. We call these three models the Baseline CNN6,
the Baseline CNN10 and the Baseline CNN14.
      </p>
      <p>Lastly, we show the performance of three Transformers models. We analyze MFCC-gram
Transformers pretrained on about 600 hours of Brazilian Portuguese audio data, as well as,
Baseline MFCC-gram Transformers (without pretraining) containing 512 and 128 units per
Encoder layer.</p>
      <p>
        As mentioned before, the SER training dataset is split into a training (80%), validation (10%)
and test sets (10%). In Table 2, we report the  1 score performance of the nine models in the
validation and test datasets as well as in the oficial dataset (which was labeled by us). The
results in the table are averaged across 25 experiments, to better control the generally high
 1 score variance between diferent experiments. Each experiment consisted of training the
model for 100 epochs for CNNs and 20 epochs for Transformers1 in the training set and the
best validation performance model (checked after each epoch) was saved and later analyzed
on the test set and oficial test set. The batch size used was 16 and the learning rate was
10− 4 for the CNNs and we use a warmup learning rate schedule according to the formula
− 0.5 × (− 0.5,  × − 1.5) for the Transformers as is
standard [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. We use  = 4000.
      </p>
      <p>As can be seen on Table 2, the best results in the test set were attained by the CNN6 (0.62  1
score). Moreover, it seems that the test set built by us was inherently harder than the oficial
test set. In the oficial test set, the best result was obtained by CNN10 ( 0.74  1 score), in line
with it achieving also the best results on the validation set.</p>
      <p>We observe that CNN14’s performance was significantly worse both on validation and test.
However, representation ability wise it is the most powerful of the PANN models. It is likely
that the SER dataset being so small meant CNN14 sufered from overfitting.</p>
      <p>We also experienced overfitting issues when attempting MFCC-gram Transformers based
models. There, using pretraining techniques did not yield better performance. This is likely
because the pretraining data contained primarily voice, without laughs or cries, so the
important markers were not present in pretrained data. Moreover, no common technique (such as
dropout [39], L1 or L2 regularization [40], data augmentation techniques as SpecAugment [9]
and Mixup [41]) to prevent overfitting yielded good results. It seems that the reduced size of
the SER dataset is currently hindering performance in more complex networks, so a likely way
of dramatically improving results would be to increase the size of the available dataset.</p>
      <p>
        Lastly, note that the three baseline PANN models are far away from beating the baselines
provided by the challenge. There is noticeable transfer learning benefit in using the pretrained
models on AudioSet [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]. This large diference illustrates again the fact that the SER dataset is so
small (50 minutes of audio) and that these networks sufer to generalize on it.
      </p>
      <p>We have sent for evaluation in the challenge, the model which attained best test performance
(a CNN6 which oficially reported 0.66  1-score) and the model which attained best validation
performance (a CNN10 which oficially reported 0.73  1-score). Moreover, out of curiosity, we
show the confusion matrix of the CNN10 model sent for evaluation in Table 3. Observe that the
model classifies the vast majority of neutral and non-neutral females files correctly. Most of the
errors are done classifying non-neutral male files (often wrongly classified as neutral).</p>
      <p>1As Transformer does not generalize, no advantage exists in training it for longer than 20 epochs.</p>
      <p>1 score Validation per-  1 score Test perfor-  1 score Oficial test
performance mance formance
Model
Baseline
CNN6
Baseline
CNN10
Baseline
CNN14
CNN6
CNN10
CNN14
MFCC-gram
Transformers
512 units
Baseline
MFCC-gram
Transformers
512 units
Baseline
MFCC-gram
Transformers
128 units
In this paper, we have efectively used transfer learning to beat the proposed baselines in the
shared task SER challenge in Brazilian Portuguese speech. By using, the PANNs CNN6 and
CNN10, we have attained  1 score of 0.73 up from 0.54 from the baselines. We have also
5. Conclusion
non-neutral
predicted non-neutral
female
5
2
26
observed that more complex networks, such as CNN14 and Transformers, while being in theory
more capable of attaining better performances, sufer from overfitting. As such, we determine
that probably the best way of improving results is by increasing the size of the training set.</p>
      <p>Future work could involve increasing the size of the training set so that Transformers and
CNN14 generalize their training performances to the test set. In addition, pretraining
Transformers with audio data containing specifically laughs, cries and so on may prove useful. Moreover,
other data augmentation techniques could be used which might provide additional benefit in
terms of preventing overfitting.</p>
    </sec>
    <sec id="sec-5">
      <title>Acknowledgments</title>
      <p>This work was supported by FAPESP grant number 2020/16543-7 (POSDOC) and project 06443-5
(SPIRA). MF was partly supported by CNPq grant PQ 303609/2018-4, Fapesp 2014/12236-1
(Animals) and the Center for Artificial Intelligence (C4AI-USP), with support by the São Paulo
Research Foundation (FAPESP grant #2019/07665-4) and by the IBM Corporation. This work
was financed in part by the Coordenação de Aperfeiçoamento de Pessoal de Nível Superior –
Brasil (CAPES) – Finance Code 001.
[9] D. S. Park, W. Chan, Y. Zhang, C.-C. Chiu, B. Zoph, E. D. Cubuk, Q. V. Le, Specaugment:
A simple data augmentation method for automatic speech recognition, arXiv preprint
arXiv:1904.08779 (2019).
[10] M. Gauy, M. Finger, Acoustic models for brazilian portuguese speech based on neural
transformers, IN PREPARATION (2022).
[11] M. Lech, M. Stolar, C. Best, R. Bolia, Real-time speech emotion recognition using a
pretrained image classification network: Efects of bandwidth reduction and companding,
Frontiers in Computer Science 2 (2020) 14.
[12] S. Yoon, S. Byun, S. Dey, K. Jung, Speech emotion recognition using multi-hop attention
mechanism, in: ICASSP 2019-2019 IEEE International Conference on Acoustics, Speech
and Signal Processing (ICASSP), IEEE, 2019, pp. 2822–2826.
[13] H. Xu, H. Zhang, K. Han, Y. Wang, Y. Peng, X. Li, Learning alignment for multimodal
emotion recognition from speech, arXiv preprint arXiv:1909.05645 (2019).
[14] S. Yoon, S. Byun, K. Jung, Multimodal speech emotion recognition using audio and text,
in: 2018 IEEE Spoken Language Technology Workshop (SLT), IEEE, 2018, pp. 112–118.
[15] A. Satt, S. Rozenberg, R. Hoory, Eficient emotion recognition from speech using deep
learning on spectrograms., in: Interspeech, 2017, pp. 1089–1093.
[16] D. Issa, M. F. Demirci, A. Yazici, Speech emotion recognition with deep convolutional
neural networks, Biomedical Signal Processing and Control 59 (2020) 101894.
[17] Z. Peng, Y. Lu, S. Pan, Y. Liu, Eficient speech emotion recognition using multi-scale cnn
and attention, in: ICASSP 2021-2021 IEEE International Conference on Acoustics, Speech
and Signal Processing (ICASSP), IEEE, 2021, pp. 3020–3024.
[18] L. Pepino, P. Riera, L. Ferrer, Emotion recognition from speech using wav2vec 2.0
embeddings, arXiv preprint arXiv:2104.03502 (2021).
[19] A. Baevski, Y. Zhou, A. Mohamed, M. Auli, wav2vec 2.0: A framework for self-supervised
learning of speech representations, Advances in Neural Information Processing Systems
33 (2020) 12449–12460.
[20] A. Krizhevsky, I. Sutskever, G. E. Hinton, Imagenet classification with deep convolutional
neural networks, Advances in neural information processing systems 25 (2012) 1097–1105.
[21] T. B. Brown, B. Mann, N. Ryder, M. Subbiah, J. Kaplan, P. Dhariwal, A. Neelakantan,
P. Shyam, G. Sastry, A. Askell, et al., Language models are few-shot learners, arXiv
preprint arXiv:2005.14165 (2020).
[22] D. Wang, T. F. Zheng, Transfer learning for speech and language processing, in: 2015
AsiaPacific Signal and Information Processing Association Annual Summit and Conference
(APSIPA), IEEE, 2015, pp. 1225–1237.
[23] T. Raso, H. Mello, The c-oral-brasil i: reference corpus for informal spoken brazilian
portuguese, in: International Conference on Computational Processing of the Portuguese
Language, Springer, 2012, pp. 362–367.
[24] E. O. Brigham, R. Morrow, The fast fourier transform, IEEE spectrum 4 (1967) 63–70.
[25] K. Choi, G. Fazekas, M. Sandler, Automatic tagging using deep convolutional neural
networks, arXiv preprint arXiv:1606.00298 (2016).
[26] Q. Kong, C. Yu, Y. Xu, T. Iqbal, W. Wang, M. D. Plumbley, Weakly labelled audioset tagging
with attention neural networks, IEEE/ACM Transactions on Audio, Speech, and Language
Processing 27 (2019) 1791–1802.
[27] S. Iofe, C. Szegedy, Batch normalization: Accelerating deep network training by reducing
internal covariate shift, in: International conference on machine learning, PMLR, 2015, pp.
448–456.
[28] V. Nair, G. E. Hinton, Rectified linear units improve restricted boltzmann machines, in:</p>
      <p>Icml, 2010.
[29] Q. Kong, Y. Cao, T. Iqbal, Y. Xu, W. Wang, M. D. Plumbley, Cross-task learning for audio
tagging, sound event detection and spatial localization: Dcase 2019 baseline systems, arXiv
preprint arXiv:1904.03476 (2019).
[30] A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, Ł. Kaiser, I.
Polosukhin, Attention is all you need, Advances in neural information processing systems 30
(2017) 5998–6008.
[31] J. L. Ba, J. R. Kiros, G. E. Hinton, Layer normalization, arXiv preprint arXiv:1607.06450
(2016).
[32] M. M. Gauy, M. Finger, Audio mfcc-gram transformers for respiratory insuficiency
detection in covid-19, in: STIL 2021 (), 2021. URL: http://XXXXX/219270.pdf.
[33] A. T. Liu, S.-w. Yang, P.-H. Chi, P.-c. Hsu, H.-y. Lee, Mockingjay: Unsupervised speech
representation learning with deep bidirectional transformer encoders, in: ICASSP
20202020 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP),
IEEE, 2020, pp. 6419–6423.
[34] A. T. d. Castilho, D. Pretti, A linguagem falada culta na cidade de são paulo: materiais para
seu estudo., 1986.
[35] M. Oliviera Jr, et al., Nurc digital um protocolo para a digitalização, anotação, arquivamento
e disseminação do material do projeto da norma urbana linguística culta (nurc), CHIMERA:
Revista de Corpus de Lenguas Romances y Estudios Lingüísticos 3 (2016) 149–174.
[36] S. C. L. Gonçalves, Projeto alip (amostra linguística do interior paulista) e banco de
dados iboruna: 10 anos de contribuição com a descrição do português brasileiro, Estudos
Linguísticos (São Paulo. 1978) 48 (2019) 276–297.
[37] R. B. Mendes, Projeto sp2010: Amostra da fala paulistana, http://projetosp2010. flch. usp.</p>
      <p>br&gt;. Acesso em 1 (2013) 2013.
[38] C. S. P. Teixeira, Acervo Certas Palavras- Catálogo 1981-1996., Unicamp Cedae, 1997.
[39] N. Srivastava, G. Hinton, A. Krizhevsky, I. Sutskever, R. Salakhutdinov, Dropout: a simple
way to prevent neural networks from overfitting, The journal of machine learning research
15 (2014) 1929–1958.
[40] I. Goodfellow, Y. Bengio, A. Courville, Deep learning, MIT press, 2016.
[41] H. Zhang, M. Cisse, Y. N. Dauphin, D. Lopez-Paz, mixup: Beyond empirical risk
minimization, arXiv preprint arXiv:1710.09412 (2017).</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>E.</given-names>
            <surname>Andre</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Rehm</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Minker</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Bühler</surname>
          </string-name>
          ,
          <article-title>Endowing spoken language dialogue systems with emotional intelligence</article-title>
          ,
          <source>in: Tutorial and Research Workshop on Afective Dialogue Systems</source>
          , Springer,
          <year>2004</year>
          , pp.
          <fpage>178</fpage>
          -
          <lpage>187</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>S. R.</given-names>
            <surname>Livingstone</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F. A.</given-names>
            <surname>Russo</surname>
          </string-name>
          ,
          <article-title>The ryerson audio-visual database of emotional speech and song (ravdess): A dynamic, multimodal set of facial and vocal expressions in north american english</article-title>
          ,
          <source>PloS one 13</source>
          (
          <year>2018</year>
          )
          <article-title>e0196391</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>W.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <source>Machine Audition: Principles, Algorithms and Systems: Principles, Algorithms and Systems, IGI Global</source>
          ,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>C.</given-names>
            <surname>Busso</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Bulut</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.-C.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Kazemzadeh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Mower</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Kim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. N.</given-names>
            <surname>Chang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. S.</given-names>
            <surname>Narayanan</surname>
          </string-name>
          , Iemocap:
          <article-title>Interactive emotional dyadic motion capture database, Language resources</article-title>
          and evaluation
          <volume>42</volume>
          (
          <year>2008</year>
          )
          <fpage>335</fpage>
          -
          <lpage>359</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>A.</given-names>
            <surname>Voulodimos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Doulamis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Doulamis</surname>
          </string-name>
          , E. Protopapadakis,
          <article-title>Deep learning for computer vision: A brief review</article-title>
          ,
          <source>Computational intelligence and neuroscience</source>
          <year>2018</year>
          (
          <year>2018</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>J.</given-names>
            <surname>Devlin</surname>
          </string-name>
          , M.-
          <string-name>
            <given-names>W.</given-names>
            <surname>Chang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Toutanova</surname>
          </string-name>
          , Bert:
          <article-title>Pre-training of deep bidirectional transformers for language understanding</article-title>
          , arXiv preprint arXiv:
          <year>1810</year>
          .
          <volume>04805</volume>
          (
          <year>2018</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>Q.</given-names>
            <surname>Kong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Cao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Iqbal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. D.</given-names>
            <surname>Plumbley</surname>
          </string-name>
          , Panns:
          <article-title>Large-scale pretrained audio neural networks for audio pattern recognition</article-title>
          ,
          <source>IEEE/ACM Transactions on Audio, Speech, and Language Processing</source>
          <volume>28</volume>
          (
          <year>2020</year>
          )
          <fpage>2880</fpage>
          -
          <lpage>2894</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>J. F.</given-names>
            <surname>Gemmeke</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. P.</given-names>
            <surname>Ellis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Freedman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Jansen</surname>
          </string-name>
          , W. Lawrence,
          <string-name>
            <given-names>R. C.</given-names>
            <surname>Moore</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Plakal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Ritter</surname>
          </string-name>
          ,
          <article-title>Audio set: An ontology and human-labeled dataset for audio events</article-title>
          ,
          <source>in: 2017 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)</source>
          , IEEE,
          <year>2017</year>
          , pp.
          <fpage>776</fpage>
          -
          <lpage>780</lpage>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>