<?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">Experiments in Flickr Result Sets</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author>
							<persName><forename type="first">Neha</forename><surname>Jain</surname></persName>
							<affiliation key="aff0">
								<orgName type="institution">University of Southampton</orgName>
								<address>
									<country key="GB">United Kingdom</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Sina</forename><surname>Samangooei</surname></persName>
							<affiliation key="aff0">
								<orgName type="institution">University of Southampton</orgName>
								<address>
									<country key="GB">United Kingdom</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">John</forename><surname>Preston</surname></persName>
							<affiliation key="aff0">
								<orgName type="institution">University of Southampton</orgName>
								<address>
									<country key="GB">United Kingdom</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Jamie</forename><surname>Davies</surname></persName>
							<affiliation key="aff0">
								<orgName type="institution">University of Southampton</orgName>
								<address>
									<country key="GB">United Kingdom</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">David</forename><surname>Dupplaw</surname></persName>
							<affiliation key="aff0">
								<orgName type="institution">University of Southampton</orgName>
								<address>
									<country key="GB">United Kingdom</country>
								</address>
							</affiliation>
						</author>
						<title level="a" type="main">Experiments in Flickr Result Sets</title>
					</analytic>
					<monogr>
						<imprint>
							<date/>
						</imprint>
					</monogr>
					<idno type="MD5">60859D34C92FD13A43DE3D8C01B95800</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2023-03-19T17:58+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>The 2013 MediaEval Retrieving Diverse Social Images Task looked to tackling the problem of search result diversification of Flickr results sets formed from queries about geographic places and landmarks. In this paper we describe our approach of using a min-max similarity diversifier coupled with pre-filters and a reranker. We also demonstrate a number of novel features for measuring similarity to use in the diversification step.</p></div>
			</abstract>
		</profileDesc>
	</teiHeader>
	<text xml:lang="en">
		<body>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="1.">INTRODUCTION AND MOTIVATION</head><p>The diversification of search results is increasingly becoming an important topic in the area of information retrieval. The 2013 MediaEval Retrieving Diverse Social Images Task <ref type="bibr" target="#b4">[4]</ref> aimed to foster new multimodal approaches to the diversification of result sets from social photo retrieval.</p><p>Our motivation for this task was to build on the diversification techniques we developed in ImageCLEF'09 <ref type="bibr" target="#b1">[1]</ref> by incorporating truly multimodal data. We were also motivated to explore how the precision of the search results could be improved by filtering and re-ranking prior to the diversification step, thus minimising the loss in precision usually seen when diversification is applied.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.">METHODOLOGY</head><p>In terms of overall approach, after a number of experiments, we settled on the workflow illustrated in Figure <ref type="figure" target="#fig_0">1</ref>. In order to improve precision, we applied filters to the input results list to remove images unlikely to be relevant, and for the runs that allowed use of the text and metadata, we reranked the results before applying diversification. To diversify the results, after testing a number of techniques (i.e. clustering followed by round-robin selection), we reverted to a Min-Max diversification technique as it gave the best results on the development dataset with the features we used.</p><p>Briefly, the Min-Max technique takes as input a similarity matrix and a pivot image, and uses this to build a result list. The pivot is taken as the first image in the result list. The second image is chosen as the one that has the minimum similarity to the pivot. The remaining images are chosen such that they have the maximum dissimilarity to all of the previously chosen images. Similarity of an image from a set of images can be computed via a number of functions  over the piecewise similarities of the image to each element of the set; sum, product and max are typical choices. On the development set, we found max worked best. The implementation of our methodology was realised in Java using OpenIMAJ <ref type="foot" target="#foot_0">1</ref> [2] and Lucene<ref type="foot" target="#foot_1">2</ref> .</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.1">Pre-Filters</head><p>We removed many of the images which weren't relevant using some of our pre-filters before diversifying them. Images which contained frontal or side-views of faces in focus were discarded and we also got rid of the blurred out-of-focus ones. Images were further checked for the amount of text they contained and those with high percentage were thrown away. Those images which had been geotagged more than 8 km away from their actual location were removed. We found that images without any views were usually not relevant and so only took into consideration those which had more than 2 views. Similarly we discovered that images with very large descriptions tend to be irrelevant and hence filtered out those whose descriptions were over 2000 characters long.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.2">Reranker</head><p>The original results lists provided in the task were retrieved by searching Flickr with a given monument name. The exact search implementation used by Flickr is unknown, but it is likely to be a variant of the vector space model with stemming. A better, more precise, ranking of the results can be achieved by performing a phrase or proximity search in which the results are scored higher if the query terms occur in close proximity in the metadata. To apply proximitybased reranking, we indexed the title, description and tags fields of each image in the filtered results list with Lucene, and performed the following query: (TITLE:"monument " 20 OR TAGS:"monument " 20 OR DESCRIPTION:"monument " 20) Expert Crowdworker ALL GT1 GT2 GT3 Run P@10 CR@10 F1@10 P@10 CR@10 F1@10 CR@10 F1@10 CR@10 F1@10 OR (TITLE:"monument ")^0.5 (TAGS:"monument ")^0.1</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.3">Similarity Matrices</head><p>In order to use the Min-Max diversifier, a similarity matrix is required. At the beginning of the task we spent some time analysing the data, and looking at features which could be sensibly used to compute similarity. One particular problem we noticed was that many of the images had the same description and tags, even though they were visually diverse. This means that standard techniques for diversification based on the text are unlikely to work well in many cases, and would in all likelihood end up being similar to just diversifying based on the users that took the photo. With this in mind, we started to explore other features that could work better. Color Naming Histogram (CN). The provided CN histogram features <ref type="bibr" target="#b4">[4]</ref>, were used to create a similarity matrix by using correlation to measure the pairwise similarity. Scale-Invariant Feature Transform (SIFT). SIFT features from the images were extracted and hashed using an LSH scheme <ref type="bibr" target="#b3">[3]</ref>. A sparse binary similarity matrix was created from these, by setting a similarity of 1 to pairs of images in which there was a hash collision. Time User (TU). Images taken by the same user within a short time period are likely to be similar. A similarity matrix was constructed with the following constraints: pairs of images taken a less than a minute apart had similarity 1; images more than 3.25 mins apart had 0 similarity. Between 1 and 3.25 minutes the similarity falls off logarithmically. Month Delta (MD). Similar to the TU feature, images have increasing similarity with closer month of year.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.">EXPERIMENTS AND RESULTS</head><p>Three runs were submitted; their configuration with respect to the methodology and features described in Section 2 is illustrated in Tables <ref type="table" target="#tab_1">1a and 1b</ref>. Where multiple features were used, the similarity matrices were just averaged to create a single matrix. Two major points can be noted from the results. Firstly, using textual and visual features outperforms the use of either modality alone with our techniques. It is also clear that the reranking stage massively helps improve precision. Secondly, the high variability in results across the experts and crowdworkers indicates that the task is actually rather subjective; it is particularly interesting that when compared against the crowdworker groundtruths our cluster recall scores are almost double, perhaps indicating that the experts tended to over-segment the result sets.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4.">CONCLUSIONS</head><p>In this work we've explored different features for search result diversification, and also explored how relevance can be maximised by pre-filtering and re-ranking prior to the diversification step. The results indicate that our re-ranking step gives a good increase in precision. The combination of features from multiple modalities leads to a modest increase in diversity. In the future we intend to investigate whether automatically generated classifications from the visual features (indoor/outdoor, etc) can be leveraged to increase diversity.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="5.">ACKNOWLEDGMENTS</head><p>The described work was funded by the European Union Seventh Framework Programme (FP7/2007-2013) under grant agreements 270239 (ARCOMEM), and 287863 (TrendMiner).</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="6.">ADDITIONAL AUTHORS</head><p>Additional author: Paul Lewis (phl@ecs.soton.ac.uk)</p></div><figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_0"><head>Figure 1 :</head><label>1</label><figDesc>Figure 1: Overall workflow for diversify results</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_0"><head>Pre-Filter Reranker Greedy Min-Max Similarity Diversifier CN</head><label></label><figDesc>Copyright is held by the author/owner(s).</figDesc><table><row><cell>Input Results List</cell><cell>Binary Predicate Faces, Text, Blur</cell></row><row><cell></cell><cell>GeoLocation (Geo), Number of Views</cell></row><row><cell></cell><cell>(Views), Description Length (DLen)</cell></row><row><cell></cell><cell>Lucene-based proximity search</cell></row><row><cell>Diversifier</cell><cell>-CORR (CN), SIFT-LSH (SIFT),</cell></row><row><cell>Output Results List</cell><cell>TimeUser (TU), MonthDelta (MD)</cell></row><row><cell>MediaEval 2013 Workshop, October 18-19, 2013, Barcelona, Spain</cell><cell></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>Run configuration(a) Pre-filters applied in each of the runs.</figDesc><table><row><cell></cell><cell></cell><cell></cell><cell cols="3">(b) Reranker and features in each of the runs.</cell></row><row><cell></cell><cell>Visual</cell><cell>Meta/Textual</cell><cell></cell><cell>Visual</cell><cell>Meta/Textual</cell></row><row><cell>Run</cell><cell cols="2">Face Blur Text Geo Views DLen</cell><cell>Run</cell><cell cols="2">Reranker CN SIFT TU</cell><cell>MD</cell></row><row><cell>1</cell><cell></cell><cell></cell><cell>1</cell><cell></cell></row><row><cell>2</cell><cell></cell><cell></cell><cell>2</cell><cell></cell></row><row><cell>3</cell><cell></cell><cell></cell><cell>3</cell><cell></cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_2"><head>Table 2 :</head><label>2</label><figDesc>Official Results. Crowdworker evaluation was performed on a subset of 50 locations from the testset (346 locations).</figDesc><table /></figure>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="1" xml:id="foot_0">http://openimaj.org</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="2" xml:id="foot_1">http://lucene.apache.org</note>
		</body>
		<back>
			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<monogr>
		<title/>
		<author>
			<persName><surname>References</surname></persName>
		</author>
		<imprint/>
	</monogr>
