Add files via upload

This commit is contained in:
David Rotermund 2024-07-10 17:32:20 +02:00 committed by GitHub
parent 45d56b1b5a
commit 5519c1d71f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 15 additions and 0 deletions

BIN
data_log.npy Normal file

Binary file not shown.

15
plot.py Normal file
View file

@ -0,0 +1,15 @@
import numpy as np
import matplotlib.pyplot as plt
data = np.load("data_log.npy")
plt.loglog(
data[:, 0],
100.0 * (1.0 - data[:, 1] / 10000.0),
"k",
)
plt.legend()
plt.xlabel("Epoch")
plt.ylabel("Error [%]")
plt.title("CIFAR10")
plt.show()