Skip to main content

A simple, pure python algorithmic differentiation package

Project description

pyADiff: A simple, pure python algorithmic differentiation package

Documentation Status

pyADiff is a (yet) very basic algorithmic differentiation package, which implements forward and adjoint/reverse mode differentiation. If you are looking for a fully-featured and faster library, have a look at google/jax, autograd or dco/c++ (or many more), but if you are interested in a package where you are able to quickly "look under the hood", you may be right here.

Motivation

My motivation to start this project arose from curiosity while listening to the lecture "Computational Differentiation" by Prof. Naumann at RWTH Aachen University. So basically I tried to understand the concepts from the lecture by implementing them by myself. In the end I was (positively) surprised with the outcome and decided to bundle it in a python package. Additionaly this gave me the chance to learn about python packaging, distributing, documentation, ...

Basic Usage

Suppose we want to compute the gradient of the function

f(x₀, x₁) = 2 x₀ x₁².

This is a rather trivial task, because by simple calculus, the gradient is:

∇f(x₀, x₁) = (2 x₁², 4 x₀ x₁)

Nevertheless we use this example illustrate the use of pyADiff.

import pyADiff as ad
# define the function f
def f(x):
    return 2.*x[0]*x[1]**2.
# call the gradient function of pyADiff
df = ad.gradient(f)

x = [0.5, 2.0]
# Call the function f and the gradient function df
y = f(x)
dy = df(x)

print("f({}) = {}".format(x, y))  # prints f([0.5, 2.0]) = 4.0
print("f'({}) = {}".format(x, dy))  # prints f'([0.5, 2.0]) = [8. 4.]

Which corresponds to the evaluation of the analytic gradient.

∇f(0.5, 2) = (2*2², 4*0.5*2) = (8, 4)

For more sophisticated examples see the Documentation or have a look at the .ipynb notebooks

Installation

Installation using pip

TODO

Installation from source

This will clone the repository and install the pyADiff package using the setup.py script.

> git clone https://github.com/tam724/pyADiff
> python pyADiff/setup.py install

Documentation

Availiable on readthedocs.org

References

Algorithmic Differentiation:

  • Uwe Naumann, Lecture Computational Differentiation, RWTH Aachen

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

pyADiff-0.1.1.tar.gz (20.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyADiff-0.1.1-py3-none-any.whl (21.7 kB view details)

Uploaded Python 3

File details

Details for the file pyADiff-0.1.1.tar.gz.

File metadata

  • Download URL: pyADiff-0.1.1.tar.gz
  • Upload date:
  • Size: 20.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/3.7.5

File hashes

Hashes for pyADiff-0.1.1.tar.gz
Algorithm Hash digest
SHA256 dc79b6fc0377c1d83f011597414ea458cddf31fdf3c630f34d1370c568ecf2ac
MD5 49e73ae156113c21c1be1ebbb4bf826f
BLAKE2b-256 5bcf4eb683213297a5f9898f51545164ca903890f653d9da8453851533b91a34

See more details on using hashes here.

File details

Details for the file pyADiff-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: pyADiff-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 21.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/3.7.5

File hashes

Hashes for pyADiff-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c3e4410ac39d730d90456d558fc1bbf0ae5f8937252e454e1f7cbea5f5305e29
MD5 28d936f1dc2d1ba73323564d3fbd6081
BLAKE2b-256 952354253770a38463b36fd4f03730cbbf6c85d3a6e186c73aa349286ddba6d2

See more details on using hashes here.

Supported by

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