elicit.helpers module#

elicit.helpers.save_as_pkl(variable, path_to_file)[source]#

Helper functions to save a file as pickle.

Parameters:
variableany

file that needs to be saved.

path_to_filestr

path indicating the file location.

Returns:
None.
elicit.helpers.identity(x)[source]#
class elicit.helpers.DoubleBound(lower, upper)[source]#

Bases: object

__init__(lower, upper)[source]#
logit(x)[source]#
inv_logit(x)[source]#
forward(x)[source]#
inverse(x)[source]#
class elicit.helpers.LowerBound(lower)[source]#

Bases: object

__init__(lower)[source]#
forward(x)[source]#
inverse(x)[source]#
class elicit.helpers.UpperBound(upper)[source]#

Bases: object

__init__(upper)[source]#
forward(x)[source]#
inverse(x)[source]#