标签: pymc3
假设我有一个简单的模型,y = a * x + b 我想建模a = pymc3.Normal('a',mu = 0,sd = 1.,shape =(1)),一个正态分布,我想把b作为一个未知常数。 那么如何将pymc3对象分配给b? 谢谢。