Notes for "Truncated Normal Distribution"

Posted by Andrew Sun on February 27, 2019 · 102 1 min read

1. Definition

  • A normal distribution restricting the range of value of variable $x$.

2. Significance

  • The example calculation shows the reliability obtained under the trucated distribution at both end is more in line with the actual situation than that obtained under the theoreical distribution.

3. Implementation in tensorflow

    """
    Values more than two standard deviation from mean are discarded 
    or re-dram.
    Args:
        stddev: a python scalar or a scalar tensor. 
        Standard deviation of the random values to generate.
    """
    tf.truncated_normal_initializer(stddev=0.01)