event.py 2.0 KB
Newer Older
Y
Yu Yang 已提交
1
"""
Q
qijun 已提交
2
Testing and training events.
3 4 5

There are:

Q
qijun 已提交
6
* TestResult
7 8 9 10
* BeginIteration
* EndIteration
* BeginPass
* EndPass
Y
Yu Yang 已提交
11
"""
Y
Yu Yang 已提交
12 13 14
__all__ = [
    'EndIteration', 'BeginIteration', 'BeginPass', 'EndPass', 'TestResult'
]
Y
Yu Yang 已提交
15 16


Y
Yu Yang 已提交
17 18
class WithMetric(object):
    def __init__(self, evaluator):
Y
Yu Yang 已提交
19
        import py_paddle.swig_paddle as api
Y
Yu Yang 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33
        if not isinstance(evaluator, api.Evaluator):
            raise TypeError("Evaluator should be api.Evaluator type")
        self.__evaluator__ = evaluator

    @property
    def metrics(self):
        names = self.__evaluator__.getNames()
        retv = dict()
        for each_name in names:
            val = self.__evaluator__.getValue(each_name)
            retv[each_name] = val
        return retv


Y
Yu Yang 已提交
34
class TestResult(WithMetric):
Y
Yu Yang 已提交
35 36 37 38
    """
    Result that trainer.test return.
    """

Y
Yu Yang 已提交
39
    def __init__(self, evaluator, cost):
Y
Yu Yang 已提交
40
        super(TestResult, self).__init__(evaluator)
Y
Yu Yang 已提交
41
        self.cost = cost
Y
Yu Yang 已提交
42 43


Y
Yu Yang 已提交
44 45 46 47 48 49 50 51 52 53 54 55
class BeginPass(object):
    """
    Event On One Pass Training Start.
    """

    def __init__(self, pass_id):
        self.pass_id = pass_id


class EndPass(WithMetric):
    """
    Event On One Pass Training Complete.
武毅 已提交
56 57
    To get the output of a specific layer, add "event.gm.getLayerOutputs('predict_layer')"
    in your event_handler call back
Y
Yu Yang 已提交
58 59
    """

武毅 已提交
60
    def __init__(self, pass_id, evaluator, gm):
Y
Yu Yang 已提交
61
        self.pass_id = pass_id
武毅 已提交
62
        self.gm = gm
Y
Yu Yang 已提交
63 64 65 66 67 68 69 70 71 72 73 74 75 76
        WithMetric.__init__(self, evaluator)


class BeginIteration(object):
    """
    Event On One Batch Training Start.
    """

    def __init__(self, pass_id, batch_id):
        self.pass_id = pass_id
        self.batch_id = batch_id


class EndIteration(WithMetric):
Y
Yu Yang 已提交
77 78
    """
    Event On One Batch Training Complete.
武毅 已提交
79 80
    To get the output of a specific layer, add "event.gm.getLayerOutputs('predict_layer')"
    in your event_handler call back
Y
Yu Yang 已提交
81 82
    """

武毅 已提交
83
    def __init__(self, pass_id, batch_id, cost, evaluator, gm):
Y
Yu Yang 已提交
84 85 86
        self.pass_id = pass_id
        self.batch_id = batch_id
        self.cost = cost
武毅 已提交
87
        self.gm = gm
Y
Yu Yang 已提交
88
        WithMetric.__init__(self, evaluator)