We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcbbf87 commit 9705a8aCopy full SHA for 9705a8a
pymc/distributions/logprob.py
@@ -282,5 +282,9 @@ def logpt_sum(*args, **kwargs):
282
Subclasses can use this to improve the speed of logp evaluations
283
if only the sum of the logp values is needed.
284
"""
285
- # TODO: Deprecate this
+ warnings.warn(
286
+ "logpt_sum has been deprecated, you can use logpt instead, which now defaults"
287
+ "to the same behavior of logpt_sum",
288
+ DeprecationWarning,
289
+ )
290
return logpt(*args, sum=True, **kwargs)
0 commit comments