Automatic differentiation with dual numbers
Project description
AutoDiff
Developed by: Will Claybaugh, Bruce Xiong, Erin Williams
Group #3, CS207 Fall 2018
Introduction
Autodiff finds the derivatives of a function (to machine precision!) at the same time it finds the value of the function.
import autodiff.autodiff as ad
x = ad.DualNumber('x', 2)
y = ad.DualNumber('y', 3)
out = x/y
out.value # 0.66666, the value of 2 divided by 3
out.derivatives #{x: 1/3, y: -2/(3**2)}, the gradient of x/y at (2,3)
Autodiff works for functions and expressions with any number of inputs. Just pass those functions DualNumbers instead of regular ints/floats (and upgrade any math module functions to their autodiff equvalents)
Installation
Autodiff is on PyPi and can be installed using the command pip install AutoDiff-group3
. To import, use import autodiff.autodiff as ad
.
Autodiff can also be installed by downloading from github. Becuase it has no dependencies, you can simply add the repo folder to your python path (import sys sys.path.insert(0, '/path_to_repo/')
) and import as normal.
Examples
Using autodiff is very simple:
import autodiff.autodiff as ad
def f(a,b):
return 3*a/b*ad.sin(a*b+2)
out = f(ad.DualNumber('x',2),ad.DualNumber('y',3))
print(out.value)
1.978716
print(out.derivatives['x'])
0.116358
print(out.derivatives['y'])
-1.24157
# get the value and derifative of f at a different point
out = f(ad.DualNumber('x',0),ad.DualNumber('y',1))
A Python 3 notebook containing more in-depth examples and usage is available HERE
Documentation
Click HERE for full documentation.
Dependencies
Click HERE for a full listing of dependencies.
License
Click HERE to view our MIT License.
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
Built Distribution
File details
Details for the file AutoDiff_group3-0.0.6.tar.gz
.
File metadata
- Download URL: AutoDiff_group3-0.0.6.tar.gz
- Upload date:
- Size: 11.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 772ecf6f2c86eef6533e9769437240e8ecee6636aa0747d1f7c81a40a505d748 |
|
MD5 | 490e577830222afa09e98fd9687a5aca |
|
BLAKE2b-256 | 5bb429b7f91771b8381c08c098ead7a00065da95ae6e39479d965ce28deef129 |
File details
Details for the file AutoDiff_group3-0.0.6-py3-none-any.whl
.
File metadata
- Download URL: AutoDiff_group3-0.0.6-py3-none-any.whl
- Upload date:
- Size: 24.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9230131d66a759d3fae8d090dffeee4ed9e75ada72f0c5f3a17c3ca1a28c4787 |
|
MD5 | bc16efb43699062624d7edd926e75a30 |
|
BLAKE2b-256 | 1720dc354708d50212f7e0315d3fc84cde7c43fa543f6c3d25d0d90721bc79c6 |