Skip to content

Commit

Permalink
fix compile error in advi test
Browse files Browse the repository at this point in the history
  • Loading branch information
Red-Portal committed Jul 15, 2023
1 parent d50cabb commit b134f70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/advi_locscale.jl
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ include("models/normallognormal.jl")
),
(objname, objective) Dict(
:ADVIClosedFormEntropy => (model, b, M) -> ADVI(model, M; b),
:ADVIStickingTheLanding => (model, b, M) -> ADVI(model, M; b, H = StickingTheLandingEntropy()),
:ADVIFullMonteCarlo => (model, b, M) -> ADVI(model, M; b, H = MonteCarloEntropy()),
:ADVIStickingTheLanding => (model, b, M) -> ADVI(model, M; b, entropy = StickingTheLandingEntropy()),
:ADVIFullMonteCarlo => (model, b, M) -> ADVI(model, M; b, entropy = MonteCarloEntropy()),
),
(adbackname, adbackend) Dict(
:ForwarDiff => AutoForwardDiff(),
Expand Down

0 comments on commit b134f70

Please sign in to comment.