연구 노트/R Python

텐서플로 에러 AttributeError: module 'tensorflow' has no attribute 'set_random_seed'

airmaster 2021. 11. 4. 16:36
728x90

코드

>>>seed = 0
>>>numpy.random.seed(seed)
>>>tf.set_random_seed(seed)
AttributeError: module 'tensorflow' has no attribute 'set_random_seed'

 

에러 내용

AttributeError: module 'tensorflow' has no attribute 'set_random_seed'

 

원인

Tensorflow 버전에 따라 명령어 교체

 

해결

>>> tf.random.set_seed(seed) 으로 변경

 

 

728x90