TensorFlow-Tutorials
TensorFlow-Tutorials copied to clipboard
텐서플로우를 기초부터 응용까지 단계별로 연습할 수 있는 소스 코드를 제공합니다
During the training, the keep_prob = 0.5, during inference, the keep_prob should be 1. I update the code by adding the keep_prob as `tf.placeholder`.
코드에서 보면 학습결과를 확인할 때 prediction = tf.argmax(model, axis=1)에서 model은 최적화하기 전의 모델이고, train_op는 최소의 cost값을 갖은 최적화 모델인데 왜 model을 넣어서 예측을 하나요? train_op을 넣어서도 프로그래밍해보았는데, 실행이 안되더라구요....왜 그러는지...
**Chapter 4. Neural Network Basic**의 **Classification.py** 문서를 열게 되면 아래와 같은 가중치 변수를 균일분포하중에 따른 난수생성을 통해 정의 하게 되어있습니다. **W = tf.Variable(tf.random_uniform([2, 3], -1., 1.)) b = tf.Variable(tf.zeros([3])) L...
activation = nn.tf.relu==> activation = tf.nn.relu 
jupyter에서는 fig = plt.figure() 가 다른 행에 있으면, plot이 실행 안됨.  같은 행에 있어야만 실행되는데 왜 그럴까요?
 batch normazation을 해보려고 하는데, is_training은 어떻게 설정을 하나요?

부탁드립니다. 감사합니다.
출력은 다음과 같습니다. ``` ... Epoch: 0560 D loss: -0.3683 G loss: -2.914 Epoch: 0561 D loss: -0.4309 G loss: -2.999 Epoch: 0562 D loss: -0.5485 G loss: -2.614 Epoch:...
현재 공홈에는 파이썬 3.7이 기본적으로 제공되는데, 그걸 설치하면 `Could not find a version that satisfies the requirement tensorflow (from versions: ) No matching distribution found for tensorflow` 이런 메시지가 나옵니다....