MCPcopy Index your code
hub / github.com/HIPS/autograd

github.com/HIPS/autograd @v1.9.1 sqlite

repository ↗ · DeepWiki ↗ · release v1.9.1 ↗
1,480 symbols 5,068 edges 106 files 68 documented · 5% 1 cross-repo links
README

Autograd Checks status Tests status Publish status asv

Autograd can automatically differentiate native Python and Numpy code. It can handle a large subset of Python's features, including loops, ifs, recursion and closures, and it can even take derivatives of derivatives of derivatives. It supports reverse-mode differentiation (a.k.a. backpropagation), which means it can efficiently take gradients of scalar-valued functions with respect to array-valued arguments, as well as forward-mode differentiation, and the two can be composed arbitrarily. The main intended application of Autograd is gradient-based optimization. For more information, check out the tutorial and the examples directory.

Example use:

>>> import autograd.numpy as np  # Thinly-wrapped numpy
>>> from autograd import grad    # The only autograd function you may ever need
>>>
>>> def tanh(x):                 # Define a function
...     return (1.0 - np.exp((-2 * x))) / (1.0 + np.exp(-(2 * x)))
...
>>> grad_tanh = grad(tanh)       # Obtain its gradient function
>>> grad_tanh(1.0)               # Evaluate the gradient at x = 1.0
np.float64(0.419974341614026)
>>> (tanh(1.0001) - tanh(0.9999)) / 0.0002  # Compare to finite differences
np.float64(0.41997434264973155)

We can continue to differentiate as many times as we like, and use numpy's vectorization of scalar-valued functions across many different input values:

>>> from autograd import elementwise_grad as egrad  # for functions that vectorize over inputs
>>> import matplotlib.pyplot as plt
>>> x = np.linspace(-7, 7, 700)
>>> plt.plot(x, tanh(x),
...          x, egrad(tanh)(x),                                     # first  derivative
...          x, egrad(egrad(tanh))(x),                              # second derivative
...          x, egrad(egrad(egrad(tanh)))(x),                       # third  derivative
...          x, egrad(egrad(egrad(egrad(tanh))))(x),)               # fourth derivative
>>> plt.show()

See the tanh example file for the code.

Documentation

You can find a tutorial here.

End-to-end examples

How to install

Install Autograd using Pip:

pip install autograd

Some features require SciPy, which you can install separately or as an optional dependency along with Autograd:

pip install "autograd[scipy]"

Authors and maintainers

Autograd was written by Dougal Maclaurin, David Duvenaud, Matt Johnson, Jamie Townsend and many other contributors. The package is currently being maintained by Agriya Khetarpal, Fabian Joswig and Jamie Townsend. Please feel free to submit any bugs or feature requests. We'd also love to hear about your experiences with Autograd in general. Drop us an email!

We want to thank Jasper Snoek and the rest of the HIPS group (led by Prof. Ryan P. Adams) for helpful contributions and advice; Barak Pearlmutter for foundational work on automatic differentiation and for guidance on our implementation; and Analog Devices Inc. (Lyric Labs) and Samsung Advanced Institute of Technology for their generous support.

Core symbols most depended-on inside this repo

randn
called by 400
autograd/core.py
defvjp
called by 222
autograd/core.py
grad
called by 164
autograd/differential_operators.py
defjvp
called by 116
autograd/core.py
unbroadcast_f
called by 93
autograd/numpy/numpy_vjps.py
primitive
called by 63
autograd/tracer.py
vspace
called by 53
autograd/core.py
unary_ufunc_check
called by 53
tests/numpy_utils.py

Shape

Function 1,264
Method 169
Class 47

Languages

Python100%

Modules by API surface

tests/test_systematic.py140 symbols
tests/test_numpy.py112 symbols
tests/test_scipy.py101 symbols
autograd/builtins.py67 symbols
tests/test_linalg.py61 symbols
autograd/core.py56 symbols
autograd/numpy/numpy_vjps.py52 symbols
tests/test_fft.py47 symbols
tests/test_scalar_ops.py42 symbols
tests/test_wrappers.py40 symbols
tests/test_vspaces.py33 symbols
autograd/numpy/numpy_boxes.py31 symbols

Used by 1 indexed graphs manifest dependencies, hub-wide

For agents

$ claude mcp add autograd \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact