Commit 4263fdcb authored by Khalique's avatar Khalique
Browse files

formatting

parent 45665c93
......@@ -71,8 +71,10 @@ struct lrn
template <class Self, class F>
static auto reflect(Self& self, F f)
{
return pack(
f(self.alpha, "alpha"), f(self.beta, "beta"), f(self.bias, "bias"), f(self.size, "size"));
return pack(f(self.alpha, "alpha"),
f(self.beta, "beta"),
f(self.bias, "bias"),
f(self.size, "size"));
}
shape compute_shape(std::vector<shape> inputs) const
......@@ -80,7 +82,6 @@ struct lrn
check_shapes{inputs, *this}.has(1);
return inputs.front();
}
};
struct convolution
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment