Example #1
0
 def __init__(self):
     GibbsSampler.__init__(self, [GSVar_X()], nb_its_max=100)
Example #2
0
 def __init__(self, nb_its, burnin, x_init):
     GibbsSampler.__init__(self, [GSVar_X(x_init)], nb_its_max=nb_its,
                           burnin=burnin)
Example #3
0
 def __init__(self, sample_hist_pace, obs_hist_pace):
     GibbsSampler.__init__(self, [GSVar_X()], nb_its_max=10,
                           sample_hist_pace=sample_hist_pace,
                           obs_hist_pace=obs_hist_pace)
Example #4
0
 def __init__(self, nb_its, burnin, obs_hist_pace, smpl_hist_pace):
     GibbsSampler.__init__(self, [GSVar_X()], nb_its_max=nb_its,
                           obs_hist_pace=obs_hist_pace,
                           sample_hist_pace=smpl_hist_pace,
                           burnin=burnin)
Example #5
0
 def __init__(self, ):
     sampled_variables = [HrfSubjectSampler()]
     GibbsSampler.__init__(self, sampled_variables, nb_its_max=10,
                           sample_hist_pace=sample_hist_pace,
                           obs_hist_pace=obs_hist_pace)