问题 I am attempting to implement the model from the image. I am new to PyMC3 and I am not sure how to structure the model correctly. My attempt is below: # sample data logprem = np.array([8.66768002, 8.49862181, 8.60410456, 8.54966038, 8.55910259, 8.56216656, 8.51559191, 8.60630237, 8.56140145, 8.50956416]) with Model() as model: logelr = Normal('logelr', -0.4, np.sqrt(10), shape=10) α0 = 0 β9 = 0 α = Normal('α', 0, sigma=np.sqrt(10), shape=9) β = Normal('β', 0, sigma=np.sqrt(10), shape=9) a =