Skip to main content

Logical Reasoning for Deep Nets

Project description

========= Pymetheus

.. image:: https://img.shields.io/pypi/v/pymetheus.svg :target: https://pypi.python.org/pypi/pymetheus

.. image:: https://img.shields.io/travis/vinid/pymetheus.svg :target: https://travis-ci.org/vinid/pymetheus

.. image:: https://readthedocs.org/projects/pymetheus/badge/?version=latest :target: https://pymetheus.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status

PyMetheus: Deep Nets for Logical Reasoning

Features

  • Provides an out of the box tool to learn (fuzz) first order logic with the use of an underlying vector space

Features

  • Create a Logic Deep Network

.. code-block:: python

import pymetheus
import itertools
from pymetheus.pymetheus import LogicNet

ll = LogicNet()

..

  • Introduce Some Constants

.. code-block:: python

ll.constant("Rome")
ll.constant("Milan")
ll.constant("Italy")

..

  • Introduce Some Predicates and Knowledge

.. code-block:: python

ll.predicate("capital")
ll.predicate("country")

ll.knowledge("country(Milan,Italy)")
ll.knowledge("capital(Rome,Italy)")

ll.zeroing() # Initialize KB with all knowledge as false

..

  • Add quantified rule with data .. code-block:: python

    rule = "forall ?a,?b: capital(?a,?b) -> country(?a,?b)" ll.universal_rule(rule) var = ["Italy", "Rome", "Milan"] ll.variable("?a", var) ll.variable("?b", var) ..

  • Learn and Reason

.. code-block:: python

ll.learn(epochs=1000, batch_size=25)


ll.reason("capital(Rome,Italy)", True)

..

Credits

This package was created with Cookiecutter_ and the audreyr/cookiecutter-pypackage_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter .. _audreyr/cookiecutter-pypackage: https://github.com/audreyr/cookiecutter-pypackage

======= History

0.1.0 (2019-08-22)

  • First release on PyPI.

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

pymetheus-0.3.1.tar.gz (17.1 kB view hashes)

Uploaded Source

Built Distribution

pymetheus-0.3.1-py2.py3-none-any.whl (13.9 kB view hashes)

Uploaded Python 2 Python 3

Supported by

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