Metadata-Version: 2.4
Name: ampligraph
Version: 2.2.0
Summary: A Python library for relational learning on knowledge graphs.
Author-email: Accenture Dublin Labs <about@ampligraph.org>
License: Apache 2.0
Project-URL: Homepage, https://github.com/Accenture/AmpliGraph/
Project-URL: Documentation, https://docs.ampligraph.org
Project-URL: Repository, https://github.com/Accenture/AmpliGraph/
Keywords: machine-learning,knowledge-graph,graph-embeddings,tensorflow,relational-learning
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: <3.12,>=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: tensorflow<2.16,>=2.15
Requires-Dist: numpy<2.0,>=1.14.3
Requires-Dist: scikit-learn>=0.19.1
Requires-Dist: tqdm>=4.23.4
Requires-Dist: pandas>=0.23.1
Requires-Dist: beautifultable>=0.7.0
Requires-Dist: pyyaml>=3.13
Requires-Dist: rdflib>=4.2.2
Requires-Dist: scipy>=1.10.0
Requires-Dist: networkx>=2.3
Requires-Dist: matplotlib>=3.7
Requires-Dist: docopt==0.6.2
Requires-Dist: schema==0.7.5
Provides-Extra: cuda
Requires-Dist: tensorflow[and-cuda]<2.16,>=2.15; extra == "cuda"
Provides-Extra: test
Requires-Dist: pytest>=3.5.1; extra == "test"
Provides-Extra: docs
Requires-Dist: sphinx==5.0.2; extra == "docs"
Requires-Dist: myst-parser==0.18.0; extra == "docs"
Requires-Dist: docutils<0.18; extra == "docs"
Requires-Dist: sphinx_rtd_theme==1.0.0; extra == "docs"
Requires-Dist: sphinxcontrib-bibtex==2.4.2; extra == "docs"
Requires-Dist: pybtex==0.24.0; extra == "docs"
Requires-Dist: setuptools<81; extra == "docs"
Provides-Extra: lint
Requires-Dist: flake8>=3.7.7; extra == "lint"
Provides-Extra: dev
Requires-Dist: ampligraph[lint,test]; extra == "dev"
Dynamic: license-file

# ![AmpliGraph](docs/img/ampligraph_logo_transparent_300.png)

