<?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">Graph Retrieval with the Suffix Tree Model</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author>
							<persName><forename type="first">Mathias</forename><surname>Lux</surname></persName>
						</author>
						<author>
							<persName><forename type="first">Sven</forename><surname>Meyer Zu Eissen</surname></persName>
						</author>
						<author>
							<persName><forename type="first">Michael</forename><surname>Granitzer</surname></persName>
						</author>
						<title level="a" type="main">Graph Retrieval with the Suffix Tree Model</title>
					</analytic>
					<monogr>
						<imprint>
							<date/>
						</imprint>
					</monogr>
					<idno type="MD5">5B3F56FF5BF2D3E38A68549D43425E87</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2023-03-25T02:15+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 paper in hand presents an adoption of the suffix tree model for the retrieval of labeled graphs. The suffix tree model encodes path information of graphs in an efficient way and so reduces the size of the data structures compared to path index based approaches, while offering a better runtime performance than subgraph isomorphism based methods. Within a specific use case we evaluate the correlation of the developed method to human judgement and compare the correlation values to other methods. We show that in our use case, which is the retrieval of digital photos annotated with MPEG-7 using the MPEG-7 Semantic Description Scheme, the presented algorithm performs better than other methods.</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>Let G = V, E be a graph, where V denotes the node set and E ⊆ V × V denotes the edge set. Given a query graph Gq and a graph set G, graph retrieval deals with the task to identify a subset R ⊆ G with the property ∀G ∈ R : ϕ(Gq, G) ≥ t where ϕ : G × G → R denotes a similarity function and t ∈ R is a minimum similarity threshold.</p><p>The research question how to search similar graphs in a database was already prescribed in a work by <ref type="bibr" target="#b12">Simmons in 1966</ref> (see <ref type="bibr" target="#b12">[13]</ref>), in which he matched conceptual graphs. Since then, different applications areas emerged; they include querying chemical graph databases that store molecular structures, retrieving vector and raster images using characteristics encoded in a graph, and recently, searching in semantically enriched data in the context of semantic Web applications.</p><p>Our application scenario relates to multimedia retrieval with the MPEG-7 standard, where metadata are represented as graphs: A user formulates his or her information need in the form of a graph, which is then matched against an MPEG-7 graph database G.</p><p>A property of MPEG-7 graphs is that their nodes and edges are labeled with text, say, for each G ∈ G there exists a function lE : E → TE as well as lV : V → TV , where TE, TV are term sets. The goal is to retrieve graphs that match both, the query graph's structure as well as the labels. The challenges in this connection are twofold:</p><p>1. The statement of a similarity function ϕ that reflects the application scenario, and 2. The operationalization of the retrieval functionality.</p><p>The second challenge restricts the flexibility in formulating a similarity function: ϕ must not be expensive to evaluate in terms of runtime complexity since in our case a user waits actively for retrieval results.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2">RELATED WORK</head><p>Although maximum common subgraph isomorphism is a natural starting point for graph similarity computation (see <ref type="bibr" target="#b2">[3]</ref>), it cannot be applied to our scenario: First, the question if two graphs G and H contain an isomorphic subgraph whose edge set has more than k ∈ N elements is NP-complete (see <ref type="bibr" target="#b5">[6]</ref>). Second, quantifying similarity using ratios of subgraph edge set sizes solely may not reflect our problem, since edge label matches can be of different importance, depending on the value of an edge label.</p><p>For this and similar reasons, graph retrieval algorithms are tailored to the requirements of the underlying use case. For example, Fonseca et al. used graph invariants of trees-in this specific case the eigenvalues of the tree's and subtree's adjacency matrix-to identify relevant cliparts represented as trees, representing adjacency and inclusion of color areas within the cliparts, in a database (see <ref type="bibr" target="#b4">[5]</ref>, <ref type="bibr" target="#b11">[12]</ref>).</p><p>Zong et al. (see <ref type="bibr" target="#b17">[18]</ref>) retrieved labeled graphs using an index in which the labels of paths up to a certain length were stored. The relevance between a query graph and a graph from the database was computed from a TF*IDF-like similarity measure that was applied to the edge labels.</p><p>Berreti et al. (see <ref type="bibr" target="#b1">[2]</ref>) extracted information on neighbouring colour regions from raster images, which was encoded in directed labeled graphs. To retrieve similar images a graph database was queried employing a tailored metric, which proved as slow but highly configurable.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.1">Contribution</head><p>Text retrieval methods based on the vector space model, especially those using inverted lists as described in <ref type="bibr" target="#b0">[1]</ref>, have been applied to graph retrieval before: A graph's labels form a virtual document; likewise, the query graph's labels are used to construct a query document. The similarity between these documents is computed using the vector space model along with standard similarity measures like TF*IDF or BM-25.</p><p>Unlike traditional vector space approaches our proposed method employs the suffix tree model, described in <ref type="bibr" target="#b7">[8]</ref>. Its advantage is that similarity computations incorporate word order within sentences and text fragments. Applied to the outlined MPEG-7 retrieval scenario, this property is especially useful when matching labels in a graph's paths, yielding to better similarity values like the respective experiments show.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3">APPLICATION SCENARIOS</head><p>The specification of semantics often follows a graph modeling approach; the pioneering work of Sowa (see <ref type="bibr" target="#b13">[14]</ref>) is one of many examples. Similarity search in this and related contexts reduces to graph retrieval.</p><p>Currently a trend towards a semantically enriched Web can be noted. This movement started with the vision of a semantic Web by Berners-Lee (see e.g. foreword in <ref type="bibr" target="#b3">[4]</ref>) and resulted in the definition of a syntax for semantics, formally defined in an ontology language based on the Resource Description Framework (RDF), which uses a model based on directed labeled graphs.</p><p>Another initiative, aimed at an interoperable standards for multimedia data, is the Moving Picture Expert Group, in short MPEG. Within their Multimedia Content Description Interface, short name MPEG-7, they defined a way to semantically describe the contents of multimedia files by interconnecting semantic objects (e.g. agents, places, and so on) by typed semantic relations (see <ref type="bibr" target="#b6">[7]</ref> for more details), which again results in directed labeled graphs that encode semantics.</p><p>All of the above mentioned scenarios model semantics with directed labeled graphs. While the same edge label can be used more than once within a graph, we assume that node labels are unique within a graph as defined in MPEG-7, RDF and conceptual graphs.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4">APPLYING THE SUFFIX TREE MODEL TO GRAPH RETRIEVAL</head><p>Information retrieval methods that have been used in the past for graph retrieval have in common that they transform database graphs Gi ∈ G as well as query graphs Gq to documents di and dq, respectively, which are then compared using their vector space model representations in combination with a related similarity measure like the cosine similarity. Here, the documents consist of sentences, which are made up of node and edge label concatenations from paths in the corresponding graphs. This methodology raises two questions:</p><p>1. Which paths of a graph should be used for the construction of di and dq? 2. Which retrieval methodology should be chosen for query matching?</p><p>With respect to point (1), some heuristics have been proposed. One prominent method is discussed in connection with GraphGrep (see <ref type="bibr" target="#b10">[11]</ref>). The paths of a graph are extracted either by identifying all paths in a graph up to a certain length, e.g. with a depth first or breadth first search starting from each vertex (see e.g. <ref type="bibr" target="#b14">[15]</ref>), or by identifying frequent substructures within the graphs (see e.g. <ref type="bibr" target="#b16">[17]</ref> or <ref type="bibr" target="#b15">[16]</ref>).</p><p>The focus of our research refers to point (2). Known graph retrieval methods that rely on the vector space model disregard term order or include only partial term order information when using n-grams for indexing. In the following, a similarity measure is presented that tackles the aforementioned problem; it compiles full path label order information into the similarity values while keeping the computational complexity bounded by a linear function. In this connection, knowledge about suffix trees is necessary prerequisite; some details are summarized in the next section.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4.1">Suffix Trees</head><p>The ith suffix of a document d = w1 . . . wm is the substring of d that starts with word wi. A suffix tree of d is a labeled tree that contains each suffix of d along a path whose edges are labeled with the respective words. The construction of a suffix tree is straightforward: The ith suffix of d is inserted by checking whether some edge emanating from the root node is labeled with wi. If so, this edge is traversed and it is checked whether some edge of the successor node is labeled with wi+1, and so on. If, in some depth k, a node n without a matching edge is reached, a new node is created and linked to node n with an edge labeled with w i+k .</p><p>Figure <ref type="figure" target="#fig_0">1</ref> illustrates a the suffix tree in which the documents d1 ="Boy plays chess" and d2 ="Boy plays bridge too" have been inserted. </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4.2">Path-based Graph Suffix Trees</head><p>Let di denote the document that is associated with Gi, and likewise, let dq denote the document that is associated with Gq. Both, di and dq consist of "sentences", which are concatenations of path labels from selected paths from Gi and Gq, following a heuristic mentioned above.</p><p>A natural similarity measure between di and dq arises when inserting each suffix from each sentence of di and dq into an initially empty suffix tree GS = VS, ES . Let Ei ⊆ ES denote the set of the edges that have been traversed when all suffixes of di's sentences have been inserted into GS, and analogously, let Eq ⊆ ES denote the traversed edge set for all sentences' suffixes from dq. The similarity between di and dq can be measured by how many edges Ei and Eq have in common, e.g. quantified by the Jaccard coefficient:</p><formula xml:id="formula_0">ϕS (Gi, Gq) = | Ei ∩ Eq | | Ei ∪ Eq |</formula><p>Furthermore in <ref type="bibr" target="#b7">[8]</ref> two more weighting schemes using term frequency and inverse document frequency of edges, are described to enhance relevance and precision. For similarity calculation of graphs such a weighting can be applied.</p><p>In addition to the two original weighting schemes a third scheme relying solely on IDF can be introduced. Stripping the term frequency from the original weighting formula, a similarity measure can be defined as follows:</p><formula xml:id="formula_1">ϕ idf (Gi, Gq) = 1 | ES | e∈E S traversed(e) • IDF (e)</formula><p>with traversed (e) = 0 e / ∈ Ei ∩ Eq 1 e ∈ Ei ∩ Eq Here, IDF : E → R is defined to be the inverse document frequency function, IDF (e) = log( n S(e) ), with n being the total number of documents and S : E → N denoting the function that delivers the number of distinct documents that traversed a given edge on insertion into the suffix tree.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="5">EVALUATION</head><p>Although the presented suffix tree model for graphs can be applied to arbitrary graphs with node and edge labels, the evaluation was done within a multimedia retrieval scenario: Using MPEG-7, the Multimedia Content Description Interface, multimedia documents can be annotated using graphs expressing the semantics of the multimedia document. This particular functionality of MPEG-7 is defined in the Semantic Description Scheme (see <ref type="bibr" target="#b6">[7]</ref> for details on MPEG-7). Within this scenario two graphs, like the one shown in figure 2, can be compared and a similarity value can be obtained. Based on the used mechanism for similarity calculation different results are achieved. Our evaluation aims to identify the most semantic method (in terms of human judgement) for similarity calculation of MPEG-7 based annotations.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Mathias</head><p>To evaluate the semantics of candidate similarity measure a test set of 96 manually annotated digital photos was used. In essence for all photos a labeled directed graph exists, which describes the semantics of the image by specifying persons, time points, locations and events as nodes and interconnecting these nodes by labeled edges, like shown in figure <ref type="figure" target="#fig_1">2</ref>. The graphs have a median number of nodes of 5.81, with a medium number of 5.99 edges. From this test data set 20 photo pairs were identified, which were used to create a questionnaire. The participants of the evaluation were asked to rate the pairwise similarity of the photos. The averaged similarity from the participants answers was correlated to the results of the candidate similarity measures.</p><p>After initial evaluations of 18 and 15 participants a final evaluation with 112 participants was carried out. The results  of the evaluation of the suffix tree model based metrics is shown in figure <ref type="figure" target="#fig_3">3</ref>. With each weighting scheme three different strategies for building the tree are evaluated: A first approach is to build the tree without taking the edge labels into account (shown as option no relations in figure <ref type="figure" target="#fig_3">3</ref>), so only the sequence of node labels is inserted into the tree. A second approach is to normalize all relation labels without taking their directions into account (shown as option undirected r. in figure <ref type="figure" target="#fig_3">3</ref>). This can be done by ignoring all direction information on edges. The third option is to use the full paths including node and edge labels (shown as option full r. in figure <ref type="figure" target="#fig_3">3</ref>).</p><p>As can be seen easily the suffix tree model cannot provide an optimal approximation of human judgement with any of the presented weighting schemes. With no weighting schema a rounded maximum correlation value of 0.689 can be achieved. With the term frequency weighting, which was proposed in the original publications the correlation value even gets worse. The inverse document frequency (IDF) weighting proposed in this publication offers the best correlation with a maximum value of 0.791 taking all node and edge information (labels and direction) into account.</p><p>Besides the above introduced suffix tree similarity measure for graphs following similarity measures from text and graph retrieval were compared to human judgement:</p><p>1. Vector space based on node and edge labels, cosine coefficient as similarity measure with following weighting schemes. This metric does not take the structure of the graph into account, the set of labels is treated as text document:</p><p>(a) without weighting scheme (Text VS in fig. <ref type="figure" target="#fig_6">4</ref>) (b) TF*IDF (Text VS TF*IDF in fig. <ref type="figure" target="#fig_6">4</ref>) (c) BM25 (Text VS BM25 in fig. <ref type="figure" target="#fig_6">4</ref>, see <ref type="bibr" target="#b8">[9]</ref> and <ref type="bibr" target="#b9">[10]</ref> for details on BM25)</p><p>2. Vector space with graph paths as terms, cosine coefficient as similarity measure with following weighting schemes: 4) 4. Error correcting subgraph isomorphism metric from <ref type="bibr" target="#b1">[2]</ref> with boolean edge label distance functions and two options for used node label distance functions:  The evaluation results in figure <ref type="figure" target="#fig_6">4</ref> show that the suffix tree model with proposed inverse document frequency weighting offers the best correlation to human judgement in the presented domain. However the VS BM25 Triple metric offers a nearly as high correlation value. The two variants of the error correcting subgraph isomorphism metric of <ref type="bibr" target="#b1">[2]</ref> do not perform as good as the other candidates. All evaluated text based similarity and distance measures, which do not take the structure in to account, do not correlate well with human judgement.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="6">CONCLUSION</head><p>As can be seen easily from the evaluation similarity measures, which take the structure information of the graphs into account, are superior to the tested text retrieval mechanisms, which use node and edge labels for retrieval. The suffix tree method has a slightly better correlation coefficient and therefore reflects human judgement better than the other methods. However the difference to the vector space method is marginal, which justifies for example the usage of an path index for graph retrieval. One possible explanation why the triple based VS approach performs that good is that in the inspected domain all node labels are unique within a single graph.</p><p>The most interesting point is, that methods adapted from text retrieval perform better than the evaluated methods developed for graphs, like MCS and the algorithm of Berretti et al. described in <ref type="bibr" target="#b1">[2]</ref> on the used test data set. However the number of photos in the set is too small for general conclusions, but as no test data sets for semantic annotations currently exist, the creation of semantic annotations for multimedia documents is a laborous task and the usefulness of random graphs for evaluation is limited in this domain, an evaluation with a bigger data set was out of scope of the project. Nevertheless the presented evaluation provides a starting point for further investigations.</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. A suffix tree in which the documents d 1 ="Boy plays chess" and d 2 ="Boy plays bridge have been inserted.</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_1"><head>Figure 2 .</head><label>2</label><figDesc>Figure 2. Illustration of an MPEG-7 based annotation expressing that Mathias is talking to Sven and Michael in Graz.</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_3"><head>Figure 3 .</head><label>3</label><figDesc>Figure 3. Evaluation of the Suffix Tree Metric in correlation to human judgement</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_4"><head></head><label></label><figDesc>(a) TF*IDF on paths with one arc (VS IDF Triple in fig. 4) and full length paths (VS IDF Paths in fig. 4) (b) BM25 on paths with one arc (VS BM25 Triple in fig. 4) and full length paths (VS BM25 Paths in fig. 4) 3. Maximum common subgraph metric from [3] (MCS in fig.</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_5"><head>( a )</head><label>a</label><figDesc>Boolean distance function (Berretti (Bool) in fig. 4) (b) Term vector distance function (Berretti (VS) in fig. 4)</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_6"><head>Figure 4 .</head><label>4</label><figDesc>Figure 4. Evaluation of different distance functions and metrics using the correlation to human judgement</figDesc></figure>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="1" xml:id="foot_0">University of Technology Graz, Knowledge Management Institute, Austria, email: mathias.lux@tugraz.at</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="2" xml:id="foot_1"><ref type="bibr" target="#b1">2</ref> Bauhaus University Weimar, Germany, email: sven.meyer-zueissen@medien.uni-weimar</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="3" xml:id="foot_2">.de 3 Know-Center Graz, Austria, email: mgrani@know-center.at</note>
		</body>
		<back>

			<div type="acknowledgement">
