* \brief Constructor * * \param m Mean of the gaussian distribution * \param v Variance of the gaussian distribution (reminder : the variance is the __square__ of the standard deviation) */
| 49 | * \param v Variance of the gaussian distribution (reminder : the variance is the __square__ of the standard deviation) |
| 50 | */ |
| 51 | ParameterInitNormal(float m = 0.0f, float v = 1.0f) : mean(m), var(v) {} |
| 52 | virtual void initialize_params(Tensor & values) const override; |
| 53 | private: |
| 54 | float mean, var; |
nothing calls this directly
no outgoing calls
no test coverage detected