Skip to content

Commit 6be8577

Browse files
committed
commit test
1 parent a547cc2 commit 6be8577

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pymc_experimental/inference/pathfinder.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,18 +99,16 @@ def fit_pathfinder(
9999

100100
model = modelcontext(model)
101101

102-
ip = model.initial_point() # DEV: testing
102+
ip = model.initial_point()
103103
ip_map = DictToArrayBijection.map(ip)
104104

105105
new_logprob, new_input = pm.pytensorf.join_nonshared_inputs(
106106
ip, (model.logp(),), model.value_vars, ()
107107
)
108108

109109
logprob_fn_list = get_jaxified_graph([new_input], new_logprob)
110-
# DEV: testing
111110

112111
def logprob_fn(x):
113-
# DEV: testing
114112
return logprob_fn_list(x)[0]
115113

116114
[pathfinder_seed, sample_seed] = _get_seeds_per_chain(random_seed, 2)

0 commit comments

Comments
 (0)