Source code for aind_dynamic_foraging_models.generative_model.params
"""Package for params"""
from enum import Enum
[docs]
class ParamsSymbols(str, Enum):
"""Symbols for the parameters.
The order determined the default order of parameters when output as a string.
"""
loss_count_threshold_mean = R"$\mu_{LC}$"
loss_count_threshold_std = R"$\sigma_{LC}$"
learn_rate = R"$\alpha$"
learn_rate_rew = R"$\alpha_{rew}$"
learn_rate_unrew = R"$\alpha_{unr}$"
forget_rate_unchosen = R"$\delta$"
choice_kernel_step_size = R"$\alpha_{ck}$"
choice_kernel_relative_weight = R"$w_{ck}$"
biasL = R"$b_L$"
softmax_inverse_temperature = R"$\beta$"
epsilon = R"$\epsilon$"
threshold = R"$\rho$" # Adding the threshold parameter with symbol ρ (rho)
reset_to_threshold = R"$\mathrm{reset}$"