</biblStruct>

<biblStruct xml:id="b1">
	<analytic>
		<title level="a" type="main">IAM@ImageCLEFphoto 2009: Experiments on Maximising Diversity using Image Features</title>
		<author>
			<persName><forename type="first">J</forename><surname>Hare</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><surname>Dupplaw</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Lewis</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">CLEF 2009 Workshop</title>
				<imprint>
			<date type="published" when="2009-09">September 2009</date>
			<biblScope unit="page" from="42" to="42" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b2">
	<analytic>
		<title level="a" type="main">OpenIMAJ and ImageTerrier: Java libraries and tools for scalable multimedia analysis and indexing of images</title>
		<author>
			<persName><forename type="first">J</forename><forename type="middle">S</forename><surname>Hare</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Samangooei</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><forename type="middle">P</forename><surname>Dupplaw</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">ACM MM&apos;11</title>
				<imprint>
			<publisher>ACM</publisher>
			<date type="published" when="2011">2011</date>
			<biblScope unit="page" from="691" to="694" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b3">
	<analytic>
		<title level="a" type="main">Twitter&apos;s visual pulse</title>
		<author>
			<persName><forename type="first">J</forename><forename type="middle">S</forename><surname>Hare</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Samangooei</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><forename type="middle">P</forename><surname>Dupplaw</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><forename type="middle">H</forename><surname>Lewis</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">ICMR&apos;13</title>
				<meeting><address><addrLine>New York, NY, USA</addrLine></address></meeting>
		<imprint>
			<publisher>ACM</publisher>
			<date type="published" when="2013">2013</date>
			<biblScope unit="page" from="297" to="298" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b4">
	<monogr>
		<title level="m" type="main">Retrieving diverse social images at mediaeval 2013: Objectives, dataset and evaluation</title>
		<author>
			<persName><forename type="first">B</forename><surname>Ionescu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Menéndez</surname></persName>
		</author>
		<author>
			<persName><forename type="first">H</forename><surname>Müller</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Popescu</surname></persName>
		</author>
		<editor>MediaEval</editor>
		<imprint>
			<date type="published" when="2013">2013</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b5">
	<monogr>
		<title level="m">Workshop</title>
				<meeting><address><addrLine>Barcelona, Spain</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2013">October 18-19 2013</date>
		</imprint>
	</monogr>
</biblStruct>

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