반응형
Deep Learning & Machine Learning/강좌&예제 코드2018. 8. 30. 22:33예제로 배우는 텐서플로우 강좌 - 3. 플레이스 홀더(Placeholder)

플레이스 홀더(tf.placeholder)에 대해 알아봅니다. 다음 사이트에 있는 텐서플로우 예제들을 공부한 결과를 비정기적으로 올릴 예정입니다.https://github.com/aymericdamien/TensorFlow-Examples 텐서플로우 2.0에서 텐서플로우 1.x 코드를 실행하는 방법을 설명합니다. Tensorflow 2.0에서 Tensorflow 1.x 코드 실행하기https://webnautes.tistory.com/1393 tf.constant 함수에서는 입력으로 사용할 값을 아규먼트로 입력해줘야 했지만 a = tf.constant(2) tf.placeholder 함수는 입력으로 사용할 데이터의 타입만 지정해주고 실제값은 나중에 세션에서 실행될때 입력해줍니다. from __future..

반응형
image