python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Inequality Constraint for a PYMC3 Model
I want to define an inequality constraint for a PYMC3 model. I found this post about defining an equality constraint (i.e., a+b1+b2=1) using pm.Potential. Does anyone know how to change that equality ...

H2H
Votes: 0
Answers: 1
How to declare a binomial distribution variable with changing parameters in pymc3
I would like to declare a binomial variable that is intermediate and not observed, used to compute another deterministic variable that is observed. If I had the observations, I could declare the follo...

cserpell
Votes: 0
Answers: 1
How to solve the Mass matrix error with degree of freedom and scale parameters of Student T distribution using Pymc3?
I have been working using the following codes to acquire the Bayesian Fusion of StudentT distribution.
Fusion code:
def S2_0_Bayesian_Interface(data):
#################################################...

WDpad159
Votes: 0
Answers: 0
PyMC3/Arviz: CDF value from trace
I have a sample from PyMC3 and I'm trying to get a cumulative probability from it, e.g. P(X < 0). I currently use this:
trace = pymc3.sample(return_inferencedata=True)
prob_x_lt_zero = (trace.poste...
Christian Aichinger
Votes: 0
Answers: 2