<?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="en">
		<fileDesc>
			<titleStmt>
				<title level="a" type="main">UACh at MEX-A3T 2019: Preliminary Results on Detecting Aggressive Tweets by Adding Author Information Via an Unsupervised Strategy</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author>
							<persName><forename type="first">Marco</forename><surname>Casavantes</surname></persName>
							<affiliation key="aff0">
								<orgName type="institution">Universidad Autónoma de Chihuahua. Facultad de Ingeniería. Chihuahua</orgName>
								<address>
									<settlement>Chih</settlement>
									<country key="MX">México</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Roberto</forename><surname>López</surname></persName>
							<affiliation key="aff0">
								<orgName type="institution">Universidad Autónoma de Chihuahua. Facultad de Ingeniería. Chihuahua</orgName>
								<address>
									<settlement>Chih</settlement>
									<country key="MX">México</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Luis</forename><surname>Carlos González</surname></persName>
							<affiliation key="aff0">
								<orgName type="institution">Universidad Autónoma de Chihuahua. Facultad de Ingeniería. Chihuahua</orgName>
								<address>
									<settlement>Chih</settlement>
									<country key="MX">México</country>
								</address>
							</affiliation>
						</author>
						<title level="a" type="main">UACh at MEX-A3T 2019: Preliminary Results on Detecting Aggressive Tweets by Adding Author Information Via an Unsupervised Strategy</title>
					</analytic>
					<monogr>
						<imprint>
							<date/>
						</imprint>
					</monogr>
					<idno type="MD5">4CBB796A6132C12574F83D04FA171C28</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2023-03-24T16:57+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>Spanish text classification</term>
					<term>Aggressiveness Detection</term>
					<term>Multilayer Perceptron</term>
				</keywords>
			</textClass>
			<abstract>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>In this paper we describe our participation for the Aggressiveness Detection Track in the second edition of MEX-A3T. We evaluate different strategies for text classification, including classifiers such as Support Vector Machines and a Multilayer Perceptron trained on n-grams (words and characters) and word embeddings. We also study the inclusion of features to try to give context to the text messages and explore if people verbally attack differently depending on their traits and overall environment. Preliminary results show that our strategy is competitive to detect aggression in tweets, ranking in 2nd place with respect to the participants of 2018 and 2019.</p></div>
			</abstract>
		</profileDesc>
	</teiHeader>
	<text xml:lang="en">
		<body>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="1">Introduction</head><p>Technology has changed the way in which people communicate with each other, giving rise to new services such as social networks, where a style of informal communication is used. Such social networks, though, present several challenges to maintain communication channels open to the free sharing of ideas. The intolerance and aggressiveness of certain users affects the experience of other consumers or people interested in being part of the communities and their conversations. The fact of not being face to face in the communication channel and even preserve anonymity, encourages these individuals to express themselves offensively. However, the volume of messages that are sent daily, the growth of online communities, and the respective ease of access to these social networks, make the moderation of communication channels a difficult task to be dealt with by conventional means, and as people increasingly communicate online, the need for high quality automated abusive language classifiers becomes much more profound <ref type="bibr" target="#b0">[1]</ref>.</p><p>One of the goals of the second edition of MEX-A3T <ref type="bibr" target="#b1">[2]</ref> is to tackle this problem and further improve the research of this important NLP task, the detection of aggressive tweets in Mexican Spanish. In this work we evaluate strategies proposed before, such as the use of lexical features through TF-IDF representations, and different approaches to add features in order to try to give context to each text. Surprisingly, even tackling the task with such a basic approach our proposal is able to offer competitive results, just slightly behind the top performer of this competition in 2018 and 2019, INGEOTEC. Furthermore, we also investigate how to incorporate author's traits by using unsupervised methods and attempting to include this information as possible features, based on the hypothesis that there are different ways of aggression depending on the author's context.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2">Proposed Method</head></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.1">Data Pre-processing</head><p>After loading the train and test sets, we strip the tweets from non-alphanumeric characters and only keep some relevant Spanish characters (á,é,í,ó,ú,ñ,and ü), all words are then made lowercase and subsequently we noticed that in both sets there exists many different terms to express laughter (mainly due to how many times "ja" is repeated when the word "jaja" appears and because of typos) so that led us to replace every word containing "jaja" to "risa" (laugh), with the purpose of decreasing the number of terms that represent this emotion. It is worth mentioning that we also created and conducted experiments on a version of the datasets where emojis were converted to text and hashtags were separated by words (e.g., ":)" would turn into "smiling face", and "#FelizMiércoles" would be "feliz miércoles"), however most hashtags were wrongly separated and the performance of the classifiers decreased by incorporating these steps and were therefore discarded.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.2">Features</head><p>We conducted our research using the following features: Lexical: We use word n-grams (n=1, 2) and char n-grams (n=3, 4) as features, this collection of terms is weighted with its term frequency-inverse document frequency (TF-IDF). Document Embeddings: The objective was to represent the tweets through Word Embeddings <ref type="bibr" target="#b2">[3]</ref> and try different classifiers with these new features, each text message was converted to a vector of size = 300 (mean of the vectors of each word). The model of words in Spanish was computed with fastText <ref type="bibr" target="#b3">[4]</ref> and downloaded from <ref type="bibr" target="#b4">[5]</ref> . User Occupation and Location predictions: Although we attempted several strategies to obtain unsupervised author profiles for each document <ref type="bibr" target="#b5">[6]</ref>, we ended up using the output of the system developed by <ref type="bibr" target="#b6">[7]</ref> as predictions of occupation and location values to explore the possibility of differences in vocabulary that exists according to the profile of the author of the message. Grouping tweets by theme: An implementation of Self Organizing Maps (SOM) as a clustering strategy called MiniSom <ref type="bibr" target="#b7">[8]</ref> was used with aims to find groups in the collection of texts based on underlying or non-explicit features, the clustering was done including all words and also ignoring swear words (to reduce the noise and focus on thematic terms), after training the network we were able to compute the coordinates assigned to a tweet on the map and use these as new features. Perspicuity score / Inflesz scale: Based on <ref type="bibr" target="#b8">[9]</ref>, we adapted the idea of capturing the quality of each tweet by using a modified Flesch Reading Ease score (since this test only applies to text written in English), called Perspicuity score and its equivalence to the Inflesz scale, following the equation described in <ref type="bibr" target="#b9">[10]</ref> where the number of sentences is also fixed at one.</p><p>All the extra categorical features mentioned above were concatenated following a One Hot Encoding scheme.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3">Experiments and Results</head><p>The datasets were provided by MEX-A3T Team. Table <ref type="table" target="#tab_0">1</ref> shows the distribution of training and test partitions for Spanish tweets. We separated the training set in 67% for training and 33% for validation to evaluate our experiments with different combinations of features discussed in section 2.2. We started our research by recreating the baselines described in the overview of the first edition of MEX-A3T <ref type="bibr" target="#b10">[11]</ref>, particularly focusing on the character trigrams baseline, as it holds the best performance in comparison to the BoW baseline. We trained Linear Support Vector Machines and a Multilayer Perceptron as classifiers for this task, and we decided to use the perceptron as the final system to submit our predictions since it exhibited the best results in the validation stage, as shown in Table <ref type="table" target="#tab_1">2</ref> where we obtained the F1-score macro and the F-Measure over the aggressive class. We performed all modeling regarding the creation of tf-idf feature matrices and SVM classifiers using scikit-learn <ref type="bibr" target="#b11">[12]</ref>, and for the Multilayer Perceptron, we used the implementation described in <ref type="bibr" target="#b12">[13]</ref>,</p><p>there was only an instance were this Perceptron couldn't be trained with Word Embeddings, so we tried another configuration on the MLPClassifier from scikitlearn getting low scores similar to the ones obtained using LinearSVM, and therefore casting aside this approach.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.1">Results</head><p>As stated before, the Multilayer Perceptron was chosen as final system, however, because of time and memory constraints we had to train this model using only character n-grams of range <ref type="bibr" target="#b2">[3,</ref><ref type="bibr" target="#b3">4]</ref> for this task even though later results shows better performance by using n-grams of range <ref type="bibr" target="#b2">[3,</ref><ref type="bibr" target="#b4">5]</ref>. Table <ref type="table">3</ref> list the top five final rankings for the aggressiveness detection task for 2019, more details of all results of the contest are shown at <ref type="bibr" target="#b1">[2]</ref>. It is interesting to observe that even when our system relied on such a basic approach, it is able to compete faceto-face against INGEOTEC, a model based on an ensemble of classifiers, which specially tailors discriminative features for aggressive detection via a Genetic Programming strategy.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.2">Analysis</head><p>To breakdown our results, we started by getting the 10 most valuable n-grams at character level separated by length, as shown in Table <ref type="table" target="#tab_2">4</ref>. With respect to the aggressive class, our final configuration had more false positives than false negatives, meaning that it was easier for an aggressive tweet to be missclassified as non-aggressive than the other way around. Despite running several experiments and adding new features trying to give context to the tweets, in hopes of improving classification in this task, unfortunately these strategies showed, at best, almost unnoticeable changes in the results, and hinder of classification at worst. After manual inspection, we observed that this could have happened because:</p><p>-Occupation and Location predictions did not group the messages in a balanced way, in fact, most tweets would fall under only one out of eight available categories for occupation and six categories for location. -SOM Coordinates would not enhance the classification scores before as the clusters were capturing word repetition instead of thematic aspects for each tweet. Later experiments (after submission of results) showed that this behaviour was caused because the clustering was made with n-grams; training the SOM with word embeddings created with the train set of this task (without external resources) solved this issue and did a better job at grouping the tweets by subjects. -There was no relevant pattern by applying a perspicuity score to each tweet, as there were multiple cases of similar scores assigned to both aggressive and non-aggressive messages.  In this paper, we describe our strategy to classify aggressive and non-aggressive tweets in Mexican Spanish. In our best performing system, we use only lexical features and our results show a better performance than most results of all participants. This outcome, and the fact that the F-measure for the aggressive class is still low compared to the score on the non-aggressive class, motivates the idea of future work focusing on feature analysis for aggressiveness detection and explore which representations are truly relevant, including word embeddings, Bag of Words and Characters of different n-gram ranges, see these complement each other and if so, how to combine We analyzed our strategies, and after changing the way they were trained we could observe slight improvement in classification results, motivating us to keep experimenting on ways to try to add context to the text messages. We also believe in the potential that neural networks display for this task, and that more research on how to build and train them properly will certainly improve the current situation of this task.</p><p>As future work, we look forward to develop new strategies based on deep neural networks, such as Recurrent Neural Networks, which are tools aimed to work with sequential data similar in nature to time series.</p></div><figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_0"><head>Table 1 .</head><label>1</label><figDesc>Data distribution for Spanish tweets corpus</figDesc><table><row><cell>Class</cell><cell>Training Test</cell></row><row><cell>Aggressive</cell><cell>2727 N/A</cell></row><row><cell cols="2">Non-aggressive 4973 N/A</cell></row><row><cell>Total</cell><cell>7700 3156</cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_1"><head>Table 2 .</head><label>2</label><figDesc>Detailed classification with F1-scores in the validation stage.</figDesc><table /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_2"><head>Table 4 .</head><label>4</label><figDesc>Best n-grams at character level in training set</figDesc><table><row><cell cols="2">Length n-gram Frequency</cell><cell>in</cell><cell>Frequency in non</cell></row><row><cell></cell><cell cols="2">aggressive class</cell><cell>aggressive class</cell></row><row><cell>3 chars</cell><cell>'os ' 3074</cell><cell></cell><cell>3207</cell></row><row><cell></cell><cell>' de' 2571</cell><cell></cell><cell>3879</cell></row><row><cell></cell><cell>'as ' 2205</cell><cell></cell><cell>3252</cell></row><row><cell></cell><cell>'que' 1991</cell><cell></cell><cell>3540</cell></row><row><cell></cell><cell>' qu' 1965</cell><cell></cell><cell>3667</cell></row><row><cell cols="2">4 chars ' de ' 1860</cell><cell></cell><cell>2798</cell></row><row><cell></cell><cell>'que ' 1768</cell><cell></cell><cell>3262</cell></row><row><cell></cell><cell>' que' 1649</cell><cell></cell><cell>2954</cell></row><row><cell></cell><cell>' put' 1589</cell><cell></cell><cell>1517</cell></row><row><cell></cell><cell>' la '</cell><cell></cell><cell>2195</cell></row><row><cell cols="3">4 Conclusions and Future Work</cell></row></table></figure>
		</body>
		<back>
			<div type="annex">
<div xmlns="http://www.tei-c.org/ns/1.0" />			</div>
			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<analytic>
		<title level="a" type="main">Abusive language detection in online user content</title>
		<author>
			<persName><forename type="first">Chikashi</forename><surname>Nobata</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Joel</forename><surname>Tetreault</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Achint</forename><surname>Thomas</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Yashar</forename><surname>Mehdad</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Yi</forename><surname>Chang</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 25th International Conference on World Wide Web, WWW &apos;16</title>
				<meeting>the 25th International Conference on World Wide Web, WWW &apos;16<address><addrLine>Republic and Canton of Geneva, Switzerland</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2016">2016</date>
			<biblScope unit="page" from="145" to="153" />
		</imprint>
	</monogr>
	<note>International World Wide Web Conferences Steering Committee</note>
</biblStruct>

<biblStruct xml:id="b1">
	<analytic>
		<title level="a" type="main">Overview of MEX-A3T at IberLEF 2019: Authorship and aggressiveness analysis in Mexican Spanish tweets</title>
		<author>
			<persName><forename type="first">Mario</forename><surname>Ezra Aragón</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Miguel</forename><forename type="middle">Á</forename><surname>Álvarez-Carmona</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Manuel</forename><surname>Montes-Y Gómez</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Hugo</forename><forename type="middle">Jair</forename><surname>Escalante</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Luis</forename><surname>Villaseñor-Pineda</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Daniela</forename><surname>Moctezuma</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Notebook Papers of 1st SEPLN Workshop on Iberian Languages Evaluation Forum (IberLEF)</title>
				<meeting><address><addrLine>Bilbao, Spain; IberLEF</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2019-09">September, 2019. 2019</date>
		</imprint>
	</monogr>
	<note>Proceedings of the Iberian Languages Evaluation Forum</note>
