TensorFlow-Tutorials icon indicating copy to clipboard operation
TensorFlow-Tutorials copied to clipboard

텐서플로우를 기초부터 응용까지 단계별로 연습할 수 있는 소스 코드를 제공합니다

Results 24 TensorFlow-Tutorials issues
Sort by recently updated
recently updated
newest added

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 ![image](https://user-images.githubusercontent.com/44729645/52799506-f273d700-3047-11e9-807b-bc311ad221d9.png)

jupyter에서는 fig = plt.figure() 가 다른 행에 있으면, plot이 실행 안됨. ![image](https://user-images.githubusercontent.com/44729645/52739680-69a16080-2f9f-11e9-9391-f540f545f46d.png) 같은 행에 있어야만 실행되는데 왜 그럴까요?

![image](https://user-images.githubusercontent.com/44729645/52737934-8471d600-2f9b-11e9-9424-1b3119163ee8.png) batch normazation을 해보려고 하는데, is_training은 어떻게 설정을 하나요?

![image](https://user-images.githubusercontent.com/44729645/52737889-6d32e880-2f9b-11e9-864a-68e605e47ad6.png)

출력은 다음과 같습니다. ``` ... 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` 이런 메시지가 나옵니다....