텐서플로우 random_normal()

1 개요[ | ]

TensorFlow random_normal()
텐서플로우 random_normal()
  • 0~1 사이의 정규확률분포 값을 생성해주는 함수
  • 원하는 shape 대로 만들어줌
import tensorflow as tf

a = tf.random_normal([1],seed=42)

sess = tf.Session()
sess.run( tf.global_variables_initializer() )

for i in range(5):
    print( "a=", sess.run(a) )

# a= [-0.28077507]
# a= [-0.46845472]
# a= [ 0.43680111]
# a= [ 1.84128189]
# a= [-2.34544516]
# a= [-1.39094079]

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}