<?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">YAM++ -Results for OAEI 2013</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author role="corresp">
							<persName><forename type="first">Duyhoa</forename><surname>Ngo</surname></persName>
							<email>duyhoa.ngo@lirmm.fr</email>
						</author>
						<author>
							<persName><forename type="first">Zohra</forename><surname>Bellahsene</surname></persName>
						</author>
						<author>
							<affiliation key="aff0">
								<orgName type="institution">University Montpellier</orgName>
							</affiliation>
						</author>
						<author>
							<affiliation key="aff1">
								<orgName type="laboratory">LIRMM</orgName>
							</affiliation>
						</author>
						<title level="a" type="main">YAM++ -Results for OAEI 2013</title>
					</analytic>
					<monogr>
						<imprint>
							<date/>
						</imprint>
					</monogr>
					<idno type="MD5">36AE396707DA1B7FA93396C757A3C887</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2023-03-24T07:44+0000">
					<desc>GROBID - A machine learning software for extracting information from scholarly documents</desc>
					<ref target="https://github.com/kermitt2/grobid"/>
				</application>
			</appInfo>
		</encodingDesc>
		<profileDesc>
			<abstract>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>In this paper, we briefly present the new YAM++ 2013 version and its results on OAEI 2013 campaign. The most interesting aspect of the new version of YAM++ is that it produces high matching quality results for large scale ontology matching tasks with good runtime performance on normal hardware configuration like PC or laptop without using any powerful server.</p></div>
			</abstract>
		</profileDesc>
	</teiHeader>
	<text xml:lang="en">
		<body>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>1 Presentation of the system YAM++ -(not) Yet Another Matcher is a flexible and self-configuring ontology matching system for discovering semantic correspondences between entities (i.e., classes, object properties and data properties) of ontologies. This new version YAM++ 2013 has a significant improvement from the previous versions <ref type="bibr" target="#b5">[6,</ref><ref type="bibr" target="#b4">5]</ref> in terms of both effectiveness and efficiency, especially for very large scale tasks. The YAM++'s general architecture is not changed much. However, most of its algorithms have been updated/added by the new effective ones. For example, we have implemented a disk-based method for storing the temporary information of the input ontology during the indexing process in order to save main memor space. Consequently, the new version YAM++ 2013 has improved both the matching quality and time performance in large scale ontology matching tasks. This year, YAM++ participates in six tracks including Benchmark, Conference, Multifarm, Library, Anatomy and Large Biomedical Ontologies tracks. However, due to limitation of time and person, we have not upgrade YAM++ to participate to Interactive matching evaluation and Instance Matching tasks.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="1.1">State, purpose, general statement</head><p>In YAM++ approach all useful information of entities such as terminological, structural or contextual, semantic and extensional are exploited. For each type of extracted information, a corresponding matching module has been implemented in order to discover as many as possible candidate mappings.</p><p>The major drawback of the previous version YAM++ 2012 <ref type="bibr" target="#b4">[5]</ref>, despite the fact that it achieved good results and high ranking at almost tracks, is very low time performance, especially for the Large Biomedical Ontologies tracks. After carefully studying this issue, we realize that our algorithms for pre-processing and indexing the input ontologies lead to a high complexity of O(n 2 ), where n is the size of the ontology. Additionally, the semantic verification component did not work well for the very large scale ontology matching task.</p><p>In the current version YAM++ 2013, the flaws mentioned above have been significantly fixed. Firstly, we have revised our algorithms for pre-processing and indexing the input ontologies and now they are with O( n + v ) complexity, where n and v are the number of nodes and edges of a Directed Acyclic Graph transformed from the ontology. Moreover, we have implemented a disk-based method for storing the temporary information of the input ontologes during the indexing process. This method allows us save a significant space of main memory. this makes possible run YAM++ with very large scale ontology matching in a personal computer with ordinary configuration (using 1G JVM only).</p><p>Secondly, we have introduced different inconsistent alignment patterns in order to detect as much as possible conflict set. Then, a new and fast approximate algorithm has been implemented to find the nearly optimization solution, which corresponds to the final consistent alignment.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="1.2">Specific techniques used</head><p>In this section, we will briefly describe the workflow of YAM++ and its main components, which are shown in Fig. <ref type="figure">1</ref>. Let us now to present the specific features of each component.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Candidate Pre-Filtering</head><p>Ontology Loader To read and parse input ontologies, YAM++ uses OWLAPI open source library. In addition, YAM++ makes use of (i) Pellet<ref type="foot" target="#foot_0">1</ref> -an OWL 2 Reasoner in order to discover hidden relations between entities in small ontology and (ii) ELK<ref type="foot" target="#foot_1">2</ref> reasoner for large ontology. In this phase, the whole ontology is loaded in the main memory.</p><p>Annotation Indexing In this component, all annotations information of entities such as ID, labels and comments are extracted. The languages used for representing annotations are considered. In the case where input ontology use different languages to describe the annotations of entities, a multilingual translator (Microsoft Bing) is used to translate those annotations to English. Those annotations are then normalized by tokenizing into set of tokens, removing stop words, and stemming. Next, the resulting tokens are indexed in a table for future use.</p><p>Structure Indexing In this component, the main structure information such as IS-A and PAR-OF hierarchies of ontology are stored. In particular, YAM++ assigns a compressed bitset values for every entity of the ontology. Through the bitset values of each entity, YAM++ can fast and easily gets its ancestors, descendants, etc. A benefit of this method is to easily access to the structure information of ontology and minimize memory for storing it. After this step, the loaded ontology can be released to save main memory.</p><p>Context Indexing In this component, we define a context profile of an entity as a set of three text corpora: (i) Entity Description includes annotation of the entity itself; (ii) Ancestor Description comprises the descriptions of its ancestor and (iii) Descendant Description comprises the descriptions of its descendant. Indexing those corpora is We performed by Lucene indexing engine.</p><p>Candidates Pre-Filtering The aim of this component is to reduce the computational space for a given scenario, especially for the large scale ontology matching tasks. In YAM++, two filters have been designed for the purpose of performing matching process efficiently.</p><p>-A Description Filter is a search-based filter, which filters out the candidate mappings before computing the real similarity values between the description of entities. Firstly, the descriptions of all entities in the bigger size ontology are indexed by Lucene search engine. For each entity in the smaller size ontology, three multiple terms queries corresponding to three description included in its context profile will be performed. The top-K algorithm based on ranking score of those queries is used to select the most similar entities. -A Label Filter is used to fast detect candidate mappings, where the labels of entities in each candidate mapping are similar or differ in maximum two tokens. The intuition is that if two labels of two entities differ by more than three tokens, any string-based method will produce a low similarity score value. Then, these entities are highly unmatched.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Similarity Computation</head><p>The three matcher described in this component are the same as in the YAM++ 2012 version. For more detail, we refer readers to our papers: Terminological Matcher <ref type="bibr" target="#b6">[7]</ref>, Instance-based Matcher <ref type="bibr" target="#b5">[6]</ref>. A slight modification at the Contextual Matcher is that we use algorithm described in <ref type="bibr" target="#b7">[8]</ref> for small ontology matching, whereas we use the Lucene ranking score for large scale ontology matching.</p><p>Similarity Propagation This component is similar to the Structural Matcher component described in YAM++ 2012 version. It contains two similarity propagation methods namely Similarity Propagation and Confidence Propagation.</p><p>-The Similarity Propagation method is a graph matching method, which inherits the main features of the well-known Similarity Flooding algorithm <ref type="bibr" target="#b1">[2]</ref>. The only difference is about transforming an ontology to a directed labeled graph. This matcher is not changed from the first YAM++ version to the current version. Therefore, for saving space, we refer to section Similarity Flooding of <ref type="bibr" target="#b5">[6]</ref> for more details. -The Confidence Propagation method principle is as follows. Assume In YAM++, the aim of the Similarity Propagation method is discovering new mappings by exploiting as much as possible the structural information of entities. This method is used for a small scale ontology matching task, where the total number of entities in each ontology is smaller than 1000. In contrary, the Confidence Propagation method supports a Semantic Verification component to eliminate inconsistent mappings. This method is mainly used in a large scale ontology matching scenario. Candidates Post-Filtering The aim of the Mappings Combination and Selection component is to produce a unique set of mappings from the matching results obtained by the terminological matcher, instance-based matcher and structural matcher. In this component, a Dynamic Weighted Aggregation method have been implemented. Given an ontology matching scenario, it automatically computes a weight value for each matcher and establishes a threshold value for selecting the best candidate mappings. The main idea of this method can be seen in <ref type="bibr" target="#b5">[6]</ref> for more details.</p><p>Semantic Verification After running the similarity or confidence propagation on overall candidate mappings, the final achieved similarity values reach a certain stability. Based on those values, YAM++ is able to remove inconsistent mappings with more certainty. There are two main steps in the Semantic Verification component such as (i) identifying inconsistent mappings, and (ii) eliminating inconsistent mappings.</p><p>In order to identify inconsistencies, several semantic conflict patterns have been designed in YAM++ as follows (see <ref type="bibr" target="#b3">[4]</ref> for more detail):</p><p>-Two mappings a ) is less than a threshold value θ (for a large scale matching with cardinality 1:m). Two methods, i.e., complete and approximate diagnosis are used in order to eliminate inconsistent mappings. We use complete version Alcomo <ref type="bibr" target="#b2">[3]</ref> for small scale. In term of approximate version for large scale, we transform this task into a Maximum Weighted Vertex Cover problem. A modification of Clarkson algorithm <ref type="bibr" target="#b0">[1]</ref>, which is a Greedy approach. The idea of this method is that it iteratively removes the mapping with the smallest cost, which is computed by a ratio of its current confidence value to number of its conflicts.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="1.3">Adaptations made for the evaluation</head><p>Before running the matching process, YAM++ analyzes the input ontologies and adapts itself to the matching task. In particular, if the annotations of entities in input ontologies are described by different languages, YAM++ automatically translates them in English. If the number of entities in input ontologies is smaller than 1000, YAM++ is switched to small scale matching regime, otherwise, it runs with large scale matching regime. The main difference between the two regimes lies in the Similarity Propagation and Semantic Verification components as we discussed above.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="1.4">Link to the system and parameters file</head><p>A SEALS client wrapper for YAM++ system and the parameter files can be download at: http://www2.lirmm.fr/ dngo/YAMplusplus2013.zip. See the instructions in tutorial from SEALS platform<ref type="foot" target="#foot_2">3</ref> to test our system.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="1.5">Link to the set of provided alignments (in align format)</head><p>The results of all tracks can be downloaded at: http://www2.lirmm.fr/ dngo/ YAMplus-plus2013Results.zip.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2">Results</head><p>In this section, we present the evaluation results obtained by running YAM++ with SEALS client with Benchmark, Conference, Multifarm, Library, Anatomy and Large Biomedical Ontologies tracks. All experiments are executed by YAM++ with SEALS client version 4.1 beta and JDK 1.6 on PC Intel 3.0 Pentium, 3Gb RAM, Window XP SP3.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.1">Benchmark</head><p>In OAEI 2013, Benchmark includes 5 blind tests for both organizers and participants. Those tests are regeneration of the bibliography test set. </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.3">MultiFarm</head><p>The goal of the MultiFarm track is to evaluate the ability of matcher systems to deal with multilingual ontologies. It is based on the OntoFarm dataset, where annotations of entities are represented in different languages such as: English (en), Chinese (cn), Czech (cz), Dutch (nl), French (fr), German (de), Portuguese (pt), Russian (ru) and Spanish (es). YAM++'s results are showed in the Fig. <ref type="figure" target="#fig_1">2</ref> 2</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>.4 Anatomy</head><p>The Anatomy track consists of finding an alignment between the Adult Mouse Anatomy (2744 classes) and a part of the NCI Thesaurus (3304 classes) describing the human anatomy. Table <ref type="table">3</ref> shows the evaluation result and runtime of YAM++ on this track.  <ref type="table">3</ref>: YAM++ results on Anatomy track</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.5">Library</head><p>The library track is a real-word task to match the STW (6575 classes) and the TheSoz (8376 classes) thesaurus. Table <ref type="table" target="#tab_4">4</ref> shows the evaluation result and runtime of YAM++ against an existing reference alignment on this track. </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.6">Large Biomedical Ontologies</head><p>This track consists of finding alignments between the Foundational Model of Anatomy (FMA), SNOMED CT, and the National Cancer Institute Thesaurus (NCI). There are 9 sub tasks with different size of input ontologies, i.e., small fragment, large fragment and the whole ontologies. Table <ref type="table" target="#tab_5">5</ref> shows the evaluation results and run times of YAM++ on those sub tasks.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3">General comments</head><p>This is the third time YAM++ participates to the OAEI campaign. We found that SEALS platform is a very valuable tool to compare the performance of our system with the others. Besides, we also found that OAEI tracks covers a wide range of heterogeneity in ontology matching task. They are very useful to help developers/researchers to develop their semantic matching system.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.1">Comments on the results</head><p>The current version of YAM++ has shown a significant improvement both in terms of matching quality and runtime with respect to the previous version. In particular, the </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4">Conclusion</head><p>In this paper, we have presented our ontology matching system called YAM++ and its evaluation results on different tracks on OAEI 2013 campaign. The experimental results are promising and show that YAM++ is able to work effectively and efficiently with real-world ontology matching tasks. In near future, we continue improving the matching quality and efficiency of YAM++. Furthermore, we plan to deal with instance matching track also.</p></div><figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_0"><head></head><label></label><figDesc>a 1 , b 1 , ≡, c 1 and a 2 , b 2 , ≡, c 2 are two initial mappings, which are maybe discovered by the element level matcher (i.e., the terminological matcher or instance-based matcher). If a 1 and b 1 are ancestors of a 2 and b 2 respectively, then after running confidence propagation, we have a 1 , b 1 , ≡, c 1 + c 2 and a 2 , b 2 , ≡, c 2 + c 1 . Note that, confidence values are propagated only among collection of initial mappings.</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_1"><head>Fig. 2 :</head><label>2</label><figDesc>Fig. 2: YAM++ results on MultiFarm track</figDesc><graphic coords="7,137.60,115.84,340.16,113.38" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_0"><head></head><label></label><figDesc>Terminological Matcher, the Contextual Matcher and the Instance-based Matcher are combined to have a unique set of mappings. We call them element level matching result. 5. The Similarity Propagation component then enhances element level matching result by exploiting structural information of entities; We call the result of this phase structure level matching result. 6. The Candidate Post-Filtering component is used to combine and select the potential candidate mappings from element and structure level results. 7. Finally, the Semantic Verification component refines those mappings in order to eliminate the inconsistent ones.</figDesc><table><row><cell cols="2">the matching results of the</cell><cell></cell><cell></cell></row><row><cell>Ontology Loader</cell><cell>Annotation Indexing Structure Indexing Context Indexing</cell><cell>Similarity Computation Similarity Propagation Candidate Post-Filtering</cell><cell>Semantic Verification</cell></row><row><cell></cell><cell cols="2">Fig. 1: Main components of YAM++ system</cell><cell></cell></row><row><cell cols="4">In YAM++ approach, a generic workflow for a given ontology matching scenario is</cell></row><row><cell>as follows.</cell><cell></cell><cell></cell><cell></cell></row><row><cell cols="4">1. Input ontologies are loaded and parsed by a Ontology Loader component;</cell></row><row><cell cols="4">2. Information of entities in ontologies are indexed by the Annotation Indexing, the</cell></row><row><cell cols="3">Structure Indexing and Context Indexing components;</cell><cell></cell></row><row><cell cols="4">3. Candidates Pre-Filtering component filters out all possible pairs of entities from</cell></row><row><cell cols="3">the input ontologies, whose descriptions are highly similar;</cell><cell></cell></row><row><cell cols="4">4. The candidate mappings are then passed into Similarity Computation compo-</cell></row><row><cell cols="4">nent, which includes: (i) the Terminological Matcher component that produces a</cell></row><row><cell cols="4">set of mappings by comparing the annotations of entities; (ii) the Instance-based</cell></row><row><cell cols="4">Matcher component that supplements new mappings through shared instances be-</cell></row><row><cell cols="4">tween ontologies and (iii) the Contextual Matcher, which is used to compute the</cell></row><row><cell cols="4">similarity value of a pair of entities by comparing their context profiles. In YAM++,</cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_1"><head></head><label></label><figDesc>1 , b 1 and a 2 , b 2 are crisscross conflict if a 1 is an ancestor of a 2 in ontology O 1 and b 2 is an ancestor of b 1 in ontology O 2 . -Two mappings a 1 , b 1 and a 2 , b 2 are disjointness subsumption conflict if a 1 is an ancestor of a 2 in ontology O 1 and b 2 disjoints with b 1 in ontology O 2 and vice versa. -A property-property mapping p 1 , p 2 is inconsistent with respect to alignment A if {Doms(p 1 ) × Doms(p 2 )} ∩ A = ∅ and {Rans(p 1 ) × Rans(p 2 )} ∩ A = ∅ then (p 1 , p 2 ), where Doms(p) and Rans(p) return a set of domains and ranges of property p. -Two mappings a, b 1 and a, b 2 are duplicated conflict if the cardinality matching is 1:1 (for a small scale ontology matching scenario) or the semantic similarity SemSim(b 1 , b 2</figDesc><table /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_2"><head>Table 1 :</head><label>1</label><figDesc>Table 1 shows the avergae results of YAM++ running on the Benchmark dataset. YAM++ results on pre-test Benchmark track2.2 ConferenceConference track now contains 16 ontologies from the same domain (conference organization) and each ontology must be matched against every other ontology. This track is an open+blind, so in the Table2, we can only report our results with respect to the available reference alignments</figDesc><table><row><cell cols="4">Test set H-mean Precision H-mean Recall H-mean Fmeasure</cell></row><row><cell>Biblio</cell><cell>0.97</cell><cell>0.82</cell><cell>0.89</cell></row><row><cell>Test set</cell><cell cols="3">H-mean Precision H-mean Recall H-mean Fmeasure</cell></row><row><cell>Conference ra1</cell><cell>0.80</cell><cell>0.69</cell><cell>0.74</cell></row><row><cell>Conference ra2</cell><cell>0.78</cell><cell>0.65</cell><cell>0.71</cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_3"><head>Table 2 :</head><label>2</label><figDesc>YAM++ results on Conference track</figDesc><table /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_4"><head>Table 4 :</head><label>4</label><figDesc>YAM++ results on Library track</figDesc><table><row><cell>Test set</cell><cell>Precision</cell><cell>Recall</cell><cell>Fmeasure</cell><cell>Run times</cell></row><row><cell>Library</cell><cell>0.692</cell><cell>0.808</cell><cell>0.745</cell><cell>411 (s)</cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_5"><head>Table 5 :</head><label>5</label><figDesc>YAM++ results on Large Biomedical Ontologies track H-mean Fmeasure value of all the very large scale dataset (i.e., Library, Biomedical ontologies) has been improved.</figDesc><table><row><cell>Test set</cell><cell>Precision</cell><cell>Recall</cell><cell>Fmeasure</cell><cell>Run times</cell></row><row><cell>Small FMA -NCI</cell><cell>0.976</cell><cell>0.853</cell><cell>0.910</cell><cell>94 (s)</cell></row><row><cell>Whole FMA -NCI</cell><cell>0.899</cell><cell>0.846</cell><cell>0.872</cell><cell>366 (s)</cell></row><row><cell>Small FMA -SNOMED</cell><cell>0.982</cell><cell>0.729</cell><cell>0.836</cell><cell>100 (s)</cell></row><row><cell>Whole FMA -SNOMED</cell><cell>0.947</cell><cell>0.725</cell><cell>0.821</cell><cell>402 (s)</cell></row><row><cell>Small SNOMED -NCI</cell><cell>0.967</cell><cell>0.611</cell><cell>0.749</cell><cell>391 (s)</cell></row><row><cell>Whole SNOMED -NCI</cell><cell>0.881</cell><cell>0.601</cell><cell>0.714</cell><cell>713 (s)</cell></row></table></figure>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="1" xml:id="foot_0">http://clarkparsia.com/pellet/</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="2" xml:id="foot_1">http://www.cs.ox.ac.uk/isg/tools/ELK/</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="3" xml:id="foot_2">http://oaei.ontologymatching.org/2013/seals-eval.html</note>
		</body>
		<back>
			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<analytic>
		<title level="a" type="main">A modification of the greedy algorithm for vertex cover</title>
		<author>
			<persName><forename type="first">L</forename><surname>Kenneth</surname></persName>
		</author>
		<author>
			<persName><surname>Clarkson</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Information Processing Letters</title>
		<imprint>
			<biblScope unit="page" from="23" to="25" />
			<date type="published" when="1983">1983</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b1">
	<analytic>
		<title level="a" type="main">Similarity flooding: A versatile graph matching algorithm and its application to schema matching</title>
		<author>
			<persName><forename type="first">Sergey</forename><surname>Melnik El At</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">ICDE</title>
				<imprint>
			<date type="published" when="2002">2002</date>
			<biblScope unit="page" from="117" to="128" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b2">
	<monogr>
		<title level="m" type="main">Alignment incoherence in ontology matching</title>
		<author>
			<persName><forename type="first">Christian</forename><surname>Meilicke</surname></persName>
		</author>
		<imprint>
			<date type="published" when="2011">2011</date>
		</imprint>
		<respStmt>
			<orgName>University of Mannheim, Chair of Artificial Intelligence</orgName>
		</respStmt>
	</monogr>
	<note type="report_type">PhD.Thesis</note>
