Skip to main content

mOWL: A machine learning library with ontologies

Project description

mOWL: Machine Learning Library with Ontologies

mOWL is a library that provides different machine learning methods in which ontologies are used as background knowledge. mOWL is developed mainly in Python, but we have integrated the functionalities of OWLAPI, which is written in Java, for which we use JPype to bind Python with the Java Virtual Machine (JVM).

Table of contents

Installation

PyPi v0.0.30

pip install mowl-borg

From GitHub

Installation can be done with the following commands:

git clone https://github.com/bio-ontology-research-group/mowl.git

cd mowl

conda env create -f environment.yml
conda activate mowl

./build_jars.sh

The last line will generate the necessary jar files to bind Python with the code that runs in the JVM

Examples of use

Basic example

In this example we use the training data (which is an OWL ontology) from the built-in dataset PPIYeasSlimDataset to build a graph representation using the subClassOf axioms.

import mowl
mowl.init_jvm("4g")
from mowl.datasets.ppi_yeast import PPIYeastSlimDataset
from mowl.projection.taxonomy.model import TaxonomyProjector

dataset = PPIYeastSlimDataset()
projector = TaxonomyProjector(bidirectional_taxonomy = True)
edges = projector.project(dataset.ontology)

The projected edges is an edge list of a graph. One use of this may be to generate random walks:

from mowl.walking.deepwalk.model import DeepWalk
walker = DeepWalk(100, # number of walks
		20, # length of each walk
		0.2, # probability of restart
		workers = 4, # number of usable CPUs
		)

walker.walk(edges)
walks = walker.walks

Ontology to graph

In the previous example we called the class TaxonomyProjector to perform the graph projection. However, there are more ways to perform the projection. We include the following four:

Instead of instantianting each of them separately, there is the following factory method:

from mowl.projection.factory import projector_factory

projector = projector_factory("taxonomy_rels", bidirectional_taxonomy = True)

Now projector will be an instance of the TaxonomyWithRelsProjector class. The string parameters for each method are listed above.

For the random walks method we have a similar factory method that can be found in mowl.walking.factory and is called walking_factory.

List of contributors

License

This software library is distributed under the BSD-3-Clause license

Documentation

Full documentation and API reference can be found in our ReadTheDocs website.

ChangeLog

ChangeLog is available in our changelog file and also in the release section.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mowl-borg-0.1.0.tar.gz (61.7 MB view details)

Uploaded Source

Built Distribution

mowl_borg-0.1.0-py3-none-any.whl (61.8 MB view details)

Uploaded Python 3

File details

Details for the file mowl-borg-0.1.0.tar.gz.

File metadata

  • Download URL: mowl-borg-0.1.0.tar.gz
  • Upload date:
  • Size: 61.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for mowl-borg-0.1.0.tar.gz
Algorithm Hash digest
SHA256 da7b6cfbd0f994d19bb96df3c7f53d2d844c4249ff273d42cb866038256515bb
MD5 da2794e9139fb108268cf035c066daeb
BLAKE2b-256 7e084ea6ef77e41d4547fa31bb4e6c26a6cf1498243d671ed935d12f14b23944

See more details on using hashes here.

File details

Details for the file mowl_borg-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: mowl_borg-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 61.8 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for mowl_borg-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 68fc16a73342e8e865d944f1da56cae550445c611e638d0243c30a362547a324
MD5 5fb99f5ea9a57c1ed17619a91d25cd13
BLAKE2b-256 e05ca96d6aad0a2cd2a129f852ac12f0122a81c986bc293a482b2ea7b7927935

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page