API reference

This page gives an overview of all public objects, functions, and methods of our automatic differentiation library.

Note

Our automatic differentiation package’s default behavior uses forward mode.

You can import this as follows:

>>> import autodiff as ad

If you would like to use reverse mode, please explicitly import it as:

>>> import autodiff.reverse as ad