</biblStruct>

<biblStruct xml:id="b2">
	<analytic>
		<title level="a" type="main">Distributed representations of sentences and documents</title>
		<author>
			<persName><forename type="first">Quoc</forename><surname>Le</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Tomas</forename><surname>Mikolov</surname></persName>
		</author>
		<ptr target="org" />
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 31st International Conference on International Conference on Machine Learning -Volume 32</title>
				<meeting>the 31st International Conference on International Conference on Machine Learning -Volume 32</meeting>
		<imprint>
			<date type="published" when="2014">2014</date>
			<biblScope unit="page" from="1188" to="1196" />
		</imprint>
	</monogr>
	<note>ICML&apos;14</note>
</biblStruct>

<biblStruct xml:id="b3">
	<analytic>
		<title level="a" type="main">Enriching word vectors with subword information</title>
		<author>
			<persName><forename type="first">Piotr</forename><surname>Bojanowski</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Edouard</forename><surname>Grave</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Armand</forename><surname>Joulin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Tomas</forename><surname>Mikolov</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Transactions of the Association for Computational Linguistics</title>
		<imprint>
			<biblScope unit="volume">5</biblScope>
			<biblScope unit="page" from="135" to="146" />
			<date type="published" when="2017">2017</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b4">
	<analytic>
		<title level="a" type="main">Material para el taller &quot;representaciones vectoriales de palabras basadas en redes neuronales&quot; de la starsconf</title>
		<ptr target="https://github.com/mquezada/starsconf2018-word-embeddings" />
	</analytic>
	<monogr>
		<title level="m">Github -mquezada/starsconf2018-word-embeddings</title>
				<imprint>
			<date type="published" when="2018-06">2018. 06/02/2019</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b5">
	<analytic>
		<title level="a" type="main">Custom document embeddings via the centroids method: Gender classification in an author profiling task</title>
		<author>
			<persName><forename type="first">Roberto</forename><surname>López Santillán</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><forename type="middle">C</forename><surname>González-Gurrola</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Graciela</forename><surname>Ramírez-Alonso</surname></persName>
		</author>
		<ptr target=".org" />
	</analytic>
	<monogr>
		<title level="m">CLEF 2018 Evaluation Labs and Workshop -Working Notes Papers</title>
				<editor>
			<persName><forename type="first">Linda</forename><surname>Cappellato</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">Nicola</forename><surname>Ferro</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">Jian-Yun</forename><surname>Nie</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">Laure</forename><surname>Soulier</surname></persName>
		</editor>
		<meeting><address><addrLine>Avignon, France</addrLine></address></meeting>
		<imprint>
			<publisher>CEUR-WS</publisher>
			<date type="published" when="2018-09">September. September 2018</date>
			<biblScope unit="page" from="10" to="14" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b6">
	<monogr>
		<title level="m" type="main">The winning approach for author profiling of mexican users in twitter at mex</title>
		<author>
			<persName><forename type="first">Rosa Marıa</forename><surname>Ortega-Mendoza</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Pastor López-Monroy</surname></persName>
		</author>
		<idno>a3t@ ibereval-2018</idno>
		<imprint/>
	</monogr>
