File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -290,14 +290,14 @@ def logp(rv: TensorVariable, value) -> TensorVariable:
290
290
raise NotImplementedError ("PyMC could not infer logp of input variable." ) from exc
291
291
292
292
293
- def logcdf (rv , value ) -> TensorVariable :
293
+ def logcdf (rv : TensorVariable , value ) -> TensorVariable :
294
294
"""Return the log-cdf graph of a Random Variable"""
295
295
296
296
value = at .as_tensor_variable (value , dtype = rv .dtype )
297
297
return logcdf_aeppl (rv , value )
298
298
299
299
300
- def ignore_logprob (rv ) -> TensorVariable :
300
+ def ignore_logprob (rv : TensorVariable ) -> TensorVariable :
301
301
"""Return a duplicated variable that is ignored when creating Aeppl logprob graphs
302
302
303
303
This is used in SymbolicDistributions that use other RVs as inputs but account
You can’t perform that action at this time.
0 commit comments