Compute coefficient of x1
(self, t)
| 147 | |
| 148 | |
| 149 | def compute_alpha_t(self, t): |
| 150 | """Compute coefficient of x1""" |
| 151 | alpha_t = self.log_mean_coeff(t) |
| 152 | alpha_t = th.exp(alpha_t) |
| 153 | d_alpha_t = alpha_t * self.d_log_mean_coeff(t) |
| 154 | return alpha_t, d_alpha_t |
| 155 | |
| 156 | def compute_sigma_t(self, t): |
| 157 | """Compute coefficient of x0""" |
nothing calls this directly
no outgoing calls
no test coverage detected