</biblStruct>

<biblStruct xml:id="b7">
	<monogr>
		<ptr target="https://github.com/JustGlowing/minisom" />
		<title level="m">Github -justglowing/minisom: Minisom is a minimalistic implementation of the self organizing maps</title>
				<imprint>
			<date type="published" when="2019-03">06/03/2019</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b8">
	<monogr>
		<title level="m" type="main">Automated hate speech detection and the problem of offensive language</title>
		<author>
			<persName><forename type="first">Thomas</forename><surname>Davidson</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Dana</forename><surname>Warmsley</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Michael</forename><forename type="middle">W</forename><surname>Macy</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Ingmar</forename><surname>Weber</surname></persName>
		</author>
		<idno>CoRR, abs/1703.04009</idno>
		<imprint>
			<date type="published" when="2017">2017</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b9">
	<monogr>
		<ptr target="https://legible.es/blog/escala-inflesz/" />
		<title level="m">Escala inflesz</title>
				<imprint>
			<date type="published" when="2019-02">06/02/2019</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b10">
	<analytic>
		<title level="a" type="main">Overview of MEX-A3T at IberEval 2018: Authorship and aggressiveness analysis in Mexican Spanish tweets</title>
		<author>
			<persName><forename type="first">Miguel</forename><surname>Álvarez-Carmona</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Estefanía</forename><surname>Guzmán-Falcón</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Manuel</forename><surname>Montes-Y Gómez</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Hugo</forename><forename type="middle">Jair</forename><surname>Escalante</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Luis</forename><surname>Villaseñor-Pineda</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Verónica</forename><surname>Reyes-Meza</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Antonio</forename><surname>Rico-Sulayes</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">CEUR Workshop Proceedings</title>
				<imprint>
			<date type="published" when="2018">2018</date>
			<biblScope unit="volume">2150</biblScope>
			<biblScope unit="page" from="74" to="96" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b11">
	<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="b12">
	<monogr>
		<ptr target="https://github.com/afshinrahimi/sparsemultilayerperceptron" />
		<title level="m">Github afshinrahimi/sparsemultilayerperceptron: Lasagne / theano based multilayer perceptron mlp which accepts both sparse and dense matrices and is very easy to use with scikit-learn api similarity</title>
				<imprint>
			<date type="published" when="2019-03">06/03/2019</date>
		</imprint>
	</monogr>
</biblStruct>

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