TensorFlow 'reduce_prod', 'kron', 'tf_normal','tf.nn.softmax','invkronprod','save&load'
1. tf.reduce_prod : 행렬이 있을 때 특정 row 혹은 column에 있는 원소들을 다 곱하는 연산이다. reduce_mean의 곱하기 버젼이다. 물론 rank를 줄이기 때문에 reduce가 붙어있다. sess = tf.Session()x = tf.constant([1,2,3,4,5,6]) x_rsh = tf.reshape(x,(-1,2))x_mul = tf.reduce_prod(x_rsh,axis=1) print sess.run(x)print sess.run(x_rsh)print sess.run(x_mul) [1 2 3 4 5 6] [[1 2] [3 4] [5 6]] [ 2 12 30] 2. kron : 이건 tf.tile이랑 비슷하지만, [a,b]를 [a,b,a,b]로 만들어주는 til..
더보기