From dde63b3d8e1c2ab291154d76e65c638d1140eafe Mon Sep 17 00:00:00 2001 From: zzaebok Date: 2018年11月12日 07:32:06 +0000 Subject: [PATCH] =?UTF-8?q?=EB=B3=80=EC=88=98=20b=EC=9D=98=20=EC=B0=A8?= =?UTF-8?q?=EC=9B=90=EC=9D=84=20[2,1]=20=EC=97=90=EC=84=9C=20[1,2]?= =?UTF-8?q?=EB=A1=9C=20=EC=88=98=EC=A0=95=ED=95=98=EC=98=80=EC=8A=B5?= =?UTF-8?q?=EB=8B=88=EB=8B=A4.=20=EC=9D=B4=EB=8A=94,=20x=5Fdata=EA=B0=80?= =?UTF-8?q?=20row=EA=B8=B0=EC=A4=80=EC=9C=BC=EB=A1=9C=20=EB=93=A4=EC=96=B4?= =?UTF-8?q?=EC=98=A4=EA=B8=B0=20=EB=95=8C=EB=AC=B8=EC=97=90=20=EC=9D=BC?= =?UTF-8?q?=EB=B0=98=EC=A0=81=20=EC=8B=9C=EA=B0=81=EC=97=90=EC=84=9C=20b?= =?UTF-8?q?=20=EB=98=90=ED=95=9C=20row=EA=B8=B0=EC=A4=80=EC=9C=BC=EB=A1=9C?= =?UTF-8?q?=20=EC=A0=81=EC=9A=A9=EB=90=98=EC=96=B4=EC=95=BC=20=ED=95=98?= =?UTF-8?q?=EA=B8=B0=20=EB=95=8C=EB=AC=B8=EC=9E=85=EB=8B=88=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 03 - TensorFlow Basic/02 - Variable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03 - TensorFlow Basic/02 - Variable.py b/03 - TensorFlow Basic/02 - Variable.py index 4af8c31f..6565004d 100644 --- a/03 - TensorFlow Basic/02 - Variable.py +++ b/03 - TensorFlow Basic/02 - Variable.py @@ -13,7 +13,7 @@ # tf.Variable: 그래프를 계산하면서 최적화 할 변수들입니다. 이 값이 바로 신경망을 좌우하는 값들입니다. # tf.random_normal: 각 변수들의 초기값을 정규분포 랜덤 값으로 초기화합니다. W = tf.Variable(tf.random_normal([3, 2])) -b = tf.Variable(tf.random_normal([2, 1])) +b = tf.Variable(tf.random_normal([1, 2])) # 입력값과 변수들을 계산할 수식을 작성합니다. # tf.matmul 처럼 mat* 로 되어 있는 함수로 행렬 계산을 수행합니다.

AltStyle によって変換されたページ (->オリジナル) /