You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since #905 was merged, we are storing the score of each individual choice/sample as part of the trace. (See here.) It looks like we can re-use these (rather than re-scoring) when computing MH transition probabilities, saving some work. i.e. here I guess we can replace choice.dist.score(choice.val) with choice.choiceScore.
The text was updated successfully, but these errors were encountered:
Since #905 was merged, we are storing the score of each individual choice/sample as part of the trace. (See here.) It looks like we can re-use these (rather than re-scoring) when computing MH transition probabilities, saving some work. i.e. here I guess we can replace
choice.dist.score(choice.val)
withchoice.choiceScore
.The text was updated successfully, but these errors were encountered: