mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-27 13:56:23 +02:00
Changing definitions again...
This commit is contained in:
parent
a9d5555976
commit
474d5484b0
3 changed files with 43 additions and 26 deletions
|
|
@ -81,11 +81,7 @@ class student_t(likelihood_function):
|
|||
Compute mean, and conficence interval (percentiles 5 and 95) of the prediction
|
||||
"""
|
||||
mean = np.exp(mu)
|
||||
p_025 = stats.t.ppf(025,mean)
|
||||
p_975 = stats.t.ppf(975,mean)
|
||||
|
||||
#p_025 = tmp[:,0]
|
||||
#p_975 = tmp[:,1]
|
||||
import ipdb; ipdb.set_trace() ### XXX BREAKPOINT
|
||||
return mean,p_025,p_975
|
||||
p_025 = stats.t.ppf(.025, mean)
|
||||
p_975 = stats.t.ppf(.975, mean)
|
||||
|
||||
return mean, np.nan*mean, p_025, p_975
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue