<?xml version="1.0" encoding="UTF-8"?>
<TEI xml:space="preserve" xmlns="http://www.tei-c.org/ns/1.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://www.tei-c.org/ns/1.0 https://raw.githubusercontent.com/kermitt2/grobid/master/grobid-home/schemas/xsd/Grobid.xsd"
 xmlns:xlink="http://www.w3.org/1999/xlink">
	<teiHeader xml:lang="es">
		<fileDesc>
			<titleStmt>
				<title level="a" type="main">Atalaya at TASS 2018: Sentiment Analysis with Tweet Embeddings and Data Augmentation Atalaya en TASS 2018: Análisis de Sentimiento con Embeddings de Tweets y Aumentación de Datos</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author>
							<persName><forename type="first">Franco</forename><forename type="middle">M</forename><surname>Luque</surname></persName>
							<email>francolq@famaf.unc.edu.ar</email>
							<affiliation key="aff0">
								<orgName type="institution">Universidad Nacional de Córdoba &amp; CONICET</orgName>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Juan</forename><forename type="middle">Manuel</forename><surname>Pérez</surname></persName>
							<email>jmperez@dc.uba.ar</email>
							<affiliation key="aff1">
								<orgName type="institution">Universidad de Buenos Aires &amp; CONICET</orgName>
							</affiliation>
						</author>
						<author>
							<affiliation key="aff2">
								<orgName type="department">Clasificación de Polaridad, Embeddings</orgName>
								<orgName type="laboratory">Análisis de Sentimiento</orgName>
							</affiliation>
						</author>
						<author>
							<affiliation key="aff3">
								<orgName type="department" key="dep1">Aumentación de Datos</orgName>
								<orgName type="department" key="dep2">Modelos Lineales</orgName>
								<address>
									<addrLine>Redes Neuronales</addrLine>
								</address>
							</affiliation>
						</author>
						<title level="a" type="main">Atalaya at TASS 2018: Sentiment Analysis with Tweet Embeddings and Data Augmentation Atalaya en TASS 2018: Análisis de Sentimiento con Embeddings de Tweets y Aumentación de Datos</title>
					</analytic>
					<monogr>
						<idno type="ISSN">1613-0073</idno>
					</monogr>
					<idno type="MD5">6631CFAFD8027061F0AED79472C9D668</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2023-03-25T01:28+0000">
					<desc>GROBID - A machine learning software for extracting information from scholarly documents</desc>
					<ref target="https://github.com/kermitt2/grobid"/>
				</application>
			</appInfo>
		</encodingDesc>
		<profileDesc>
			<textClass>
				<keywords>
					<term>Sentiment Analysis</term>
					<term>Polarity Classification</term>
					<term>Embeddings</term>
					<term>Data Augmentation</term>
					<term>Linear Models</term>
					<term>Neural Networks</term>
				</keywords>
			</textClass>
			<abstract>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>El workshop TASS 2018 propone diferentes desafíos de análisis semántico del Español. Este trabajo presenta nuestra participación con el equipo Atalaya en la tarea de clasificación de polaridad de tweets. Seguimos técnicas estándar de preprocesamiento, representación y clasificación, y también exploramos algunas ideas novedosas. En particular, para obtener embeddings de tweets entrenamos word embeddings con información de subpalabras, y usamos un esquema de pesaje para promediarlos. Para lidiar con problemas de sobreajuste causados por la escasez de datos de entrenamiento, probamos una estrategia de aumentación de datos basada en traducción automática bidireccional. Experimentos con clasificadores lineales y modelos neuronales muestran resultados competitivos para las diferentes subtareas propuestas en el desafío.</p></div>
			</abstract>
		</profileDesc>
	</teiHeader>
	<text xml:lang="es">
		<body>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="1">Introduction</head><p>The TASS workshop presents every year different challenges related to sentiment analysis in Spanish. One of the main tasks is polarity classification of tweets and tweet aspects. In particular, task 1 of TASS 2018 <ref type="bibr" target="#b10">(Martínez-Cámara et al., 2018)</ref> proposes polarity classification on tweet datasets from three different Spanish speaking countries: Spain (ES), Costa Rica (CR) and Perú (PE). This article describes our participation in TASS 2018 task 1 with team Atalaya. We present polarity classification systems using standard techniques and propose improvements based on an iterative experimental development process. We tried different approaches for tweet preprocessing, vector representation and polarity classification models. Standard preprocessing techniques, including text simplification, stopword filtering, lemmatization and negation handling were used. Tweets were represented with bag-of-words, bag-ofcharacters, tweet embeddings and combinations of these. As classification models, we considered linear classifiers and neural networks.</p><p>We used fastText subword-aware word vectors using tweet datasets specifically pre-pared for the task. Tweet vectors were computed from word vectors using a weighted averaging scheme, with weights inversely proportional to word frequency.</p><p>To cope with scarcity of training data, we experimented with a data augmentation trick based on translation of training data to other languages and back to Spanish.</p><p>Embedding weighting and data augmentation represent novel approaches in the context of TASS. In experiments, both ideas showed improvements in prediction quality for some configurations.</p><p>The rest of the paper is as follows: Next section describes the main techniques and resources we tried; section 3 presents the experimental development of the systems, describing explored configurations and final models selection; and section 4 summarizes our final results for the competition, and addresses conclusions and future work.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2">Techniques and Resources</head><p>This section describes the main techniques and resources we used to define the basic components to build our systems.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.1">Preprocessing</head><p>Preprocessing is crucial in NLP applications, specially when working with noisy user-generated data.</p><p>We divided preprocessing into a two-stage process: First, we defined basic tweet preprocessing, using well-known standard and general purpose techniques; then, we defined sentiment-oriented preprocessing, using techniques that try to emphasize semantic information.</p><p>Basic tweet preprocessing includes:</p><p>• Tokenization using NLTK tweet tokenizer <ref type="bibr" target="#b2">(Bird and Loper, 2004)</ref>.</p><p>• Replacement of handles with token '@USER', URLs with 'URL', and e-mails with 'user@mail.com'.</p><p>• Replacement of four or more repeated letters with three letters.</p><p>Sentiment-oriented preprocessing includes the following additional steps:</p><p>• Lowercasing.</p><p>• Removal of stopwords, using NLTK Spanish stopword list.</p><p>• Removal of numbers.</p><p>• Lemmatization using TreeTagger <ref type="bibr" target="#b15">(Schmid, 1995)</ref>.</p><p>• Simple negation handling: We find negation words and add the prefix 'NOT ' to the following tokens. Up to three tokens are negated, or less if a non-word token is found. <ref type="bibr" target="#b5">(Das et al., 2001;</ref><ref type="bibr" target="#b13">Pang, Lee, and Vaithyanathan, 2002)</ref> • Removal of punctuation.</p><p>• Removal of consecutive repetitions of handles and URLs.</p><p>No treatment was performed to hashtags, emojis, interjections and onomatopeias. Moreover, no spelling correction nor any other additional normalization was applied.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.2">Bags of Words and Characters</head><p>The simplest approach we considered to build tweet representations was the bag-of-words encoding. A bag-of-words (BOW) builds feature vectors for each token seen in training data. For a particular tweet, its BOW vector contains the number of ocurrences of each token in the tweet. Resulting vectors are high-dimensional and sparse. Variations of BOWs include counting not only single tokens but also n-grams of tokens, binarizing counts, and limiting the number of features.</p><p>Character usage in tweets may also hold useful information for sentiment analysis. Character n-grams -such as presence and repetition of uppercase letters, emoticons and exclamation marks-may indicate strong presence of sentiment of some kind, where others may indicate a more formal writing style, and therefore an absence of sentiment.</p><p>To capture this information, we considered a bag-of-characters (BOC) representation that encodes counts of character n-grams for some values of n. These vectors are computed from original texts of tweets, with no preprocessing at all. BOCs have the same variants and parameters as BOWs.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.3">Word Embeddings</head><p>Word embeddings are low-dimensional dense vector representations of words <ref type="bibr" target="#b12">(Mikolov et al., 2013)</ref>. These representations encode syntactical and semantical relations of words, useful for NLP tasks, and they can be learned in an unsupervised fashion using large quantities of plain text, providing high vocabulary coverage. When precomputed embeddings are used as features in supervised tasks, they provide robust information for words that are rare or unseen in training data. This is particularly useful when training data is scarce, as in this competition.</p><p>Recent work on embeddings introduced the usage of subword information to compute word vectors. Informative representations for out-of-vocabulary (OOV) words can be obtained from subword embeddings. OOV words are an important issue when working with highly noisy data such as user generated data in social networks. Here, the need for text normalization in preprocessing can be alleviated with subword-based embeddings.</p><p>In our work, we used fastText subwordbased embeddings library <ref type="bibr" target="#b3">(Bojanowski et al., 2016)</ref>. Instead of using pretrained vectors, we decided to train our own embeddings on Twitter data.</p><p>To address the multilingual character of the challenge, we first collected a database of ∼90 million tweets from various Spanishspeaking countries, including the ones concerning the challenge. Then, we prepared two versions of the data, one using only basic preprocessing, and the other one using sentiment oriented preprocessing (only excepting lemmatization). For these two datasets, we trained skipgram embeddings using different parameter configurations, including the number of dimensions, size of word and subword n-grams and size of context window.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.4">Tweet Embeddings</head><p>There are a number of ways of using word embeddings for sentiment analysis on tweets: approaches go from simple averaging of vectors for each word in the tweet, to the use of more complex architectures such as CNNs or RNNs. In this work, we used averaging to compute a single tweet embedding of same dimensionality as the original word embeddings. We followed two simple approaches: plain averaging and weighted averaging. For weighted averaging, we used a scheme that resembles Smooth Inverse Frequency (SIF) <ref type="bibr" target="#b0">Arora, Liang, and Ma (2017)</ref>, inspired by TF-IDF reweighting. Each word w is weighted with a a+p(w) , where p(w) is the word unigram probability, and a is a smoothing hyper-parameter. Big values of a means more smoothing towards plain averaging.</p><p>We also considered two options that affect tweet embeddings: binarization, which ignores token repetitions in tweets; and normalization, which scales resulting tweet vectors to have unit norm.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.5">Data Augmentation</head><p>As the amount of training instances was small, we paid special attention to model regularization. A technique used to address this is data augmentation, which consists of creating new synthetic instances out of real ones by applying label-preserving transformations. This overfitting-reduction strategy is widely used in Computer Vision <ref type="bibr" target="#b9">(Krizhevsky, Sutskever, and Hinton, 2012;</ref><ref type="bibr" target="#b16">Simard, Steinkraus, and Platt, 2003)</ref> and Speech Recognition <ref type="bibr" target="#b7">(Jaitly and Hinton, 2013;</ref><ref type="bibr" target="#b8">Ko et al., 2015)</ref>. For instance, images can be zoomed, cropped, rotated, etc., while keeping the objects in it still recognizable.</p><p>Data augmentation in NLP is a more subtle problem: there are no straightforward invariant-transformations such as in Computer Vision. A common technique <ref type="bibr" target="#b17">(Zhang, Zhao, and LeCun, 2015)</ref> is to replace words with synonyms using a thesaurus.</p><p>In this work we adopted a novel technique successfully used in a recent Kaggle NLP competition. <ref type="foot" target="#foot_0">1</ref> The technique consists of translating the texts to a different language, and then translating them back to the original one. This process results in tweets that vary lexically and syntactically, while mostly keeping its meaning.</p><p>The tool selected to do this work was Google Translate, and the languages used as intermediates were English, French, Portuguese and Arabic. We discarded other options (e.g. Mandarin Chinese) as they greatly altered the meaning of tweets. </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3">Systems Development</head><p>This section describes the polarity classification systems we developed using the tools introduced in the previous section.</p><p>We worked on two type of classifiers: linear classifiers and neural networks. In both cases, we tried to do some kind of model selection, at times using development as the optimization target, and at other times using cross-validation on the combination of train and development.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Original Tweet</head><p>Data-augmented tweets Gracias por la información. Parece que el olor ha cesado. Ayer pasó lo mismo sobre la misma hora -Gracias por la información. Parece que el olor se ha detenido. Ayer sucedió lo mismo al mismo tiempo -Gracias por la información. Parece que el olor se ha detenido. Ayer, lo mismo ocurrió al mismo tiempo Muy buenas amigos! Como podemos contactar con ustedes -¡Muy buenos amigos! ¿Cómo podemos ponernos en contacto con usted? -Muy buenos amigos! ¿Cómo podemos contactarlo? La verdad es que tiene buena pinta. Investigaré, gracias -La verdad es que parece bueno. Voy a investigar, gracias -La verdad es que se ve bien. Voy a investigar, gracias -El hecho es que se ven bien. Lo comprobaré, gracias Next subsections describe the experimental development and the best configurations we found for both types of system</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.1">Linear Classifiers</head><p>We first built a classifying pipeline using simple linear classifying models -such as logistic regressions and SVMs-that were implemented with scikit-learn <ref type="bibr" target="#b14">(Pedregosa et al., 2011)</ref>. Next, we describe the model selection process, done almost entirely using the InterTASS ES corpus.</p><p>As input features, we combined the three representations described in the previous section: bag-of-words, bag-of-characters and tweet embeddings.</p><p>For the bag of words and characters, early experiments showed a clear advantage of binary values over counts, together with TF-IDF re-weighting. First choices for n-gram ranges were (1, 2) for words and (1, 3) for characters.</p><p>For the embeddings, sentiment-oriented word vectors showed an advantage over basic vectors. We tried embeddings of dimensions 50, 100, 200 and 300. Best results were found with 50 dimensions, and there were no statistically significant differences.</p><p>To compute tweet embeddings, we tried basic averaging (as provided by fastText) and the weighted averaging scheme described in section 2.4. We experimented with smoothing values a = 10 n for n ∈ {−3, . . . , 3} resulting in a significant advantage of using a = 0.1. Here, binarization and normalization as described in section 2.4 showed better results.</p><p>For the classifier, we tried logistic regressions (LRs) and linear-kernel SVMs. To alleviate the class imbalance problem, training items were weighted according to the inverse of the class frequency. Both LR and linear SVM hyper-parameters were selected targeting the optimization of accuracy and</p><formula xml:id="formula_0">Model BOW BOC M-F1 Acc. LR (1, 2) (1, 3) 0.496 0.634 LR+DA (1, 2) (1, 3) 0.490 0.615 LR (1, 5) (1, 6) 0.493 0.634 LR+DA (1, 5) (1, 6) 0.529 0.648</formula><p>Table <ref type="table">2</ref>: Experiments with logistic regressions (LR), showing the interaction of training data augmentation (DA) with n-gram size ranges for bags of words and characters <ref type="bibr">(BOW and BOC, resp.)</ref>. Results are on In-terTASS ES development set.</p><p>Macro-F1 over InterTASS ES development set. In particular, the best regularization parameters found were C = 1.0 for LRs, and C = 0.05 for SVMs. Logistic regressions were selected over SVMs as they performed consistently better in all experiments.</p><p>When adding augmented data, first results showed a significant degradation in accuracy. However, an exploration of parameter values showed that it allowed an improvement in performance when increasing the range of n-gram sizes considered for BOWs and BOCs. Best results were found with up to 5-grams for words, and up to 6-grams for characters. Tab. 2 shows how data augmentation combined with bigger n-gram ranges improved results.</p><p>Most previous parameter selection was reviewed after data augmentation, confirming selected values. We also tried adding training data from General TASS corpus, to find that this was harmful for our models. With the optimal models found in this process we submitted final results for the Spanish (ES) monolingual task.</p><p>For Costa Rica (CR) and Perú (PE) monolingual tasks, same values than for ES were used for most parameters. Only weighted averaging, data augmentation and n-gram ranges were explored. In CR data, weighting improved results, with the peak at  a = 0.5. Data augmentation also was good, with the best results using up to 4-grams for words and 6-grams for characters. In PE data, neither weighting nor data augmentation were helpful. Best results were found using up to 2-gram for words and 5-grams for characters.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.2">Multilayer Perceptron</head><p>In the second set of experiments we used multilayer perceptrons (MLP) neural networks. MLPs performed well in previous editions of the challenge <ref type="bibr" target="#b6">(Díaz-Galiano et al., 2018)</ref>.</p><p>Fig. <ref type="figure" target="#fig_1">1</ref> displays the chosen architecture, consisting of two hidden layers and a softmax output. ReLU units were used as activation functions in the hidden layers. To avoid overfitting, we tried dropout <ref type="bibr">(Srivastava et al., 2014)</ref> and early stopping.</p><p>To find the best configurations, we performed random search <ref type="bibr" target="#b1">(Bergstra and Bengio, 2012)</ref> using 5-fold cross-validation over the InterTASS ES training and development datasets. The explored configurations and hyperparameters were:</p><p>• BOW features: No BOW features at all, top-50 or top-150.</p><p>• Tweet embeddings: Basic or weighted averaging.</p><p>• Hidden layers: Different number of neu- Results of this search showed that bag-ofwords features and embedding weighting did not improve performance. Regarding the MLP architecture, we selected 256 as the size of the first layer and 128 for the second, and keep-probabilities of 0.25 and 0.55 respectively. This configuration was used in all subtasks. Data augmentation in combination with MLPs showed mixed results. For the monolingual ES subtask, using synthetic data resulted in a Macro-F1 gain while for monolingual PE it degraded the results.</p><p>All monolingual models were trained using the respective train sections of InterTASS datasets. General TASS was not used as it not showed improvements. For cross-lingual tasks, models for each language were trained using the datasets for the two other languages.</p><p>We used Keras <ref type="bibr">(Chollet and others, 2015</ref>) to implement the model and scikit-learn <ref type="bibr" target="#b14">(Pedregosa et al., 2011)</ref> to perform the crossvalidation.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4">Conclusions and Future Work</head><p>We presented our participation on TASS 2018 task 1 as team Atalaya. We explored standard approaches as well as some simple but original recent ideas such as data augmentation and word embedding weighting. Table <ref type="table" target="#tab_2">3</ref> displays results for each subtask. Our systems ranked among the first three in all the subtasks.</p><p>Experiments show that competitive results can be achieved without having to resort to complex neural architectures such as CNNs, RNNs, LSTMs, etc. Even simple lo-gistic regressions were able to rank among the top performing systems.</p><p>Future work includes further exploration on data augmentation, tweet embedding techniques, and sentiment-oriented word embeddings. We also aim at improving preprocessing and adopting modern neural classifying models.</p></div><figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_1"><head>Figure 1 :</head><label>1</label><figDesc>Figure 1: Architecture of the MLP.</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_0"><head>Table 1</head><label>1</label><figDesc></figDesc><table><row><cell>dis-</cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_1"><head>Table 1 :</head><label>1</label><figDesc>Data augmentation examples. Left column shows original tweets, right column shows results of two-way translations for several intermediate languages.</figDesc><table /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_2"><head>Table 3 :</head><label>3</label><figDesc>Submitted results for each subtask.rons and keep-probabilities 2 .</figDesc><table><row><cell>Task</cell><cell cols="2">Model M-F1 Acc.</cell></row><row><cell>Mono ES</cell><cell>MLP LR</cell><cell>0.476 0.544 0.468 0.599</cell></row><row><cell>Mono CR</cell><cell>MLP LR</cell><cell>0.451 0.562 0.475 0.582</cell></row><row><cell>Mono PE</cell><cell>MLP LR</cell><cell>0.437 0.520 0.462 0.451</cell></row><row><cell>Cross Lingual ES</cell><cell></cell><cell>0.441 0.485</cell></row><row><cell>Cross Lingual PE</cell><cell>MLP</cell><cell>0.438 0.523</cell></row><row><cell>Cross Lingual CR</cell><cell></cell><cell>0.453 0.565</cell></row></table></figure>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="1" xml:id="foot_0">https://www.kaggle.com/c/jigsaw-toxiccomment-classification-challenge/discussion/52557</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="2" xml:id="foot_1">Probability of keeping the value of a neuron when training with dropout.</note>
		</body>
		<back>
			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<monogr>
		<title level="m" type="main">A simple but tough-to-beat baseline for sentence embeddings</title>
		<author>
			<persName><forename type="first">S</forename><surname>Arora</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Liang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">T</forename><surname>Ma</surname></persName>
		</author>
		<imprint>
			<date type="published" when="2017">2017</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b1">
	<analytic>
		<title level="a" type="main">Random search for hyper-parameter optimization</title>
		<author>
			<persName><forename type="first">J</forename><surname>Bergstra</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Bengio</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Journal of Machine Learning Research</title>
		<imprint>
			<biblScope unit="volume">13</biblScope>
			<biblScope unit="page" from="281" to="305" />
			<date type="published" when="2012-02">2012. Feb</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b2">
	<analytic>
		<title level="a" type="main">Nltk: the natural language toolkit</title>
		<author>
			<persName><forename type="first">S</forename><surname>Bird</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><surname>Loper</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the ACL 2004 on Interactive poster and demonstration sessions</title>
				<meeting>the ACL 2004 on Interactive poster and demonstration sessions</meeting>
		<imprint>
			<publisher>Association for Computational Linguistics</publisher>
			<date type="published" when="2004">2004</date>
			<biblScope unit="page">31</biblScope>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b3">
	<monogr>
		<author>
			<persName><forename type="first">P</forename><surname>Bojanowski</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><surname>Grave</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Joulin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">T</forename><surname>Mikolov</surname></persName>
		</author>
		<idno type="arXiv">arXiv:1607.04606</idno>
		<title level="m">Enriching word vectors with subword information</title>
				<imprint>
			<date type="published" when="2016">2016</date>
		</imprint>
	</monogr>
	<note type="report_type">arXiv preprint</note>
</biblStruct>

<biblStruct xml:id="b4">
	<monogr>
		<title/>
		<author>
			<persName><forename type="first">F</forename><surname>Chollet</surname></persName>
		</author>
		<imprint>
			<date type="published" when="2015">2015</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b5">
	<analytic>
		<title level="a" type="main">Yahoo! for amazon: Sentiment extraction from small talk on the web</title>
		<author>
			<persName><forename type="first">S</forename><forename type="middle">R</forename><surname>Das</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><forename type="middle">Y</forename><surname>Chen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">T</forename><forename type="middle">V</forename><surname>Agarwal</surname></persName>
		</author>
		<author>
			<persName><forename type="first">C</forename><surname>Brooks</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Chan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><surname>Gibson</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><surname>Leinweber</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Martinez-Jerez</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Raghubir</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Rajagopalan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Ranade</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Rubinstein</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Tufano</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">8th Asia Pacific Finance Association Annual Conference</title>
				<imprint>
			<date type="published" when="2001">2001</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b6">
	<analytic>
		<title level="a" type="main">The democratization of deep learning in tass 2017</title>
		<author>
			<persName><forename type="first">M</forename><forename type="middle">C</forename><surname>Díaz-Galiano</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><surname>Martínez-Cámara</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Ángel García Cumbreras</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><forename type="middle">G</forename><surname>Vega</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><forename type="middle">V</forename><surname>Román</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Procesamiento del Lenguaje Natural</title>
		<imprint>
			<biblScope unit="volume">60</biblScope>
			<biblScope unit="issue">0</biblScope>
			<biblScope unit="page" from="37" to="44" />
			<date type="published" when="2018">2018</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b7">
	<analytic>
		<title level="a" type="main">Vocal tract length perturbation (vtlp) improves speech recognition</title>
		<author>
			<persName><forename type="first">N</forename><surname>Jaitly</surname></persName>
		</author>
		<author>
			<persName><forename type="first">G</forename><forename type="middle">E</forename><surname>Hinton</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proc. ICML Workshop on Deep Learning for Audio, Speech and Language</title>
				<meeting>ICML Workshop on Deep Learning for Audio, Speech and Language</meeting>
		<imprint>
			<date type="published" when="2013">2013</date>
			<biblScope unit="volume">117</biblScope>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b8">
	<analytic>
		<title level="a" type="main">Audio augmentation for speech recognition</title>
		<author>
			<persName><forename type="first">T</forename><surname>Ko</surname></persName>
		</author>
		<author>
			<persName><forename type="first">V</forename><surname>Peddinti</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><surname>Povey</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Khudanpur</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Sixteenth Annual Conference of the International Speech Communication Association</title>
				<imprint>
			<date type="published" when="2015">2015</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b9">
	<analytic>
		<title level="a" type="main">Imagenet classification with deep convolutional neural networks</title>
		<author>
			<persName><forename type="first">A</forename><surname>Krizhevsky</surname></persName>
		</author>
		<author>
			<persName><forename type="first">I</forename><surname>Sutskever</surname></persName>
		</author>
		<author>
			<persName><forename type="first">G</forename><forename type="middle">E</forename><surname>Hinton</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Advances in neural information processing systems</title>
				<imprint>
			<date type="published" when="2012">2012</date>
			<biblScope unit="page" from="1097" to="1105" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b10">
	<monogr>
		<title level="m" type="main">Overview of TASS 2018: Opinions, health and emotions</title>
		<author>
			<persName><forename type="first">E</forename><surname>Martínez-Cámara</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><forename type="middle">Almeida</forename><surname>Cruz</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><forename type="middle">C</forename><surname>Díaz-Galiano</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><forename type="middle">Estévez</forename><surname>Velarde</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><forename type="middle">A</forename><surname>García-Cumbreras</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>García-Vega</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Gutiérrez</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Vázquez</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Montejo Ráez</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Montoyo Guijarro</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><forename type="middle">Piad</forename><surname>Muñoz Guillena</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Morffis</surname></persName>
		</author>
		<author>
			<persName><surname>Villena-Román</surname></persName>
		</author>
		<editor>E. Martínez-Cámara, Y. Almeida Cruz, M. C. Díaz-Galiano, S. Estévez Velarde, M. A. García-Cumbreras, M. García-Vega</editor>
		<imprint>
			<date type="published" when="2018">2018</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b11">
	<analytic>
		<author>
			<persName><forename type="first">Y</forename><forename type="middle">Gutiérrez</forename><surname>Vázquez</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Montejo Ráez</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Montoyo Guijarro</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Muñoz Guillena</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of TASS 2018: Workshop on Semantic Analysis at SEPLN (TASS 2018)</title>
		<title level="s">CEUR Workshop Proceedings</title>
		<editor>
			<persName><forename type="first">Piad</forename><surname>Morffis</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">J</forename><surname>Villena-Román</surname></persName>
		</editor>
		<meeting>TASS 2018: Workshop on Semantic Analysis at SEPLN (TASS 2018)<address><addrLine>Sevilla, Spain</addrLine></address></meeting>
		<imprint>
			<publisher>CEUR-WS</publisher>
			<date>September</date>
			<biblScope unit="volume">2172</biblScope>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b12">
	<monogr>
		<title level="m" type="main">Distributed representations of words and phrases and their compositionality</title>
		<author>
			<persName><forename type="first">T</forename><surname>Mikolov</surname></persName>
		</author>
		<author>
			<persName><forename type="first">I</forename><surname>Sutskever</surname></persName>
		</author>
		<author>
			<persName><forename type="first">K</forename><surname>Chen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">G</forename><surname>Corrado</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Dean</surname></persName>
		</author>
		<idno>CoRR, abs/1310.4546</idno>
		<imprint>
			<date type="published" when="2013">2013</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b13">
	<analytic>
		<title level="a" type="main">Thumbs up? sentiment classification using machine learning techniques</title>
		<author>
			<persName><forename type="first">B</forename><surname>Pang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Lee</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Vaithyanathan</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 2002 Conference on Empirical Methods in Natural Language Processing</title>
				<meeting>the 2002 Conference on Empirical Methods in Natural Language Processing</meeting>
		<imprint>
			<publisher>Association for Computational Linguistics</publisher>
			<date type="published" when="2002-07">2002. July</date>
			<biblScope unit="page" from="79" to="86" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b14">
	<analytic>
		<title level="a" type="main">Scikit-learn: Machine learning in Python</title>
		<author>
			<persName><forename type="first">F</forename><surname>Pedregosa</surname></persName>
		</author>
		<author>
			<persName><forename type="first">G</forename><surname>Varoquaux</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Gramfort</surname></persName>
		</author>
		<author>
			<persName><forename type="first">V</forename><surname>Michel</surname></persName>
		</author>
		<author>
			<persName><forename type="first">B</forename><surname>Thirion</surname></persName>
		</author>
		<author>
			<persName><forename type="first">O</forename><surname>Grisel</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Blondel</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Prettenhofer</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Weiss</surname></persName>
		</author>
		<author>
			<persName><forename type="first">V</forename><surname>Dubourg</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Vanderplas</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Passos</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><surname>Cournapeau</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Brucher</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Perrot</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><surname>Duchesnay</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Journal of Machine Learning Research</title>
		<imprint>
			<biblScope unit="volume">12</biblScope>
			<biblScope unit="page" from="2825" to="2830" />
			<date type="published" when="2011">2011</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b15">
	<analytic>
		<title level="a" type="main">Improvements in partof-speech tagging with an application to german</title>
		<author>
			<persName><forename type="first">H</forename><surname>Schmid</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the ACL SIGDAT-Workshop</title>
				<meeting>the ACL SIGDAT-Workshop</meeting>
		<imprint>
			<date type="published" when="1995">1995</date>
			<biblScope unit="page" from="47" to="50" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b16">
	<analytic>
		<title level="a" type="main">Best practices for convolutional Franco M. Luque y Juan Manuel Pérez neural networks applied to visual document analysis</title>
		<author>
			<persName><forename type="first">P</forename><forename type="middle">Y</forename><surname>Simard</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><surname>Steinkraus</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><forename type="middle">C</forename><surname>Platt</surname></persName>
		</author>
		<author>
			<persName><forename type="first">;</forename><surname>Ieee</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">The Journal of Machine Learning Research</title>
		<imprint>
			<biblScope unit="volume">15</biblScope>
			<biblScope unit="issue">1</biblScope>
			<biblScope unit="page" from="1929" to="1958" />
			<date type="published" when="2003">2003. 2014</date>
		</imprint>
	</monogr>
	<note>Dropout: a simple way to prevent neural networks from overfitting</note>
</biblStruct>

<biblStruct xml:id="b17">
	<analytic>
		<title level="a" type="main">Character-level convolutional networks for text classification</title>
		<author>
			<persName><forename type="first">X</forename><surname>Zhang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Zhao</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Lecun</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Advances in Neural Information Processing Systems 28</title>
				<editor>
			<persName><forename type="first">C</forename><surname>Cortes</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">N</forename><forename type="middle">D</forename><surname>Lawrence</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">D</forename><forename type="middle">D</forename><surname>Lee</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">M</forename><surname>Sugiyama</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">R</forename><surname>Garnett</surname></persName>
		</editor>
		<imprint>
			<publisher>Curran Associates, Inc</publisher>
			<date type="published" when="2015">2015</date>
			<biblScope unit="page" from="649" to="657" />
		</imprint>
	</monogr>
</biblStruct>

				</listBibl>
			</div>
		</back>
	</text>
</TEI>
