def __call__(self, x, t): h = F.sigmoid(self.l1(x)) h = F.sigmoid(self.l2(h)) y = F.mean_squared_error(h, t) return y