def setUp(self):
self.x = numpy.random.uniform(
-1, 1, (10, self.in_channels, 5, 5)
).astype(numpy.float32)
out = self.out1 + self.out3 + self.out5 + self.proj_pool
self.gy = numpy.random.uniform(
-1, 1, (10, out, 5, 5)).astype(numpy.float32)
self.l = links.Inception(
self.in_channels, self.out1, self.proj3, self.out3,
self.proj5, self.out5, self.proj_pool)
评论列表
文章目录