Skip to content

Commit

Permalink
minor bugfix with test
Browse files Browse the repository at this point in the history
  • Loading branch information
PTWaade committed Oct 8, 2024
1 parent 6d45b8a commit 0458de0
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions test/testsuite/test_fit_model.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,14 @@ using ActionModels: Turing

# Set fixed parsmeters and priors for fitting
test_fixed_parameters = Dict(
("x", "initial_mean") => 100,
("x", "initial_mean") => 1,
("xvol", "initial_mean") => 1.0,
("xvol", "initial_precision") => 600,
("xvol", "initial_precision") => 1,
("x", "xvol", "coupling_strength") => 1.0,
"action_noise" => 0.01,
("xvol", "volatility") => -10,
("u", "input_noise") => 4,
("xvol", "drift") => 1,
("x", "drift") => Normal(0, 1),
("x", "initial_mean") => Normal(1, 0.1),
)

test_param_priors = Dict(
Expand Down

0 comments on commit 0458de0

Please sign in to comment.