deep-learning-tensorflow-book-code
deep-learning-tensorflow-book-code copied to clipboard
[『텐서플로로 배우는 딥러닝』, 솔라리스, 영진닷컴, 2018] 도서의 소스코드입니다.
"/" 를 "\\" 로 바꾸는 작업을 완료 했는데도 에러가 계속 발생합니다. Traceback (most recent call last): File "FCN.py", line 231, in tf.app.run() File "C:\Users\user\anaconda3\envs\FCN\lib\site-packages\tensorflow\python\platform\app.py", line 126, in run _sys.exit(main(argv)) File...
image_test = Image.open('test.jpg') image_test = image_test.resize((224, 224)) image_test = np.array(image_test) image_test = image_test / 255. image_test= np.reshape(image_test, (1, 224, 224, 3)) pred = sess.run(pred_annotation, feed_dict={image: image_test, keep_probability: 1.0}) 학습된 파라미터를...
Hello! Our static bug checker has found a performance issue in Appendix/pix2pix_v2_keras.py: Python type argument [`epoch`](https://github.com/solaris33/deep-learning-tensorflow-book-code/blob/498f3295bc6ed5ae2ce14db727aa6347d299e112/Appendix/pix2pix_v2_keras.py#L349) is passed to tf.function decorated function [`train_step`](https://github.com/solaris33/deep-learning-tensorflow-book-code/blob/498f3295bc6ed5ae2ce14db727aa6347d299e112/Appendix/pix2pix_v2_keras.py#L235) instead of tensors. As there is a...