Skip to content

dwslab/melt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

4324fea · Sep 29, 2024
Sep 15, 2024
Sep 18, 2023
Mar 8, 2024
Jun 17, 2022
Sep 21, 2024
Sep 29, 2024
Sep 21, 2023
Nov 20, 2023
Sep 21, 2023
Jun 17, 2022
Jun 17, 2022
Sep 15, 2024
Sep 5, 2023
Jun 17, 2022
Jul 31, 2023
Jun 17, 2022
Jun 17, 2022
Sep 25, 2023
Sep 18, 2023
Jan 23, 2022
Oct 12, 2020
Jul 29, 2021
Apr 29, 2022
Jun 22, 2022
Jun 22, 2022

Repository files navigation

MELT - Matching EvaLuation Toolkit

A powerful framework for ontology, instance, and knowledge graph matching.

MELT is a powerful maven framework for developing, tuning, evaluating, and packaging ontology matching systems. It is optimized to be used in OAEI campaigns and allows to submit matchers to the SEALS and HOBBIT evaluation platform easily. MELT can also be used for non OAEI-related matching tasks and evaluation.

Found a bug? Don't hesitate to open an issue.

User Guide

All functionality is documented in our User Guide.
Note that you can also easily search the entire user guide: image

JavaDoc

Matcher Development in Java

Release Version

MELT is now available in maven central and can be added as a dependency with e.g.:

<dependency>
    <groupId>de.uni-mannheim.informatik.dws.melt</groupId>
    <artifactId>matching-eval</artifactId>
    <version>3.3</version>
</dependency>

Developer/Latest Version

If you want to use the bleeding edge, but don't want to build it yourself (by cloning the repository and execute mvn install in the main directory), you can use jitpack.io (note the change of the groupId):

<dependency>
    <groupId>com.github.dwslab.melt</groupId>
    <artifactId>matching-eval</artifactId>
    <version>master-SNAPSHOT</version>
</dependency>

for the version, you can use any release tag, short commit hash or master-SNAPSHOT to get the current development version. They are also listed directly at jitpack.io/#dwslab/melt/. Furthermore, you need to add the jitpack repository in your pom file:

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>