[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.2595043.svg)](https://doi.org/10.5281/zenodo.2595043)

[![Documentation Status](https://readthedocs.org/projects/ampligraph/badge/?version=latest)](http://ampligraph.readthedocs.io/?badge=latest)

[![CircleCI](https://dl.circleci.com/status-badge/img/gh/Accenture/AmpliGraph/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/Accenture/AmpliGraph/tree/main)


[Join the conversation on Slack](https://join.slack.com/t/ampligraph/shared_invite/enQtNTc2NTI0MzUxMTM5LTRkODk0MjI2OWRlZjdjYmExY2Q3M2M3NGY0MGYyMmI4NWYyMWVhYTRjZDhkZjA1YTEyMzBkMGE4N2RmNTRiZDg)
![](docs/img/slack_logo.png)

**Open source library based on TensorFlow that predicts links between concepts in a knowledge graph.**

**AmpliGraph** is a suite of neural machine learning models for relational Learning, a branch of machine learning
that deals with supervised learning on knowledge graphs.


**Use AmpliGraph if you need to**:

* Discover new knowledge from an existing knowledge graph.
* Complete large knowledge graphs with missing statements.
* Generate stand-alone knowledge graph embeddings.
* Develop and evaluate a new relational model.


AmpliGraph's machine learning models generate **knowledge graph embeddings**, vector representations of concepts in a metric space:

![](docs/img/kg_lp_step1.png)

It then combines embeddings with model-specific scoring functions to predict unseen and novel links:

![](docs/img/kg_lp_step2.png)


## AmpliGraph 2.0.0 is now available!
The new version features TensorFlow 2 back-end and Keras style APIs that makes it faster, easier to use and 
extend the support for multiple features. Further, the data input/output pipeline has changed, and the support for 
some obsolete models was discontinued.<br /> See the Changelog for a more thorough list of changes.


## Key Features

* **Intuitive APIs**: AmpliGraph APIs are designed to reduce the code amount required to learn models that predict links in knowledge graphs. The new version AmpliGraph 2 APIs are in Keras style, making the user experience even smoother.
* **GPU-Ready**: AmpliGraph 2 is based on TensorFlow 2, and it is designed to run seamlessly on CPU and GPU devices - to speed-up training.
* **Extensible**: Roll your own knowledge graph embeddings model by extending AmpliGraph base estimators.

## Modules

AmpliGraph includes the following submodules:

* **Datasets**: helper functions to load datasets (knowledge graphs).
* **Models**: knowledge graph embedding models. AmpliGraph 2 contains **TransE**, **DistMult**, **ComplEx**, **HolE** (More to come!)
* **Evaluation**: metrics and evaluation protocols to assess the predictive power of the models.
* **Discovery**: High-level convenience APIs for knowledge discovery (discover new facts, cluster entities, predict near duplicates).
* **Compat**: submodule that extends the compatibility of AmpliGraph 2 APIs to those of AmpliGraph 1.x for the user already familiar with them.

## Installation

### Prerequisites

* Linux, macOS, Windows
* Python 3.9 – 3.11

## Install AmpliGraph

To install the latest stable release from pip:

```
pip install ampligraph
```

To sanity check the installation, run the following:

```python
>>> import ampligraph
>>> ampligraph.__version__
'2.2.0'
```

If instead you want the most recent development version, you can clone the repository from
[GitHub](https://github.com/Accenture/AmpliGraph.git), install AmpliGraph from source and checkout the `develop`
branch. In this way, your local working copy will be on the latest commit on the `develop` branch.

```
git clone https://github.com/Accenture/AmpliGraph.git
cd AmpliGraph
git checkout develop
uv sync
```

To sanity check the installation, run the following:

```python
>>> import ampligraph
>>> ampligraph.__version__
'2.2-dev'
```



## Predictive Power Evaluation (MRR Filtered)

AmpliGraph includes implementations of TransE, DistMult, ComplEx, HolE and RotatE. Versions <2.0 also includes ConvE,
and ConvKB.
Their predictive power is reported below and compared against the state-of-the-art results in literature.
[More details available here](https://docs.ampligraph.org/en/latest/experiments.html).

|                              | FB15K-237 | WN18RR    | YAGO3-10 | FB15k      | WN18      |
|------------------------------|-----------|-----------|----------|------------|-----------|
| Literature Best              | **0.35*** | 0.48*     | 0.49*    | **0.84**** | **0.95*** |
| TransE                       | 0.31      | 0.22      | **0.50** | 0.62       | 0.66      |
| DistMult                     | 0.30      | 0.47      | 0.48     | 0.71       | 0.82      |
| ComplEx                      | 0.31      | **0.51**  | 0.49     | 0.73       | 0.94      |
| HolE                         | 0.30      | 0.47      | 0.47     | 0.73       | 0.94      |
| RotatE                       | 0.31      | **0.51**  | 0.43     | 0.70       | **0.95**  |
| ConvE (AmpliGraph v1.4)      | 0.26      | 0.45      | 0.30     | 0.50       | 0.93      |
| ConvE (1-N, AmpliGraph v1.4) | 0.32      | 0.48      | 0.40     | 0.80       | **0.95**  |
| ConvKB (AmpliGraph v1.4)     | 0.23      | 0.39      | 0.30     | 0.65       | 0.80      |

<sub>
* Timothee Lacroix, Nicolas Usunier, and Guillaume Obozinski. Canonical tensor decomposition for knowledge base 
completion. In International Conference on Machine Learning, 2869–2878. 2018. <br/>
**  Kadlec, Rudolf, Ondrej Bajgar, and Jan Kleindienst. "Knowledge base completion: Baselines strike back.
 " arXiv preprint arXiv:1705.10744 (2017).
</sub>

<sub>
Results above are computed assigning the worst rank to a positive in case of ties. 
Although this is the most conservative approach, some published literature may adopt an evaluation protocol that assigns
 the best rank instead. 
</sub>


## Documentation

**[Documentation available here](http://docs.ampligraph.org)**

The project documentation can be built from your local working copy with:

```
cd docs
make clean autogen html
```

## How to contribute

See [guidelines](http://docs.ampligraph.org) from AmpliGraph documentation.


## How to Cite

If you like AmpliGraph and you use it in your project, why not starring the project on GitHub!

[![GitHub stars](https://img.shields.io/github/stars/Accenture/AmpliGraph.svg?style=social&label=Star&maxAge=3600)](https://GitHub.com/Accenture/AmpliGraph/stargazers/)


If you instead use AmpliGraph in an academic publication, cite as:

```
@misc{ampligraph,
 author= {Luca Costabello and
          Alberto Bernardi and
          Adrianna Janik and
          Aldan Creo and
          Sumit Pai and
          Chan Le Van and
          Rory McGrath and
          Nicholas McCarthy and
          Pedro Tabacof},
 title = {{AmpliGraph: a Library for Representation Learning on Knowledge Graphs}},
 month = mar,
 year  = 2019,
 doi   = {10.5281/zenodo.2595043},
 url   = {https://doi.org/10.5281/zenodo.2595043}
}
```

## License

AmpliGraph is licensed under the Apache 2.0 License.
