|
MONOTONICALLY_INCREASING_OPS = (Exp, Log, Add, Sinh, Tanh, ArcSinh, ArcCosh, ArcTanh, Erf, Sigmoid) |
|
MONOTONICALLY_DECREASING_OPS = (Erfc, Erfcx) |
We recently added them in pymc-devs/pytensor#2053
We can remove those manual definition, and instead check for the properties in the part of the code that was accessing that list. Requires a bit of refactoring
pymc/pymc/logprob/transforms.py
Lines 233 to 234 in 6182801
We recently added them in pymc-devs/pytensor#2053
We can remove those manual definition, and instead check for the properties in the part of the code that was accessing that list. Requires a bit of refactoring