반응형
Notice
Recent Posts
Recent Comments
Link
관리 메뉴

bro's coding

tensorflow.행렬곱,전치행렬 본문

[AI]/python.tensorflow

tensorflow.행렬곱,전치행렬

givemebro 2020. 5. 11. 18:03
반응형

행렬곱

sess=tf.InteractiveSession()
tf.matmul([[1,2]],[[3],[4]]).eval()
array([[11]])

전치행렬

a=tf.constant([[1],[2]])
tf.transpose(a).eval()
array([[1, 2]])
반응형

'[AI] > python.tensorflow' 카테고리의 다른 글

tensorflow.분류(중간층).relu,sigmoid 비교  (0) 2020.05.12
tensorflow.분류(중간층X)  (0) 2020.05.12
tensorflow.placeholder  (0) 2020.05.11
tensorflow.irisdata적용  (0) 2020.05.11
tensorflow.optimizer  (0) 2020.05.11
tensorflow.Session/InteractiveSession  (0) 2020.05.11
tensorflow.basic  (0) 2020.05.11
tensorflow install  (0) 2020.05.11
Comments