<?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">Linear Models for Video Memorability Prediction Using Visual and Semantic Features</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author>
							<persName><forename type="first">Rohit</forename><surname>Gupta</surname></persName>
							<email>rohit.gupta@conduent.com</email>
							<affiliation key="aff0">
								<orgName type="laboratory">Conduent Labs</orgName>
								<address>
									<country key="IN">India</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Kush</forename><surname>Motwani</surname></persName>
							<email>kush.motwani@conduent.com</email>
							<affiliation key="aff0">
								<orgName type="laboratory">Conduent Labs</orgName>
								<address>
									<country key="IN">India</country>
								</address>
							</affiliation>
						</author>
						<title level="a" type="main">Linear Models for Video Memorability Prediction Using Visual and Semantic Features</title>
					</analytic>
					<monogr>
						<imprint>
							<date/>
						</imprint>
					</monogr>
					<idno type="MD5">F56052CEB614DD37EDD769C497A32593</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>Memorability is defined as the quality or state of being easy to remember. In the context of videos today, with billions of hours of user generated video content on online platforms like social media, prediction of a cognitive measure like memorability has many potential applications. We investigate the use of various visual and semantic features in building models for video memorability prediction. Along with the features provided as part of the Predicting Media Memorability Task at MediaEval 2018, we utilize generic descriptors extracted from the feature map of Convolutional Neural Networks. We are able to discover intrinsic semantic factors affecting memorability based on our analysis of models that use video captions. Finally, we are able to build an ensemble of models that outperforms models built using a single feature type.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2">RELATED WORK</head></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Work on video memorability has recently begun to generate a lot of interest, and recent works [2] [9] investigate the use of various low</head><p>Copyright held by the owner/author(s).</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>In this work, we investigate the use of various visual and semantic features to predict video memorability, and conduct an extensive analysis over the chosen features, to develop a robust video memorability predictor. Among the features provided by challenge organizers <ref type="bibr" target="#b0">[1]</ref> we train models over the HMP, LBP and ColorHistogram visual features and InceptionV3-Predictions &amp; C3D-Predictions semantic features. In addition, we train models over the video captions provided, and over features extracted from the last convolution layers of Convolutional Neural Networks trained for image classification <ref type="bibr" target="#b5">[6]</ref> [5] <ref type="bibr" target="#b7">[8]</ref> applied to frames of the video. The models are evaluated using Spearman's rank correlation as the metric. Our key findings and contributions are as follows:</p><p>(1) Models for short term memorability perform much better than models for long term memorability. </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3">APPROACH 3.1 Models</head><p>Since most of the features provided are very high dimensional and the number of videos is of the same order of magnitude as the dimensionality of the features, high variance and over-fitting are a major potential concern in this task. As a result we preferred simple, linear, highly regularized models, namely:</p><p>(1) LASSO (L1) regularized Logistic Regression <ref type="bibr" target="#b9">[10]</ref> (2) Linear Support Vector Regression <ref type="bibr" target="#b2">[3]</ref> (3) ElasticNet (L1 and L2 Regularized Linear Regression) <ref type="bibr" target="#b3">[4]</ref> For each set of features we tried each of these 3 models and select the best one. Values for various model hyper-parameters controlling the extent of regularization (such as C, alpha and L1-Ratio) were picked by using grid search over the dev set.</p><p>In order to improve prediction accuracy, we build ensemble models using some of our best models. We use a simple weighted averaging technique, where we blend the outputs of the best single models developed previously. Weights for ensemble averaging are also picked using grid search over the dev set.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.2">Features and Data Pre-Processing</head><p>Video level features like HMP and C3D-Preds are used as-is, while frame level features such as ColorHistogram and LBP are concatenated across frames. We pre-process the text captions into Bag-of-Words features using CountVectorizer from Scikit-Learn. We use word unigrams and bigrams, remove English stopwords and pick the optimal vocabulary size by cross-validation.</p><p>ResNet and DenseNet features are extracted for the 1st, 56th, 112th frames of the video from the penultimate layer of ResNet50 and DenseNet121 models respectively. These features are then averaged across frames and L2-Normalized. This results in a 1024 and 2048 dimensional feature vector for DenseNet and ResNet respectively.</p><p>The memorability scores is pre-processed in 2 different ways depending on the model:</p><p>• Z-score Normalization for Regressors: carried out in order to make the scores scale-invariant, this results in a significant increase in model accuracy. • Sampling for Logistic Regression Classifier: We train the Logistic Regression Classifier using binary labels sampled from a binomial distribution parameterized by the memorability scores. This is motivated by the fact that the memorability score is the percentage of subjects who can recall the contents of the video <ref type="bibr" target="#b1">[2]</ref>.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4">RESULTS</head><p>Tables <ref type="table" target="#tab_1">1 and 2</ref>  </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="5">ANALYSIS AND DISCUSSION</head><p>To analyze our interpretable captions based model we look at vocabulary terms corresponding to the most positive (Figure <ref type="figure">1</ref>) and negative (Figure <ref type="figure">2</ref>) coefficients of the caption based models (averaged over 100 models using different validation splits Like in past work on video memorability, our caption based models give superior performance than the C3D features, and lowlevel visual features. In contrast to past work however, we also examine the use of features extracted from the penultimate layer of CNNs and observe that models trained on these features outperform the models based on captions. Coupled with the fact that models trained over InceptionV3 predictions give poor results, we infer that the representation learned by CNNs capture additional semantic information relevant to predicting memorability beyond simply the category the image belongs to.</p></div><figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_1"><head>Table 1 :</head><label>1</label><figDesc>give an overall summary of our experimental results. Results for the best model for each feature are presented. For HMP, LBP and ColorHistogram, Lasso Logistic Regression is the best model, while ElasticNet is the best model for the other features. Long Term Memorability Scores</figDesc><table><row><cell>For</cell></row></table></figure>
		</body>
		<back>
			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<analytic>
		<title level="a" type="main">MediaEval 2018: Predicting Media Memorability Task</title>
		<author>
			<persName><forename type="first">Romain</forename><surname>Cohendet</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Claire-Hélène</forename><surname>Demarty</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Ngoc</forename><forename type="middle">Q K</forename><surname>Duong</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Mats</forename><surname>Sjöberg</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Bogdan</forename><surname>Ionescu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Thanh-Toan</forename><surname>Do</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Working Notes Proceedings of the MediaEval 2018 Workshop</title>
				<imprint>
			<date type="published" when="2018">2018</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b1">
	<analytic>
		<title level="a" type="main">Annotating, Understanding, and Predicting Long-term Video Memorability</title>
		<author>
			<persName><forename type="first">Romain</forename><surname>Cohendet</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Karthik</forename><surname>Yadati</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Q</forename><forename type="middle">K</forename><surname>Ngoc</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Claire-Hélène</forename><surname>Duong</surname></persName>
		</author>
		<author>
			<persName><surname>Demarty</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 2018 ACM on International Conference on Multimedia Retrieval</title>
				<meeting>the 2018 ACM on International Conference on Multimedia Retrieval</meeting>
		<imprint>
			<publisher>ACM</publisher>
			<date type="published" when="2018">2018</date>
			<biblScope unit="page" from="178" to="186" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b2">
	<analytic>
		<title level="a" type="main">Working Set Selection Using Second Order Information for Training Support Vector Machines</title>
		<author>
			<persName><forename type="first">Rong-En</forename><surname>Fan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Chih-Jen</forename><surname>Pai-Hsuen Chen</surname></persName>
		</author>
		<author>
			<persName><surname>Lin</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Journal of Machine Learning Research</title>
		<imprint>
			<biblScope unit="volume">6</biblScope>
			<biblScope unit="page" from="1889" to="1918" />
			<date type="published" when="2005-12">2005. Dec (2005</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b3">
	<analytic>
		<title level="a" type="main">Regularization Paths for Generalized Linear Models via Coordinate Descent</title>
		<author>
			<persName><forename type="first">Jerome</forename><surname>Friedman</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Trevor</forename><surname>Hastie</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Rob</forename><surname>Tibshirani</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Journal of Statistical Software</title>
		<imprint>
			<biblScope unit="volume">33</biblScope>
			<biblScope unit="issue">1</biblScope>
			<biblScope unit="page">1</biblScope>
			<date type="published" when="2010">2010. 2010</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b4">
	<analytic>
		<title level="a" type="main">Deep Residual Learning for Image Recognition</title>
		<author>
			<persName><forename type="first">Kaiming</forename><surname>He</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Xiangyu</forename><surname>Zhang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Shaoqing</forename><surname>Ren</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Jian</forename><surname>Sun</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition</title>
				<meeting>the IEEE Conference on Computer Vision and Pattern Recognition</meeting>
		<imprint>
			<date type="published" when="2016">2016</date>
			<biblScope unit="page" from="770" to="778" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b5">
	<analytic>
		<title level="a" type="main">Densely Connected Convolutional Networks</title>
		<author>
			<persName><forename type="first">Gao</forename><surname>Huang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Zhuang</forename><surname>Liu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Laurens</forename><surname>Van Der Maaten</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Kilian</forename><forename type="middle">Q</forename><surname>Weinberger</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition</title>
				<meeting>the IEEE Conference on Computer Vision and Pattern Recognition</meeting>
		<imprint>
			<date type="published" when="2017">2017</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b6">
	<analytic>
		<title level="a" type="main">What Makes a Photograph Memorable?</title>
		<author>
			<persName><forename type="first">Phillip</forename><surname>Isola</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Jianxiong</forename><surname>Xiao</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Devi</forename><surname>Parikh</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Antonio</forename><surname>Torralba</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Aude</forename><surname>Oliva</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">IEEE Transactions on Pattern Analysis and Machine Intelligence</title>
		<imprint>
			<biblScope unit="volume">36</biblScope>
			<biblScope unit="issue">7</biblScope>
			<biblScope unit="page" from="1469" to="1482" />
			<date type="published" when="2014">2014. 2014</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b7">
	<analytic>
		<title level="a" type="main">CNN Features Off-the-Shelf: An Astounding Baseline for Recognition</title>
		<author>
			<persName><forename type="first">Ali</forename><surname>Sharif Razavian</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Hossein</forename><surname>Azizpour</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Josephine</forename><surname>Sullivan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Stefan</forename><surname>Carlsson</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">The IEEE Conference on Computer Vision and Pattern Recognition (CVPR) Workshops</title>
				<imprint>
			<date type="published" when="2014">2014</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b8">
	<analytic>
		<title level="a" type="main">Show and Recall: Learning What Makes Videos Memorable</title>
		<author>
			<persName><forename type="first">Sumit</forename><surname>Shekhar</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Dhruv</forename><surname>Singal</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Harvineet</forename><surname>Singh</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition</title>
				<meeting>the IEEE Conference on Computer Vision and Pattern Recognition</meeting>
		<imprint>
			<date type="published" when="2017">2017</date>
			<biblScope unit="page" from="2730" to="2739" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b9">
	<analytic>
		<title level="a" type="main">An Improved GLMNET for L1-regularized Logistic Regression</title>
		<author>
			<persName><forename type="first">Guo-Xun</forename><surname>Yuan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Chia-Hua</forename><surname>Ho</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Chih-Jen</forename><surname>Lin</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Journal of Machine Learning Research</title>
		<imprint>
			<biblScope unit="volume">13</biblScope>
			<biblScope unit="page" from="1999" to="2030" />
			<date type="published" when="2012-06">2012. Jun (2012</date>
		</imprint>
	</monogr>
</biblStruct>

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