<div xmlns="http://www.tei-c.org/ns/1.0"><head>ACKNOWLEDGEMENTS</head><p>The Know-Center is funded by the Austrian Competence Center program K plus under the auspices of the Austrian Ministry of Transport, Innovation and Technology (http://www.ffg.at/index.php?cid=95) and by the State of Styria.</p></div>
			</div>

			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<monogr>
		<title level="m" type="main">Modern Information Retrieval</title>
		<author>
			<persName><forename type="first">Ricardo</forename><forename type="middle">A</forename><surname>Baeza-Yates</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Berthier</forename><surname>Ribeiro-Neto</surname></persName>
		</author>
		<imprint>
			<date type="published" when="1999">1999</date>
			<publisher>Addison-Wesley Longman Publishing Co., Inc</publisher>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b1">
	<analytic>
		<title level="a" type="main">A graph edit distance based on node merging</title>
		<author>
			<persName><forename type="first">S</forename><surname>Berretti</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Del</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Bimbo</surname></persName>
		</author>
		<author>
			<persName><surname>Pala</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Image and Video Retrieval: Third International Conference</title>
				<meeting><address><addrLine>CIVR; Dublin, Ireland</addrLine></address></meeting>
		<imprint>
			<publisher>Springer</publisher>
			<date type="published" when="2004-07-21">2004. July 21-23 2004</date>
			<biblScope unit="volume">3115</biblScope>
			<biblScope unit="page" from="464" to="472" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b2">
	<analytic>
		<title level="a" type="main">A graph distance metric based on the maximal common subgraph</title>
		<author>
			<persName><forename type="first">Horst</forename><surname>Bunke</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Kim</forename><surname>Shearer</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Pattern Recognition Letters</title>
		<imprint>
			<biblScope unit="volume">19</biblScope>
			<biblScope unit="issue">3-4</biblScope>
			<biblScope unit="page" from="255" to="259" />
			<date type="published" when="1998">1998</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b3">
	<monogr>
		<title level="m" type="main">Spinning the Semantic Web Bringing the World Wide Web to Its Full Potential</title>
		<author>
			<persName><forename type="first">Dieter</forename><surname>Fensel</surname></persName>
		</author>
		<author>
			<persName><forename type="first">James</forename><forename type="middle">A</forename><surname>Hendler</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Henry</forename><surname>Lieberman</surname></persName>
		</author>
		<imprint>
			<date type="published" when="2005">2005</date>
			<publisher>MIT Press</publisher>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b4">
	<analytic>
		<title level="a" type="main">Retrieving clipart images by content</title>
		<author>
			<persName><forename type="first">J</forename><surname>Manuel</surname></persName>
		</author>
		<author>
			<persName><forename type="first">B</forename><surname>Fonseca</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Joaquim</forename><forename type="middle">A</forename><surname>Barroso</surname></persName>
		</author>
		<author>
			<persName><surname>Jorge</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Image and Video Retrieval: Third International Conference</title>
				<meeting><address><addrLine>Dublin, Ireland</addrLine></address></meeting>
		<imprint>
			<publisher>Springer</publisher>
			<date type="published" when="2004">July 21-23 2004</date>
			<biblScope unit="volume">3115</biblScope>
			<biblScope unit="page" from="500" to="507" />
		</imprint>
	</monogr>
	<note>CIVR 2004</note>
</biblStruct>

<biblStruct xml:id="b5">
	<monogr>
		<author>
			<persName><forename type="first">Michael</forename><forename type="middle">R</forename><surname>Garey</surname></persName>
		</author>
		<author>
			<persName><forename type="first">David</forename><forename type="middle">S</forename><surname>Johnson</surname></persName>
		</author>
		<title level="m">Computers and Intractability</title>
				<meeting><address><addrLine>New York</addrLine></address></meeting>
		<imprint>
			<publisher>W.H. Freeman and Company</publisher>
			<date type="published" when="1979">1979</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b6">
	<monogr>
		<author>
			<persName><forename type="first">Harald</forename><surname>Kosch</surname></persName>
		</author>
		<title level="m">Distributed Multimedia Database Technologies</title>
				<imprint>
			<publisher>CRC Press</publisher>
			<date type="published" when="2003-11">Nov. 2003</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b7">
	<analytic>
		<title level="a" type="main">The suffix tree document model revisited</title>
		<author>
			<persName><forename type="first">Sven</forename><surname>Meyer Zu Eissen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Benno</forename><surname>Stein</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Martin</forename><surname>Potthast</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the I-Know &apos;05 5th International Conference on Knowledge Management</title>
				<meeting>the I-Know &apos;05 5th International Conference on Knowledge Management<address><addrLine>Graz, Austria</addrLine></address></meeting>
		<imprint>
			<publisher>J.UCS</publisher>
			<date type="published" when="2005-07">July 2005</date>
			<biblScope unit="page" from="596" to="603" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b8">
	<analytic>
		<title level="a" type="main">Some simple effective approximations to the 2-poisson model for probabilistic weighted retrieval</title>
		<author>
			<persName><forename type="first">S</forename><forename type="middle">E</forename><surname>Robertson</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Walker</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">SIGIR &apos;94: Proceedings of the 17th annual international ACM SIGIR conference on Research and development in information retrieval</title>
				<meeting><address><addrLine>New York, NY, USA</addrLine></address></meeting>
		<imprint>
			<publisher>Springer-Verlag New York, Inc</publisher>
			<date type="published" when="1994">1994</date>
			<biblScope unit="page" from="232" to="241" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b9">
	<analytic>
		<title level="a" type="main">Simple bm25 extension to multiple weighted fields</title>
		<author>
			<persName><forename type="first">Stephen</forename><surname>Robertson</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Hugo</forename><surname>Zaragoza</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Michael</forename><surname>Taylor</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">CIKM &apos;04: Proceedings of the thirteenth ACM international conference on Information and knowledge management</title>
				<meeting><address><addrLine>New York, NY, USA</addrLine></address></meeting>
		<imprint>
			<publisher>ACM Press</publisher>
			<date type="published" when="2004">2004</date>
			<biblScope unit="page" from="42" to="49" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b10">
	<analytic>
		<title level="a" type="main">Algorithmics and applications of tree and graph searching</title>
		<author>
			<persName><forename type="first">Dennis</forename><surname>Shasha</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Jason</forename><forename type="middle">T L</forename><surname>Wang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Rosalba</forename><surname>Giugno</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the twenty-first ACM SIGMOD-SIGACT-SIGART symposium on Principles of database systems</title>
				<meeting>the twenty-first ACM SIGMOD-SIGACT-SIGART symposium on Principles of database systems</meeting>
		<imprint>
			<publisher>ACM Press</publisher>
			<date type="published" when="2002">2002</date>
			<biblScope unit="page" from="39" to="52" />
		</imprint>
	</monogr>
	<note>PODS &apos;02</note>
</biblStruct>

<biblStruct xml:id="b11">
	<analytic>
		<title level="a" type="main">Indexing using a spectral encoding of topological structure</title>
		<author>
			<persName><forename type="first">Ali</forename><surname>Shokoufandeh</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Sven</forename><forename type="middle">J</forename><surname>Dickinson</surname></persName>
		</author>
		<author>
			<persName><forename type="first">K</forename><surname>Siddiqi</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><forename type="middle">W</forename><surname>Zucker</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Conference on Computer Vision and Pattern Recognition, IEEE Computer Society</title>
				<meeting><address><addrLine>USA</addrLine></address></meeting>
		<imprint>
			<date type="published" when="1999-06">June 1999</date>
			<biblScope unit="volume">2</biblScope>
			<biblScope unit="page" from="491" to="497" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b12">
	<analytic>
		<title level="a" type="main">Storage and retrieval of aspects of meaning in directed graph structures</title>
		<author>
			<persName><forename type="first">R</forename><forename type="middle">F</forename><surname>Simmons</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Commun. ACM</title>
		<imprint>
			<biblScope unit="volume">9</biblScope>
			<biblScope unit="issue">3</biblScope>
			<biblScope unit="page" from="211" to="215" />
			<date type="published" when="1966">1966</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b13">
	<analytic>
		<title level="a" type="main">Semantics of conceptual graphs</title>
		<author>
			<persName><forename type="first">John</forename><forename type="middle">F</forename><surname>Sowa</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 17th annual meeting on Association for Computational Linguistics</title>
				<meeting>the 17th annual meeting on Association for Computational Linguistics<address><addrLine>Morristown, NJ, USA</addrLine></address></meeting>
		<imprint>
			<date type="published" when="1979">1979</date>
			<biblScope unit="page" from="39" to="44" />
		</imprint>
	</monogr>
	<note>Association for Computational Linguistics</note>
</biblStruct>

<biblStruct xml:id="b14">
	<monogr>
		<title level="m" type="main">Algorithms on Trees and Graphs</title>
		<author>
			<persName><forename type="first">Gabriel</forename><surname>Valiente</surname></persName>
		</author>
		<imprint>
			<date type="published" when="2002-09">September 2002</date>
			<publisher>Springer</publisher>
			<pubPlace>Berlin, Germany</pubPlace>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b15">
	<analytic>
		<title level="a" type="main">State of the art of graph-based data mining</title>
		<author>
			<persName><forename type="first">Takashi</forename><surname>Washio</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Hiroshi</forename><surname>Motoda</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">SIGKDD Explor. Newsl</title>
		<imprint>
			<biblScope unit="volume">5</biblScope>
			<biblScope unit="issue">1</biblScope>
			<biblScope unit="page" from="59" to="68" />
			<date type="published" when="2003">2003</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b16">
	<analytic>
		<title level="a" type="main">Graph indexing: a frequent structure-based approach</title>
		<author>
			<persName><forename type="first">Xifeng</forename><surname>Yan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Philip</forename><forename type="middle">S</forename><surname>Yu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Jiawei</forename><surname>Han</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">SIGMOD &apos;04: Proceedings of the 2004 ACM SIGMOD international conference on Management of data</title>
				<imprint>
			<publisher>ACM Press</publisher>
			<date type="published" when="2004">2004</date>
			<biblScope unit="page" from="335" to="346" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b17">
	<analytic>
		<title level="a" type="main">Conceptual graph matching for semantic search</title>
		<author>
			<persName><forename type="first">Jiwei</forename><surname>Zhong</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Haiping</forename><surname>Zhu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Jianming</forename><surname>Li</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Yong</forename><surname>Yu</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">ICCS &apos;02: Proceedings of the 10th International Conference on Conceptual Structures</title>
				<meeting><address><addrLine>London, UK</addrLine></address></meeting>
		<imprint>
			<publisher>Springer-Verlag</publisher>
			<date type="published" when="2002">2002</date>
			<biblScope unit="page" from="92" to="196" />
		</imprint>
	</monogr>
</biblStruct>

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