<?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">Towards Multi-Facet Snippets for Dataset Search</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author>
							<persName><forename type="first">Xiaxia</forename><surname>Wang</surname></persName>
							<email>xxwang@smail.nju.edu.cn</email>
							<affiliation key="aff0">
								<orgName type="laboratory">National Key Laboratory for Novel Software Technology</orgName>
								<orgName type="institution">Nanjing University</orgName>
								<address>
									<country key="CN">China</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Evgeny</forename><surname>Kharlamov</surname></persName>
							<email>evgeny.kharlamov@ifi.uio.no</email>
							<affiliation key="aff0">
								<orgName type="laboratory">National Key Laboratory for Novel Software Technology</orgName>
								<orgName type="institution">Nanjing University</orgName>
								<address>
									<country key="CN">China</country>
								</address>
							</affiliation>
							<affiliation key="aff1">
								<orgName type="department">Department of Informatics</orgName>
								<orgName type="institution">University of Oslo</orgName>
								<address>
									<country key="NO">Norway</country>
								</address>
							</affiliation>
							<affiliation key="aff2">
								<orgName type="department">Bosch Center for Artificial Intelligence</orgName>
								<address>
									<settlement>Renningen</settlement>
									<country key="DE">Germany</country>
								</address>
							</affiliation>
						</author>
						<title level="a" type="main">Towards Multi-Facet Snippets for Dataset Search</title>
					</analytic>
					<monogr>
						<imprint>
							<date/>
						</imprint>
					</monogr>
					<idno type="MD5">2F6E92A3DEF0952EAB6B589681061511</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2023-03-25T06:49+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>Due to a recent significant increase in the number of RDF datasets available on the Web, there is a pressing need in effective search techniques for finding the right data on demand. A promising approach is to present retrieved datasets as snippets that aim at concisely explaining to the user why this dataset fulfils their demand. Snippets in particular can illustrate the main content of the dataset and explain its relevance to the user's query. Computing optimal snippets is a non-trivial task and a number of approaches have emerged to address this problem. In this short paper, we report our ongoing work on snippets that address multiple facets of optimality. Based on our recently proposed evaluation metrics for dataset snippets, we formulate a weighted maximum coverage problem which directly optimizes three evaluation metrics. We solve the problem with a greedy algorithm, and our current implementation has outperformed four baseline 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>The open data movement brings increasingly many datasets to the Web, many of which are in the RDF format. Reusing these datasets is of great importance to researchers and developers. In order to enable the reuse there is a pressing need in effective search techniques for finding the right data on demand. A promising approach is to query for datasets with keywords as in Google Dataset Search <ref type="bibr" target="#b0">[1]</ref> and to present each retrieved RDF dataset as a snippet, its small representative subset <ref type="bibr" target="#b1">[2]</ref>. Dataset snippets aim at concisely explaining to the user why this dataset fulfils their demand and in particular can illustrate the main content of the dataset and explain its relevance to the user's query.</p><p>Computing optimal snippets is a non-trivial task and a number of approaches have emerged to address this or related problems <ref type="bibr" target="#b1">[2]</ref><ref type="bibr" target="#b2">[3]</ref><ref type="bibr" target="#b3">[4]</ref><ref type="bibr" target="#b4">[5]</ref><ref type="bibr" target="#b5">[6]</ref>. In <ref type="bibr" target="#b6">[7]</ref>, we presented four metrics for evaluating the quality of a dataset snippet. In this short paper, we report our ongoing work on snippets that address multiple facets of optimality. In particular, in order to improve the quality of a snippet for dataset search, we formulate the selection of RDF triples as a combinatorial optimization problem that directly optimizes three evaluation metrics proposed in <ref type="bibr" target="#b6">[7]</ref>. A dataset snippet generated by our approach, which we refer to as KSD, is expected to have a good coverage of the query Keywords and the content of the dataset at both the Schema and the Data level. We solve the problem with a greedy algorithm, and our evaluation demonstrates that KSD outperforms the baselines reported in <ref type="bibr" target="#b6">[7]</ref> and that there is still a considerable room for quality improvement.</p><p>The remainder of this paper is structured as follows. Section 2 defines the problem and reviews the evaluation metrics proposed in <ref type="bibr" target="#b6">[7]</ref>. Section 3 describes the implementation of KSD. Section 4 presents evaluation results. Section 5 concludes the paper with future work.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2">Preliminaries</head></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.1">Problem Statement</head><p>An RDF dataset is a set of RDF triples denoted by T = {t 1 , t </p><formula xml:id="formula_0">Q = {q 1 , q 2 , • • • , q m }.</formula><p>Given a dataset T , a keyword query Q, and a positive integer k as the size bound, a dataset snippet is an optimum subset of triples selected from T , denoted by S ⊆ T , satisfying |S| ≤ k. We will give our definition of optimality in Section 3.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.2">Evaluation Metrics</head><p>We briefly review the four metrics proposed in <ref type="bibr" target="#b6">[7]</ref> for evaluating the quality of a dataset snippet S: coKyw, coCnx, coSkm, and coDat, all in the range of [0, 1].</p><p>Coverage of Query Keywords (coKyw). A resource r covers a keyword q if r's textual form (e.g., rdfs:label of an IRI or blank node, lexical form of a literal) contains a keyword match for q. A triple t covers a keyword q, denoted by t ≺ q, if r covers q for any r ∈ {t s , t p , t o }. For a snippet S, the coKyw metric evaluates its coverage of query keywords:</p><formula xml:id="formula_1">coKyw(S) = 1 |Q| • |{q ∈ Q : ∃t ∈ S, t ≺ q}| .<label>(1)</label></formula><p>Coverage of Connections between Query Keywords (coCnx). A snippet S covers the connection between two keywords q i , q j ∈ Q, denoted by S ≺ (q i , q j ), if there is a path in the RDF graph representation of S that connects two resources: one covering q i and the other covering q j . For S, the coCnx metric evaluates its coverage of connections between query keywords:</p><formula xml:id="formula_2">coCnx(S) = 1 ( |Q| 2 ) • |{{q i , q j } ⊆ Q : q i = q j and S ≺ (q i , q j )}| if |Q| &gt; 1 , coKyw(S) if |Q| = 1 .</formula><p>(</p><formula xml:id="formula_3">)<label>2</label></formula><p>When there is only one keyword, coCnx is meaningless and we set it to coKyw. Coverage of Data Schema (coSkm). Consider the RDF schema of a dataset. The relative frequency of a class c observed in a dataset T is</p><formula xml:id="formula_4">frqCls(c) = |{t ∈ T : t p = rdf:type and t o = c}| |{t ∈ T : t p = rdf:type}| .<label>(3)</label></formula><p>Analogously, the relative frequency of a property p observed in T is</p><formula xml:id="formula_5">frqPrp(p) = |{t ∈ T : t p = p}| |T | . (<label>4</label></formula><formula xml:id="formula_6">)</formula><p>For a snippet S, its coverage of the schema of T is the harmonic mean (hm) of the total relative frequency of the classes and properties it contains:</p><formula xml:id="formula_7">coSkm(S) = hm( c∈Cls(S) frqCls(c), p∈Prp(S) frqPrp(p)) ,<label>(5)</label></formula><p>where Cls(S) is the set of classes instantiated in S and Prp(S) is the set of properties instantiated in S.</p><p>Coverage of Data (coDat). Central entities represent the key content of a dataset. Let d + (e) and d − (e) be the out-degree and in-degree of an entity e in the RDF graph representation of a dataset T , respectively. For a snippet S, its coverage of the entities in T is the harmonic mean (hm) of the mean normalized out-degree and in-degree of the entities it contains: ) ,</p><p>where Ent(X) is the set of entities that appear in a set of triples X.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3">Approach</head><p>Given the evaluation metrics presented in Section 2.2, a straightforward idea is to formulate the selection of RDF triples as a combinatorial optimization problem, and directly optimize these evaluation metrics. Our current work considers three metrics: coKyw, coSkm, and coDat, leaving coCnx as future work. The three selected metrics all require a snippet to cover some elements: query keywords in coKyw, classes and properties in coSkm, and entities in coDat. Furthermore, the classes, properties, and entities to cover are with different weights. It inspires us to formulate an instance of the weighted maximum coverage problem. We formalize this idea in Section 3.1, and present a solution in Section 3.2.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Algorithm 1 Greedy Algorithm</head><p>Input: A dataset T , a keyword query Q, and a size bound k Output: An optimum dataset snippet S ⊆ T 1: S ← ∅; 2: while |S| &lt; k do 3: t * ← argmax t∈(T \S) (q(S ∪ {t}) − q(S)); 4:</p><p>S ← S ∪ {t * }; 5: end while 6: return S;</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.1">Snippet Generation as Weighted Maximum Coverage</head><p>Weighted Maximum Coverage. Given a collection of sets, a weighted maximum coverage (WMC) problem is to select a limited number of sets from the collection such that the total weight of the covered elements is maximized.</p><p>Snippet Generation as WMC. We formulate the generation of an optimum dataset snippet as an instance of the WMC problem. Each RDF triple t i ∈ T corresponds to a set denoted by cov(t i ) which consists of: the query keywords covered by t i , the class instantiated in t i , the property instantiated in t i , and the entities that appear in t i . The universe of elements is denoted by</p><formula xml:id="formula_9">Ω = Q ∪ Cls(T ) ∪ Prp(T ) ∪ Ent(T ) .<label>(7)</label></formula><p>Each element x ∈ Ω has a non-negative weight:</p><formula xml:id="formula_10">w(x) =            α • 1 |Q| x ∈ Q , β • frqCls(x) x ∈ Cls(T ) , β • frqPrp(x) x ∈ Prp(T ) , γ • ( log(d + (x)+1) e∈Ent(T ) log(d + (e)+1) + log(d − (x)+1) e∈Ent(T ) log(d − (e)+1) ) x ∈ Ent(T ) ,<label>(8)</label></formula><p>In our experiments, we set α = 2, β = 1, γ = 1, to balance between the coverage of query keywords in coKyw (α), the coverage of classes and properties in coSkm (β), and the coverage of entities in coDat (γ) in our objective function.</p><p>An optimum dataset snippet S ⊆ T is one that maximizes q(S) =</p><formula xml:id="formula_11">x∈ t i ∈S cov(ti) w(x) , subject to |S| ≤ k , (<label>9</label></formula><formula xml:id="formula_12">)</formula><p>where k is a predefined size bound, and q(•) is the objective function.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.2">Solution</head><p>Algorithm 1 presents the greedy algorithm for the WMC problem which at each stage chooses a set that contains the maximum weight of uncovered elements. It achieves an approximation ratio of 1 − 1 e . Assuming q(S ∪ {t}) − q(S) is computed in O(1), the overall running time of a naive implementation of the algorithm is O(k • n), where n is the number of RDF triples in T . A more efficient implementation may use a priority queue to hold candidate triples, which is left as our future work.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4">Evaluation</head><p>Our evaluation reused the 387 query-dataset pairs in <ref type="bibr" target="#b6">[7]</ref> where datasets were collected from DataHub and queries included 42 real queries submitted to data.gov.uk and 345 artificial queries comprising i category names in DMOZ referred to as DMOZ-i for i = 1, 2, 3, 4. We compared our proposed KSD with four baseline methods evaluated in <ref type="bibr" target="#b6">[7]</ref>, namely IlluSnip <ref type="bibr" target="#b1">[2]</ref>, TA+C <ref type="bibr" target="#b4">[5]</ref>, PrunedDP++ <ref type="bibr" target="#b5">[6]</ref>, and CES <ref type="bibr" target="#b3">[4]</ref>. Following <ref type="bibr" target="#b6">[7]</ref>, we set k = 20, i.e., a snippet contained at most 20 triples.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4.1">Quality of Snippets</head><p>Table <ref type="table" target="#tab_1">1</ref> presents the average scores of the four evaluation metrics over all the query-dataset pairs. Compared with the baselines, KSD achieved the highest overall score of 0.6211. In particular, its coverage of schema (coSkm = 0.8651) and data (coDat = 0.4247) were at the top. Its coverage of query keywords (coKyw = 0.8352) was close to TA+C, PrunedDP++, and CES which are queryfocused methods. Therefore, KSD achieved a satisfying trade-off between these evaluation metrics. On the other hand, its coCnx score was not high because coCnx was not explicitly considered in our approach.</p><p>Table <ref type="table" target="#tab_2">2</ref> breaks down the scores of KSD into groups of query-dataset pairs. The scores on different groups were generally consistent with each other, demonstrating the robustness of our approach. One exception was the very high coCnx score on DMOZ-1, due to Eq. ( <ref type="formula" target="#formula_3">2</ref>) where coCnx = coKyw when |Q| = 1.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4.2">Running Time</head><p>We tested the running time of our approach on an Intel Core i7-8700K (3.70GHz) with 10GB memory for the JVM.</p><p>Among all the 387 query-dataset pairs, for 234 (60.47%) a dataset snippet was generated within 1 second, and for 341 (88.11%) one was generated within 10 seconds. The median time was 0.51 second, showing promising performance for practical use. In the worst case, it took 150 seconds to process a large dataset containing more than 2 million RDF triples. Future work would be needed to improve the performance of our implementation to handle large datasets.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="5">Conclusion and Future Work</head><p>In this ongoing work, we proposed KSD, a new approach to generating snippets for dataset search. By directly optimizing three evaluation metrics, KSD outperformed four baselines. It has established new state-of-the-art results for future work. We are working towards a full version of KSD which will also optimize coCnx. We will implement our approach in a prototype of a new dataset search engine, to help users conveniently judge the relevance of a retrieved dataset.</p><p>There are limitations in our work. First, the current version of KSD has considered three metrics but we exclude coCnx. The other three metrics are all about covering some elements with selected RDF triples, whereas coCnx is related to graph connectivity. The weighted maximum coverage problem seems not expressive enough to model coCnx. We will explore other possibilities. Second, although the running time of our current implementation is acceptable in most cases, its performance is not satisfying on large datasets. We will consider using priority queue and appropriate indexes to make the generation process faster.</p></div><figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_0"><head></head><label></label><figDesc>log(d + (e) + 1) max e ∈Ent(T ) log(d + (e ) + 1) , 1 |Ent(S)| • e∈Ent(S) log(d − (e) + 1) max e ∈Ent(T ) log(d − (e ) + 1)</figDesc></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>Average scores of different methods over all the query-dataset pairs.</figDesc><table><row><cell></cell><cell cols="2">coKyw coCnx coSkm coDat Average</cell><cell></cell><cell>coKyw coCnx coSkm coDat Average</cell></row><row><cell>IlluSnip</cell><cell cols="2">0.1000 0.0540 0.6820 0.3850 0.3053</cell><cell cols="2">data.gov.uk 0.7643 0.2882 0.8249 0.3870 0.5661</cell></row><row><cell>TA+C</cell><cell cols="2">0.9590 0.4703 0.0425 0.0915 0.3908</cell><cell>DMOZ-1</cell><cell>0.8977 0.7955 0.8873 0.4726 0.7633</cell></row><row><cell cols="2">PrunedDP++ 1</cell><cell>1 0.0898 0.2133 0.5758</cell><cell>DMOZ-2</cell><cell>0.8433 0.2444 0.8710 0.4569 0.6039</cell></row><row><cell>CES</cell><cell cols="2">0.9006 0.3926 0.3668 0.2684 0.4821</cell><cell>DMOZ-3</cell><cell>0.8395 0.2337 0.8693 0.4145 0.5893</cell></row><row><cell>KSD</cell><cell cols="2">0.8352 0.3595 0.8651 0.4247 0.6211</cell><cell>DMOZ-4</cell><cell>0.7936 0.1877 0.8521 0.3731 0.5516</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>Average scores of KSD over each group of query-dataset pairs.</figDesc><table /></figure>
		</body>
		<back>

			<div type="acknowledgement">
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Acknowledgements</head><p>This work was supported by the NSFC under Grant 61572247. Cheng was funded by the Six Talent Peaks Program of Jiangsu Province under Grant RJFW-011.</p></div>
			</div>

			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<analytic>
		<title level="a" type="main">Google dataset search: Building a search engine for datasets in an open web ecosystem</title>
		<author>
			<persName><forename type="first">D</forename><surname>Brickley</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Burgess</surname></persName>
		</author>
		<author>
			<persName><forename type="first">N</forename><forename type="middle">F</forename><surname>Noy</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">WWW</title>
		<imprint>
			<biblScope unit="page" from="1365" to="1375" />
			<date type="published" when="2019">2019. 2019</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b1">
	<analytic>
		<title level="a" type="main">Generating illustrative snippets for open data on the web</title>
		<author>
			<persName><forename type="first">G</forename><surname>Cheng</surname></persName>
		</author>
		<author>
			<persName><forename type="first">C</forename><surname>Jin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">W</forename><surname>Ding</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><surname>Xu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Qu</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">WSDM</title>
		<imprint>
			<biblScope unit="page" from="151" to="159" />
			<date type="published" when="2017">2017. 2017</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b2">
	<analytic>
		<title level="a" type="main">RDF dataset profiling -a survey of features, methods, vocabularies and applications</title>
		<author>
			<persName><forename type="first">M</forename><forename type="middle">B</forename><surname>Ellefi</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Z</forename><surname>Bellahsene</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><forename type="middle">G</forename><surname>Breslin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><surname>Demidova</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Dietze</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Szymanski</surname></persName>
		</author>
		<author>
			<persName><forename type="first">K</forename><surname>Todorov</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Semantic Web</title>
		<imprint>
			<biblScope unit="volume">9</biblScope>
			<biblScope unit="issue">5</biblScope>
			<biblScope unit="page" from="677" to="705" />
			<date type="published" when="2018">2018</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b3">
	<analytic>
		<title level="a" type="main">Unsupervised query-focused multi-document summarization using the cross entropy method</title>
		<author>
			<persName><forename type="first">G</forename><surname>Feigenblat</surname></persName>
		</author>
		<author>
			<persName><forename type="first">H</forename><surname>Roitman</surname></persName>
		</author>
		<author>
			<persName><forename type="first">O</forename><surname>Boni</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><surname>Konopnicki</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">SIGIR 2017</title>
				<imprint>
			<date type="published" when="2017">2017</date>
			<biblScope unit="page" from="961" to="964" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b4">
	<analytic>
		<title level="a" type="main">Incorporating compactness to generate termassociation view snippets for ontology search</title>
		<author>
			<persName><forename type="first">W</forename><surname>Ge</surname></persName>
		</author>
		<author>
			<persName><forename type="first">G</forename><surname>Cheng</surname></persName>
		</author>
		<author>
			<persName><forename type="first">H</forename><surname>Li</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Qu</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Inf. Process. Manage</title>
		<imprint>
			<biblScope unit="volume">49</biblScope>
			<biblScope unit="issue">2</biblScope>
			<biblScope unit="page" from="513" to="528" />
			<date type="published" when="2013">2013</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b5">
	<analytic>
		<title level="a" type="main">Efficient and progressive group steiner tree search</title>
		<author>
			<persName><forename type="first">R</forename><surname>Li</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Qin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><forename type="middle">X</forename><surname>Yu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Mao</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">SIGMOD</title>
		<imprint>
			<biblScope unit="page" from="91" to="106" />
			<date type="published" when="2016">2016. 2016</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b6">
	<analytic>
		<title level="a" type="main">A framework for evaluating snippet generation for dataset search</title>
		<author>
			<persName><forename type="first">X</forename><surname>Wang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Chen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Li</surname></persName>
		</author>
		<author>
			<persName><forename type="first">G</forename><surname>Cheng</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Pan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><surname>Kharlamov</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Qu</surname></persName>
		</author>
		<ptr target="https://arxiv.org/abs/1907.01183" />
	</analytic>
	<monogr>
		<title level="m">ISWC 2019</title>
				<imprint>
			<date type="published" when="2019">2019</date>
		</imprint>
	</monogr>
</biblStruct>

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