Skip to content

Commit

Permalink
update bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
rakow committed Jul 11, 2024
1 parent 0fe2a82 commit 1c32424
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/python/choicemodels/estimate_biogeme_plan_choice.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@
ASC[mode] = asc
else:
# The random parameter
SD[mode] = Beta(f"ASC_{mode}_s", 1, None, None, 0)
SD[mode] = Beta(f"ASC_{mode}_s", 1, None, None, ESTIMATE)
ASC[mode] = asc + SD[mode] * bioDraws(f"{mode}_RND", "NORMAL_ANTI")

B_UTIL = Beta('B_CAR_UTIL', 10, 0, 20, 0)
B_UTIL_S = Beta('B_CAR_UTIL_SD', 1, 0, 10, 0)
B_UTIL = Beta('B_CAR_UTIL', 10, 0, 15, ESTIMATE)
B_UTIL_S = Beta('B_CAR_UTIL_SD', 1, 0, 15, ESTIMATE)

B_CAR_RND = B_UTIL + B_UTIL_S * bioDraws('B_CAR_UTIL_RND', 'TN')

Expand Down

0 comments on commit 1c32424

Please sign in to comment.