Skip to content

Commit eff1c6a

Browse files
committed
minor fix
1 parent 261583d commit eff1c6a

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

pymc3/smc/sample_smc.py

+14-14
Original file line numberDiff line numberDiff line change
@@ -210,20 +210,20 @@ def sample_smc(
210210

211211

212212
def sample_smc_int(
213-
draws=2000,
214-
kernel="metropolis",
215-
n_steps=25,
216-
start=None,
217-
tune_steps=True,
218-
p_acc_rate=0.99,
219-
threshold=0.5,
220-
epsilon=1.0,
221-
dist_func="gaussian_kernel",
222-
sum_stat="identity",
223-
model=None,
224-
random_seed=-1,
225-
chain=0,
226-
_log=None,
213+
draws,
214+
kernel,
215+
n_steps,
216+
start,
217+
tune_steps,
218+
p_acc_rate,
219+
threshold,
220+
epsilon,
221+
dist_func,
222+
sum_stat,
223+
model,
224+
random_seed,
225+
chain,
226+
_log,
227227
):
228228

229229
smc = SMC(

0 commit comments

Comments
 (0)