https://github.com/dice-group/limes
Link Discovery Framework for Metric Spaces.
https://github.com/dice-group/limes
artificial-intelligence linked-data machine-learning optimization rdf record-linkage scalability semantic-web
Last synced: 3 months ago
JSON representation
Link Discovery Framework for Metric Spaces.
- Host: GitHub
- URL: https://github.com/dice-group/limes
- Owner: dice-group
- License: agpl-3.0
- Created: 2015-09-16T09:04:48.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-08-14T14:22:41.000Z (over 1 year ago)
- Last Synced: 2025-04-03T05:32:07.716Z (10 months ago)
- Topics: artificial-intelligence, linked-data, machine-learning, optimization, rdf, record-linkage, scalability, semantic-web
- Language: JavaScript
- Homepage: https://limes.demos.dice-research.org/
- Size: 38.4 MB
- Stars: 130
- Watchers: 26
- Forks: 54
- Open Issues: 51
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: LICENSE
Awesome Lists containing this project
README
# LIMES - Link Discovery Framework for Metric Spaces.
[](https://github.com/dice-group/LIMES/actions/workflows/run-tests.yml)
[](https://hub.docker.com/r/dicegroup/limes)
[](./LICENSE)

## Running LIMES
To bundle LIMES as a single jar file, do
```bash
mvn clean package shade:shade -Dmaven.test.skip=true
```
Then execute it using
```bash
java -jar limes-core/target/limes-core-${current-version}.jar
```
## Using Docker
For running LIMES server in Docker, we expose port 8080. The image accepts the same arguments as the
limes-core.jar, i.e. to run a configuration at `./my-configuration`:
```bash
docker run -it --rm \
-v $(pwd):/data \
dicegroup/limes:latest \
/data/my-configuration.xml
```
To run LIMES server:
```bash
docker run -it --rm \
-p 8080:8080 \
dicegroup/limes:latest \
-s
```
To build and run Docker with WordNet:
```bash
docker build -f wordnet.Dockerfile . -t limes-wordnet
docker run -it --rm \
-v $(pwd):/data \
limes-wordnet \
/data/my-configuration.xml
```
## Maven
```xml
org.aksw.limes
limes-core
1.7.5
```
```xml
maven.aksw.internal
University Leipzig, AKSW Maven2 Internal Repository
http://maven.aksw.org/repository/internal/
maven.aksw.snapshots
University Leipzig, AKSW Maven2 Snapshot Repository
http://maven.aksw.org/repository/snapshots/
```
## How to cite
```bibtex
@article{KI_LIMES_2021,
title={{LIMES - A Framework for Link Discovery on the Semantic Web}},
author={Axel-Cyrille {Ngonga Ngomo} and Mohamed Ahmed Sherif and Kleanthi Georgala and Mofeed Hassan and Kevin Dreßler and Klaus Lyko and Daniel Obraczka and Tommaso Soru},
journal={KI-K{\"u}nstliche Intelligenz, German Journal of Artificial Intelligence - Organ des Fachbereichs "Künstliche Intelligenz" der Gesellschaft für Informatik e.V.},
year={2021},
url = {https://papers.dice-research.org/2021/KI_LIMES/public.pdf},
publisher={Springer}
}
```
## More details
* [Demo](https://dice-research.org/LIMES)
* [User manual](http://dice-group.github.io/LIMES/#/user_manual/index)
* [Developer manual](http://dice-group.github.io/LIMES/#/developer_manual/index)