AgreementMaker is an ontology matching system was started by the ADVIS Laboratory at the University of Illinois at Chicago, under the supervision of Professor Isabel F. Cruz.
It has competed multiple times in the Ontology Alignment Evaluation Initiative and presented impressive results.
AgreementMaker is split into multiple projects, all in the projects sub-directory.
To build Agreementmaker, use Gradle:
./gradlew buildAgreementMaker requires the WordNet dictionary files at application startup. If it cannot find them it will show an error like this:
ERROR WordNetUtils java.lang.RuntimeException: Cannot find WordNet dictionary files. Expected the files to exist in this directory: /path/to/agreementmaker/AM_ROOT/wordnet-3.0
NOTE: On your computer the path /path/to/agreementmaker/AM_ROOT/wordnet-3.0 will be a real path.
You can ensure that the files are there by downloading them from the WordNet website (substitute /path/to/agreementmaker/AM_ROOT/wordnet-3.0 with the real path in the error message):
mkdir -p /path/to/agreementmaker/AM_ROOT/wordnet-3.0
cd /path/to/agreementmaker/AM_ROOT/wordnet-3.0
wget https://wordnetcode.princeton.edu/wn3.1.dict.tar.gz
tar --strip-components=1 -xvzf wn3.1.dict.tar.gzTo run AgreementMaker, use the run Gradle task:
./gradlew runWe can use the OAEI 2012 ontology dataset for matching from the 2012 OAEI Campaign page.
- Download and unzip the
benchmarks.zip. - Start AgreementMaker with
./mvnw pax:provision.
In AgreementMaker:
- Navigate to
File -> Open Ontologies... (Ctrl + O). - In the
Source Ontologytab, check theLoad Ontologybox, select thebenchmarks/101/onto.rdffile, and set the language toOWL. - In the
Target Ontologytab, check theLoad Ontologybox, select thebenchmarks/201/onto.rdffile, and set the language toOWL. - Click
Proceed, andOkon the dialogs.
Now to match the ontologies:
- Click the
Match!button in theMatching Tasks Control Panel. - Notice that
Base Similarity Matcheris selected in theMatching Algorithmtab. - Click
Run Matching Taskto match the ontologies.