您好,登錄后才能下訂單哦!
PyStan 為 Stan 提供了一個 Python 接口,這是一個使用 No-U-Turn 采樣器進行貝葉斯推理的軟件包,這是Hamiltonian Monte Carlo 的一種變體。
PyStan具有以下依賴項:
Python:2.7,> = 3.3
Cython:> = 0.22
NumPy:> = 1.7
PyStan還要求在安裝和運行時可以使用C ++編譯器。 在基于Debian的系統上,這是通過發出命令apt-get install build-essential來完成的。
例子:
import pystan schools_code = """ data { int<lower=0> J; // number of schools vector[J] y; // estimated treatment effects vector<lower=0>[J] sigma; // s.e. of effect estimates } parameters { real mu; real<lower=0> tau; vector[J] eta; } transformed parameters { vector[J] theta; theta = mu + tau * eta; } model { eta ~ normal(0, 1); y ~ normal(theta, sigma); } """schools_dat = {'J': 8, 'y': [28, 8, -3, 7, -1, 1, 18, 12], 'sigma': [15, 10, 16, 11, 9, 11, 10, 18]} sm = pystan.StanModel(model_code=schools_code) fit = sm.sampling(data=schools_dat, iter=1000, chains=4)
需要資料,看個簡介
素材來源中:開源中國
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。