Add files via upload
This commit is contained in:
parent
45d56b1b5a
commit
5519c1d71f
2 changed files with 15 additions and 0 deletions
BIN
data_log.npy
Normal file
BIN
data_log.npy
Normal file
Binary file not shown.
15
plot.py
Normal file
15
plot.py
Normal 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()
|
Loading…
Reference in a new issue