<?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">IM-JAIC at MediaEval 2018 Emotional Impact of Movies Task</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author>
							<persName><forename type="first">Chloe</forename><surname>Loughridge</surname></persName>
							<affiliation key="aff0">
								<orgName type="department">Punahou School</orgName>
								<address>
									<settlement>Honolulu</settlement>
									<region>Hawaii</region>
									<country key="US">United States</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Julia</forename><surname>Moseyko</surname></persName>
							<affiliation key="aff1">
								<orgName type="institution">Massachusetts Institute of Technology</orgName>
								<address>
									<settlement>Cambridge</settlement>
									<region>Massachusetts</region>
									<country key="US">United States</country>
								</address>
							</affiliation>
						</author>
						<title level="a" type="main">IM-JAIC at MediaEval 2018 Emotional Impact of Movies Task</title>
					</analytic>
					<monogr>
						<imprint>
							<date/>
						</imprint>
					</monogr>
					<idno type="MD5">CFB4B603B5B0F2D63DCB6DB7A969EE9D</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2023-03-24T02:16+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>
			<abstract>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>In this paper, we describe our approach to subtask 2 of the Emotional Impact of Movies task from the Mediaeval 2018 Challenge. We compared the performances of LSTM ensembles to single LSTM models for predicting the fear-inducing seconds in movies. We also compared the performance of an LSTM model trained on audio feature data to the performance of an LSTM model trained on the outputs of a pretrained VGG16 model. Ultimately, we found that a single LSTM trained on VGG16 outputs achieved the highest F1 score on the test set.</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>The Mediaeval emotional impact of movies task contains two subtasks: 1) valence and arousal score prediction, and 2) fear prediction. More information can be found in <ref type="bibr" target="#b0">[1]</ref>. In this paper we describe our work on subtask 2, fear prediction.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2">RELATED WORK</head><p>This task is a sequel to the 2017 emotional impact of movies task, so there is a sizable body of related work from last year. Support vector regression algorithms were used in <ref type="bibr" target="#b1">[2]</ref> to predict fear. A random forest algorithm was used in <ref type="bibr" target="#b6">[7]</ref> to predict fear with considerable success. In the task of video action classification, LSTMs have achieved notable results when trained on the outputs of the AlexNet model and the GoogleLeNet model <ref type="bibr" target="#b2">[3]</ref>. We aim to build on the previous work done for subtask 2 by implementing LSTM models for fear prediction.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3">APPROACH</head></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.1">Overview</head><p>To address subtask 2, fear prediction, we trained three Long Short-Term Memory (LSTM) ensembles and two single-layer LSTM models. LSTMs are known for their effectiveness at modeling timeseries data and capturing long-term dependencies in this type of data <ref type="bibr" target="#b3">[4]</ref>.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.2">LSTM Model Architecture</head><p>We set aside the last 12 movies from DevSet part 2 as our crossvalidation set so we could compare LSTM model architecture variations. A simple single-layer LSTM with batch normalization <ref type="bibr" target="#b4">[5]</ref> trained on the fc6 feature data from DevSet 1 achieved the best results on this cross-validation set. The LSTM model with a 1D temporal convolutional layer (trained on the same feature data from DevSet 1) performed slightly worse, but still achieved nonzero F1 scores. We ultimately used both model architectures in our ensembles, though we included more of the single-layer LSTMs in each ensemble.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.3">Preprocessing the feature data</head><p>To train our models, we used the pre-extracted audio features and VGG16 fc6 layer visual features from the Liris-Accede dataset. The audio features were extracted using the openSmile toolbox, and the fc6 features were extracted with the Matlab neural networks toolbox <ref type="bibr" target="#b0">[1]</ref>. These features have been the most useful in past papers <ref type="bibr" target="#b1">[2,</ref><ref type="bibr" target="#b6">7]</ref>. To test whether the same applied for our data, we trained multiple LSTM models on the visual features provided in the Liris Accede dataset (i.e., the fc6 feature data and the other visual features extracted using the LIRE library) <ref type="bibr" target="#b0">[1]</ref>. Each LSTM was trained on 4 movies and tested on 3 movies from DevSet part 1. In this testing, only the models trained on audio features and fc6 visual features produced nonzero F1 scores.</p><p>The fc6 and audio feature data were compiled into matrices and padded so that the max number of timesteps for each movie was 6262 seconds. To reduce memory requirements, we chose a window size of 101 seconds to slide over the time series data with no seconds of overlap. To create labels, we converted the fear annotations into one-hot vectors for each movie. Each element in a movie's one-hot vector represented one second: fear-inducing seconds were ones while non-fear-inducing seconds were zeros. Finally, the training data for our models were handpicked so that about 20% of all timesteps fed into the model were fear-inducing.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4">RESULTS AND ANALYSIS</head><p>We submitted the following five runs: Each ensemble consisted of four LSTM models trained on different subsets of DevSet part 1 and DevSet part 2 data. For the first run, two single-layer LSTM models were trained using fc6 feature data, and two single-layer LSTMs were trained using audio feature data. For run 2, all four LSTM models were trained using fc6 data. Three of these models were single-layer LSTMs and one was a single layer LSTM with a 1D convolutional layer attached. For run 3, all four LSTM models (again three of which were single-layer LSTMs and one of which contained a 1D convolutional layer) were trained using audio feature data. The results from these runs are listed in Table <ref type="table" target="#tab_0">1</ref>. The predictions of the individual models in each ensemble were averaged together to produce the ensemble's final output. On the whole, the ensembles performed worse than the single LSTM models. This could be due in part to the fact that predictions in the ensembles were joined via a simple average function, not a weighted average function. Results might have improved if the models with higher F1 scores were given greater influence over the final decision of the ensemble.</p><p>Between the two individual models in runs 4 and 5, the single layer LSTM trained on fc6 data (run 4) performed the best. This may suggest that visual features were more relevant to predicting fear-inducing segments than audio features.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="5">CONCLUSIONS</head><p>In this paper, we described our approach to addressing the fear prediction subtask using LSTM models. We compared the performances of LSTM ensembles to single LSTMs trained on either fc6 or audio feature data.</p><p>There are a number of interesting future research avenues to explore and ways to improve what has been shared here. First, it may be beneficial to decrease the length of the sliding windows from 101 seconds and introduce a greater amount of overlap between them. Because of our design choice in this paper, we faced a class imbalance issue in our training data, which was heavily skewed towards non-fear inducing seconds. Decreasing the window size would make it easier to handpick a set of training data with a higher ratio of fear-inducing seconds to non-fear inducing seconds. Training the LSTM models on a balanced dataset may improve their performances.</p><p>Another potentially helpful strategy for dealing with the bias in the fear prediction dataset is to weight the cost function so the models are penalized more heavily for predicting zeros (non-fear inducing seconds) when they should be predicting ones (fear inducing seconds).</p><p>In terms of feature data, AlexNet and GoogleLeNet outputs could be promising to work with in the future. LSTMs trained on this feature data have achieved notable results for action recognition in videos <ref type="bibr" target="#b2">[3]</ref>, a task that seems related to fear prediction in movies.</p><p>Finally, the Phased LSTM <ref type="bibr" target="#b5">[6]</ref> is a relatively recent model architecture innovation that could improve the accuracy scores of LSTMs when it comes to predicting irregular events in long sequences. Given the infrequency of fear-inducing seconds in the training data, adopting a Phased LSTM architecture could be promising.</p></div><figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_0"><head>Run 1 :</head><label>1</label><figDesc>Ensemble of LSTMs + fc6 and Audio features Run 2: Ensemble of LSTMs + Audio features Run 3: Ensemble of LSTMs + fc6 Run 4: Single-layer LSTM + fc6 Run 5: Single-layer LSTM + Audio Copyright is held by the owner/author(s). MediaEval'18, 29-31 October 2018, Sophia Antipolis, France MediaEval'18, 29-31 October 2018, Sophia Antipolis, France M. Larson et al.</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_0"><head>Table 1 : Results from the Fear Subtask</head><label>1</label><figDesc></figDesc><table><row><cell>Runs</cell><cell>Intersection_</cell></row><row><cell></cell><cell>Over_Union</cell></row><row><cell>Run 1</cell><cell>0.06496</cell></row><row><cell>Run 2</cell><cell>0.07507</cell></row><row><cell>Run 3</cell><cell>0.08742</cell></row><row><cell>Run 4</cell><cell>0.11992</cell></row><row><cell>Run 5</cell><cell>0.09874</cell></row></table></figure>
		</body>
		<back>

			<div type="acknowledgement">
