Created
July 19, 2012 15:21
-
-
Save jgomezdans/3144636 to your computer and use it in GitHub Desktop.
Finite difference approach to calculating the Hessian
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
Some Hessian codes | |
""" | |
import numpy as np | |
from scipy.optimize import approx_fprime | |
def hessian ( x0, epsilon=1.e-5, linear_approx=False, *args ): | |
""" | |
A numerical approximation to the Hessian matrix of cost function at | |
location x0 (hopefully, the minimum) | |
""" | |
# ``calculate_cost_function`` is the cost function implementation | |
# The next line calculates an approximation to the first | |
# derivative | |
f1 = approx_fprime( x0, calculate_cost_function, *args) | |
# This is a linear approximation. Obviously much more efficient | |
# if cost function is linear | |
if linear_approx: | |
f1 = np.matrix(f1) | |
return f1.transpose() * f1 | |
# Allocate space for the hessian | |
n = x0.shape[0] | |
hessian = np.zeros ( ( n, n ) ) | |
# The next loop fill in the matrix | |
xx = x0 | |
for j in xrange( n ): | |
xx0 = xx[j] # Store old value | |
xx[j] = xx0 + epsilon # Perturb with finite difference | |
# Recalculate the partial derivatives for this new point | |
f2 = approx_fprime( x0, calculate_cost_function, *args) | |
hessian[:, j] = (f2 - f1)/epsilon # scale... | |
xx[j] = xx0 # Restore initial value of x0 | |
return hessian | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi there. I second @glederrey. There are huge discrepancies between this result and that of
numdifftools
.