keraspp
                                
                                
                                
                                    keraspp copied to clipboard
                            
                            
                            
                        코딩셰프의 3분 딥러닝, 케라스맛
ex4_2_cnn_cifar10_cl 실행하니 아래와 같은 에러가 납니다. 도와주세요. ``` During handling of the above exception, another exception occurred: Traceback (most recent call last): File "C:/Users/softg/PycharmProjects/test/keraspp/ex4_2_cnn_cifar10_cl.py", line 22, in main() File "C:/Users/softg/PycharmProjects/test/keraspp/ex4_2_cnn_cifar10_cl.py",...
`Backend_for_Lambda()`의 `yp = m.predict_on_batch([[1, 2, 3], [3, 4, 8]])` 부분에서 다음과 같은 에러가 발생하고 있습니다. ``` ValueError: Error when checking model input: the list of Numpy arrays that you are...
파이썬3.7, 텐서플로2.0 cpu 버전입니다. 에포크에 따른 accuracy 변화는 아래와 같습니다. 책에 나온 결과와 차이가 매우 크게 납니다. 왜 그런 걸까요. ----------------------------------------------------------------------------------------------------- runfile('D:/Python/merong.py', wdir='D:/Python') (60000, 784) (10000, 784) Train on 60000...
``` # data normalize data_dn = (data - np.mean(data)) / np.std(data) / 5 plt.plot(data_dn) ``` data_dn = (data - np.mean(data)) / np.std(data) 이것만으로도 충분하지 않을까요? 5로 나눈 이유를 알고 싶습니다
Using TensorFlow backend. Output_fold is GAN_OUT 2018-11-25 08:56:45.589349: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX 2018-11-25 08:56:45.679946: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:964]...
제가 keras에서 구현한 ANN 혹은 DNN 학습 결과를 C/C++로 된 프로그램에 적용하고자 합니다. 그러기 위해서 C/C++로 Neural network 코드를 만들었고, keras에서 계산한 hidden layer와 출력 layer의 weight와 bias 값을 출력해서...
Y_train, Y_test가 matrix로 변환되기 때문에 대문자를 사용해야 할 것 같습니다. 또한 ex2_1에서는 대문자로 사용되어 있기 때문에 통일성이 필요할것 같습니다. 확인 부탁 드립니다 :)
https://github.com/jskDr/keraspp/blob/4090fcc86072cda816d1d6056b5113ace49534ae/ex6_2_ae_conv_mnist_mc.py#L29 리포지토리 코드와 책에 따르면 인코딩 모델의 마지막 레이어는 7x7 사이즈를 갖도록 설정되었는데요, ``` _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= input_12 (InputLayer) (None, 28, 28, 1) 0 _________________________________________________________________...