<div xmlns="http://www.tei-c.org/ns/1.0"><head>ACKNOWLEDGMENTS</head><p>This work was supported in part by the AI Grant (now the Pioneer Fund).</p></div>
			</div>

			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<analytic>
		<title level="a" type="main">The MediaEval 2018 Emotional Impact of Movies Task</title>
		<author>
			<persName><forename type="first">E</forename><surname>Dellandrea</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Martijn</forename><surname>Huigsloot</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Chen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Baveye</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Sjoberg</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">MediaEval 2018 Workshop</title>
				<meeting><address><addrLine>Sophia Antipolis, France</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2018-10-31">29-31 October 2018</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b1">
	<analytic>
		<title level="a" type="main">HKBU at MediaEval 2017 Emotional Impact of Movies Task</title>
		<author>
			<persName><forename type="first">Yang</forename><surname>Liu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Zhonglei</forename><surname>Gu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Tobey</forename><forename type="middle">H</forename><surname>Ko</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of MediaEval 2017 Workshop</title>
				<meeting>MediaEval 2017 Workshop<address><addrLine>Dublin, Ireland</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2017">2017</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b2">
	<monogr>
		<title level="m" type="main">Beyond Short Snippets: Deep Networks for Video Classification</title>
		<author>
			<persName><forename type="first">J</forename><surname>Ng</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Hausknecht</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Vijayanarasimhan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">O</forename><surname>Rajat Monga</surname></persName>
		</author>
		<author>
			<persName><forename type="first">G</forename><surname>Toderici</surname></persName>
		</author>
		<idno type="arXiv">arXiv:1503.08909</idno>
		<ptr target="https://arxiv.org/abs/1503.08909" />
		<imprint>
			<date type="published" when="2015">2015</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b3">
	<analytic>
		<title level="a" type="main">LONG SHORT-TERM MEMORY</title>
		<author>
			<persName><forename type="first">S</forename><surname>Hochreiter</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Schmidhuber</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Neural Computation</title>
		<imprint>
			<biblScope unit="volume">9</biblScope>
			<biblScope unit="issue">8</biblScope>
			<biblScope unit="page" from="1735" to="1780" />
			<date type="published" when="1997">1997</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b4">
	<monogr>
		<title level="m" type="main">Batch Normalization: Accelerating Deep Network Training by Reducing Internal Covariate Shift</title>
		<author>
			<persName><forename type="first">Sergey</forename><surname>Ioffe</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Christian</forename><surname>Szegedy</surname></persName>
		</author>
		<idno type="arXiv">arXiv:1502.03167</idno>
		<ptr target="https://arxiv.org/abs/1502.03167" />
		<imprint>
			<date type="published" when="2015">2015</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b5">
	<monogr>
		<title level="m" type="main">Phased LSTM: Accelerating Recurrent Network Training for Long or Event-based Sequences</title>
		<author>
			<persName><forename type="first">Daniel</forename><surname>Neil</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Michael</forename><surname>Pfeiffer</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Shih-Chii</forename><surname>Liu</surname></persName>
		</author>
		<idno type="arXiv">arXiv:1610.09513</idno>
		<ptr target="https://arxiv.org/abs/1610.09513" />
		<imprint>
			<date type="published" when="2016">2016</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b6">
	<analytic>
		<title level="a" type="main">THUHCSI in MediaEval 2017 Emotional Impact of Movies Task</title>
		<author>
			<persName><forename type="first">Zitong</forename><surname>Jin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Yuqi</forename><surname>Yao</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Ye</forename><surname>Ma</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Mingxing</forename><surname>Xu</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of MediaEval 2017 Workshop</title>
				<meeting>MediaEval 2017 Workshop<address><addrLine>Dublin, Ireland</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2017">2017</date>
		</imprint>
	</monogr>
</biblStruct>

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