Skip to content

Commit

Permalink
Fix comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
gkronber committed May 3, 2023
1 parent d61dd7c commit eac45ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HEAL.NonlinearRegression/Likelihoods/LikelihoodBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public abstract class LikelihoodBase {
public abstract double NegLogLikelihood(double[] p);
public abstract void NegLogLikelihoodGradient(double[] p, out double nll, double[]? nll_grad = null);

public abstract double[,] FisherInformation(double[] p); // Hessian of the log likelihood
public abstract double[,] FisherInformation(double[] p); // negative of Hessian of the log likelihood

public abstract LikelihoodBase Clone();

Expand Down

0 comments on commit eac45ab

Please sign in to comment.