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