728x90 반응형 업무 TIP/인공지능1 파이썬에서 train losses, train accuracy, test accuracy 보여주기 (내가 몰라서 정리한 글) 파이썬에서 figure() 함수는 matplotlib에서 그래프 그리는 것으로 이해함 import matplotlib.pyplot as plt 1) train losses plt.figure() plt.ylabel("Loss") plt.xlabel("Training Steps") plt.ylim([0,2]) plt.plot(fc_without_relu_batch_stats.batch_losses) 첫번째는 loss(손실율)구하는건데, x,y축 각각 Traning Steps와 Loss에 대한 그래프임 손실율이 낮을수록 좋은 알고리즘이라고 한다. 2) train accuracy plt.figure() plt.ylabel("Training Accuracy") plt.xlabel("T.. 2022. 10. 25. 이전 1 다음 728x90 반응형