forked from harvitronix/five-video-classification-methods
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plot_trainlog.py
26 lines (23 loc) · 858 Bytes
/
plot_trainlog.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
"""
Given a training log file, plot something.
"""
import csv
import matplotlib.pyplot as plt
def main(training_log):
with open(training_log) as fin:
reader = csv.reader(fin)
next(reader, None) # skip the header
accuracies = []
top_5_accuracies = []
cnn_benchmark = [] # this is ridiculous
for epoch,acc,loss,top_k_categorical_accuracy,val_acc,val_loss,val_top_k_categorical_accuracy in reader:
accuracies.append(float(val_acc))
top_5_accuracies.append(float(val_top_k_categorical_accuracy))
cnn_benchmark.append(0.65) # ridiculous
plt.plot(accuracies)
plt.plot(top_5_accuracies)
plt.plot(cnn_benchmark)
plt.show()
if __name__ == '__main__':
training_log = 'data/logs/mlp-training-1489455559.7089438.log'
main(training_log)