카테고리 없음

module 'tensorflow._api.v1.train' has no attribute 'SummaryWriter'

나쁜천사1004 2019. 4. 24. 16:24

tensorboard 사용하기 위해 여러 샘플을 실행 하는 도중 tf.train.SummaryWriter실행시

아래와 같은 오류가 발생 하여 찾아본 결과를 작성한다.

 

#소스

import tensorflow as tf
'

'

'
tw = tf.train.SummaryWriter("log_dir", graph=sess.graph)

#에러

tw = tf.train.SummaryWriter("log_dir", graph=sess.graph)
AttributeError: module 'tensorflow._api.v1.train' has no attribute 'SummaryWriter'

 

#확인결과

tf.train.SummaryWriter 2016-11-30 이후에 deprecated 되었다고 한다.

tf.summary.FileWriter 사용하길 권장함..

반응형