</biblStruct>

<biblStruct xml:id="b3">
	<monogr>
		<title level="m" type="main">Enhancing ontology matching by using machine learning, graph matching and information retrieval techniques</title>
		<author>
			<persName><forename type="first">Duyhoa</forename><surname>Ngo</surname></persName>
		</author>
		<imprint>
			<date type="published" when="2012">2012</date>
		</imprint>
		<respStmt>
			<orgName>University Montpellier II</orgName>
		</respStmt>
	</monogr>
	<note type="report_type">PhD.Thesis</note>
</biblStruct>

<biblStruct xml:id="b4">
	<monogr>
		<title level="m" type="main">Yam++ results for oaei 2012</title>
		<author>
			<persName><forename type="first">Duyhoa</forename><surname>Ngo</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Zohra</forename><surname>Bellahsene</surname></persName>
		</author>
		<editor>OM</editor>
		<imprint>
			<date type="published" when="2012">2012</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b5">
	<monogr>
		<title level="m" type="main">Yam++ results for oaei</title>
		<author>
			<persName><forename type="first">Duyhoa</forename><surname>Ngo</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Zohra</forename><surname>Bellahsene</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Remi</forename><surname>Coletta</surname></persName>
		</author>
		<editor>OM</editor>
		<imprint>
			<date type="published" when="2011">2011. 2011</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b6">
	<analytic>
		<title level="a" type="main">Opening the black box of ontology matching</title>
		<author>
			<persName><forename type="first">Duyhoa</forename><surname>Ngo</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Zohra</forename><surname>Bellahsene</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Konstantin</forename><surname>Todorov</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">ESWC</title>
				<imprint>
			<date type="published" when="2013">2013</date>
			<biblScope unit="page" from="16" to="30" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b7">
	<analytic>
		<title level="a" type="main">A generic approach for combining linguistic and context profile metrics in ontology matching</title>
		<author>
			<persName><forename type="first">Duyhoa</forename><surname>Ngo</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Zohra</forename><surname>Bellasene</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Remi</forename><surname>Coletta</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">ODBASE Conference</title>
				<imprint>
			<date type="published" when="2011">2011</date>
		</imprint>
	</monogr>
</biblStruct>

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