UOMOP

line graph 본문

MAE

line graph

Happy PinGu 2024. 2. 21. 11:37
import matplotlib.pyplot as plt

X = [0.3, 0.75, 0.9]

Y1 = [83.4, 84.9, 83]
Y2 = [84.9, 88.9, 87.3]

# 각각의 그래프에 다른 색상을 지정
plt.plot(X, Y2, color='blue', marker='o', alpha=0.5, linewidth=2, label='My result (Cifar10)')
plt.plot(X, Y1, color='red', marker='o', alpha=0.5, linewidth=2, label='Paper result (ImageNet)')

plt.title("Paper result vs My result")
plt.ylabel("Accuracy")
plt.xlabel("Masking ratio")
plt.ylim([81, 91])

# 범례 추가
plt.legend()

# 가로 grid 선 추가
plt.grid(axis='y', linestyle='--', alpha=0.7)

plt.show()

'MAE' 카테고리의 다른 글

ㅇㄹㅇㄹ  (0) 2024.05.23
CBS (odd, even) masking  (0) 2024.04.18
bar graph  (0) 2024.02.21
Comments