| 18 | // draw random noise from Normal(0, 1) |
| 19 | struct RandomNormal : public Node { |
| 20 | explicit RandomNormal(const Dim& d, float m=0.f, float s=1.f) : dim(d), mean(m), stddev(s) {} |
| 21 | DYNET_NODE_DEFINE_DEV_IMPL() |
| 22 | virtual bool supports_multibatch() const override { return true; } |
| 23 | Dim dim; |
nothing calls this directly
no outgoing calls
no test coverage detected