[PYTHON] API Tensorflow: tf.truncated_normal

https://www.tensorflow.org/api_docs/python/tf/truncated_normal

Aperçu

Générer un tenseur extrait aléatoirement de la distribution normale de coupe de ± 2σ.

truncated_normal(
    shape,
    mean=0.0,
    stddev=1.0,
    dtype=tf.float32,
    seed=None,
    name=None
)

Exemple d'utilisation

import tensorflow as tf

x = tf.truncated_normal(shape=[2, 2], mean=0.0, stddev=1.0, dtype=tf.float32)
with tf.Session() as sess:
    x.eval()

Recommended Posts

API Tensorflow: tf.truncated_normal
API Tensorflow: FLAGS
API Tensorflow: tf.reverse
Mémo de l'API TensorFlow
[TF] À propos de l'API Tensorflow
Mémo de l'API TensorFlow (Python)
Détection de logo à l'aide de l'API de détection d'objets TensorFlow
Glossaire Tensorflow
tensorflow mnist_deep.py
Tutoriel du didacticiel TensorFlow
Trouvez une approximation polynomiale à l'aide de l'API de bas niveau de TensorFlow 2.x