Skip to content

Tutorial: Algorithmic Differentiation

Liang Wang edited this page May 3, 2017 · 35 revisions

Algorithmic differentiation (AD) is also known as automatic differentiation. It is a powerful tool in many fields, especially useful for fast prototyping in machine learning research. Comparing to numerical differentiation which can only provides approximate results, AD can calculates the exact derivative of a given function.

Owl provides both numerical differentiation (in Algodiff.Numerical module) and algorithmic differentiation (in Algodiff.Generic module). In this tutorial, I will only go through AD module since Numerical module is trivial to use.

Algodiff.Generic is a functor which is able to support both float32 and float64 precision AD. However, you do not need to deal with Algodiff.Generic.Make directly since there are already two ready-made modules.

  • Algodiff.S supports float32 precision;
  • Algodiff.D supoprts float64 precision;

Algodiff has implemented both forward and backward mode of AD. The complete list of APIs can be found in owl_algodiff_generic.mli. The core APIs are listed below.

  • val diff : (t -> t) -> t -> t : calculate derivative for f : scalar -> scalar
  • val grad : (t -> t) -> t -> t : calculate gradient for f : vector -> scalar
  • val jacobian : (t -> t) -> t -> t : calculate jacobian for f : vector -> vector
  • val hessian : (t -> t) -> t -> t : calculate hessian for f : scalar -> scalar
  • val laplacian : (t -> t) -> t -> t : calculate laplacian for f : scalar -> scalar

Besides, there are also more helper functions such as jacobianv for calculating jacobian vector product; diff' for calculating both f x and diff f x, and etc.

Example 1: Higher-Order Derivatives

E.g., the following code first defines a function f0, then calculates from the first to the fourth derivative by calling Algodiff.AD.diff function.

open Algodiff.AD;;

let map f x = Vec.map (fun a -> a |> pack_flt |> f |> unpack_flt) x;;

(* calculate derivatives of f0 *)
let f0 x = Maths.(tanh x);;
let f1 = diff f0;;
let f2 = diff f1;;
let f3 = diff f2;;
let f4 = diff f3;;
let x = Vec.linspace (-4.) 4. 200;;
let y0 = map f0 x;;
let y1 = map f1 x;;
let y2 = map f2 x;;
let y3 = map f3 x;;
let y4 = map f4 x;;

(* plot the values of all functions *)
let h = Plot.create "plot_021.png" in
Plot.set_foreground_color h 0 0 0;
Plot.set_background_color h 255 255 255;
Plot.plot ~h x y0;
Plot.plot ~h x y1;
Plot.plot ~h x y2;
Plot.plot ~h x y3;
Plot.plot ~h x y4;
Plot.output h;;

Start your utop, then load and open Owl library. Copy and past the code above, the generated figure will look like this.

In the following weeks, I will keep polishing the module and try to overload more useful mathematical operators.

If you replace f0 in the previous example with the following definition, then you will have another good-looking figure :)

let f0 x = Maths.(
  let y = exp (neg x) in
  (F 1. - y) / (F 1. + y)
);;

Caveat: AD is a quite experimental feature at the moment. I will keep working on this in the following weeks/months.