plot_curve.py 1.0 KB
Newer Older
Q
qiaolongfei 已提交
1 2 3 4 5 6 7 8
import matplotlib.pyplot as plt
from IPython import display


class PlotCost(object):
    """
    append train and test cost in event_handle and then call plot.
    """
Q
qiaolongfei 已提交
9

Q
qiaolongfei 已提交
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
    def __init__(self):
        self.train_costs = ([], [])
        self.test_costs = ([], [])

    def plot(self):
        plt.plot(*self.train_costs)
        plt.plot(*self.test_costs)
        title = []
        if len(self.train_costs[0]) > 0:
            title.append('Train Cost')
        if len(self.test_costs[0]) > 0:
            title.append('Test Cost')
        plt.legend(title, loc='upper left')
        display.clear_output(wait=True)
        display.display(plt.gcf())
        plt.gcf().clear()

    def append_train_cost(self, step, cost):
        self.train_costs[0].append(step)
        self.train_costs[1].append(cost)

    def append_test_cost(self, step, cost):
        self.test_costs[0].append(step)
        self.test_costs[1].append(cost)

    def reset(self):
        self.train_costs = ([], [])
        self.test_costs = ([], [])