You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -15,18 +15,17 @@ A low-overhead implementation of Halley's Method.
15
15
- `autodiff`: determines the backend used for the Jacobian. Defaults to `nothing` (i.e.
16
16
automatic backend selection). Valid choices include jacobian backends from
17
17
`DifferentiationInterface.jl`.
18
-
- `taylor_mode`: whether to use Taylor mode automatic differentiation to compute the Hessian-vector-vector product. Defaults to `Val(false)`. If `Val(true)`, you must have `TaylorDiff.jl` loaded.
18
+
In addition, `AutoTaylorDiff` can be used to enable Taylor mode for computing the Hessian-vector-vector product more efficiently; in this case, the Jacobian would still be calculated using the default backend. You need to have `TaylorDiff.jl` loaded to use this option.
0 commit comments