Deep Learning & Machine Learning/강좌&예제 코드2024. 3. 28. 21:15Tensorflow에서 재현 가능한 결과(reproducible results) 얻기
텐서플로우에서 다음과 같은 간단한 MNIST 예제를 실행시켜보면 매번 학습 결과가 다른 것을 확인할 수 있습니다. 실행할때마다 일정한 학습 결과를 얻는 방법을 다룹니다. 2021. 7. 29 - 최초작성 2024. 3. 21 - RANDOM_SEED 변경, Tensorflow 2.15에서 테스트 2024. 3. 28 재현가능한 결과 보장 방법 수정 # https://www.tensorflow.org/tutorials/quickstart/beginner import tensorflow as tf mnist = tf.keras.datasets.mnist (x_train, y_train), (x_test, y_test) = mnist.load_data() x_train, x_test = x_train / 25..