Deep Learning & Machine Learning/강좌&예제 코드2018. 8. 30. 22:34예제로 배우는 텐서플로우 강좌 - 4. 행렬(matrix) 계산
텐서플로우에서 행렬 계산하는 방법을 설명합니다. 다음 사이트에 있는 텐서플로우 예제들을 공부한 결과를 비정기적으로 올릴 예정입니다.https://github.com/aymericdamien/TensorFlow-Examples 텐서플로우 2.0에서 텐서플로우 1.x 코드를 실행하는 방법을 설명합니다. Tensorflow 2.0에서 Tensorflow 1.x 코드 실행하기https://webnautes.tistory.com/1393 같은 크기의 행렬간의 덧셈과 뺄셈은 tf.add와 tf.subtract 함수로 계산할 수 있습니다. from __future__ import print_function import tensorflow as tf # 2 x 2 행렬 # | 1 2 | # | 3 4 | matrix1..