- tensorflow.python.framework.errors_impl.UnknownError: 2 root error(s) found.
에러 메세지 : batch() got an unexpected keyword argument ‘drop_remainder’
에러 원인 : Tensorflow 버전이 업그레이드 되면서 run_classifier.py의 drop_remainder 파라미터가 없어졌다.
해결 방법 : runclassfier.py 파일에서 drop_remainder 코드를 제거해줘야 한다.
에러 메세지 : TypeError: Expected int32, got list containing Tensors of type _Message instead.
에러 원인 : Tensorflow가 1.x 대로 업그레이드 되면서 tf.concat의 input이 달라져서 생기는 문제이다. 이미지와 같이 수정해준다.
해결 방법 : parameter 위치만 바꿔주면 된다.
에러 메세지 : Only call softmax_cross_entropy_with_logits with named argument
에러 원인 : 텐서플로우가 1.x 대로 업그레이드 되면서 생긴 문제이다.
함수 사용할 때 이미지와 같이 parameter를 구체적으로 표시해주어야 한다.
해결 방법 : labels 와 logits를 붙여주어야 한다.
Update your browser to view this website correctly. Update my browser now