trainer.py 1.5 KB
Newer Older
H
Helin Wang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

__all__ = [
    'Event',
    'Trainer',
]


21
class Event(object):
H
Helin Wang 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34
    BEGIN_EPOCH = 0
    END_EPOCH = 1
    BEGIN_STEP = 2
    END_STEP = 3

    def __init__(self):
        self.step = 0
        self.epoch = 0
        self.type = Event.BEGIN_EPOCH


class Trainer(object):
    def __init__(self, network_func, optimizer, params=None, place=None):
H
Helin Wang 已提交
35 36 37 38
        # we need to generate a framework.Program by calling
        # network_func reference: fluid.program_guard in test_word2vec.py
        # move the default_main_program to self.program
        # and run the default_startup program on an empty
H
Helin Wang 已提交
39 40 41 42
        self.network_func = network_func
        self.optimizer = optimizer
        self.params = params
        self.place = place
H
Helin Wang 已提交
43
        # TODO(helin): support distributed training
H
Helin Wang 已提交
44 45 46 47 48 49

    def train(self, reader, num_epochs, event_handler):
        pass

    def test(self, reader):
        pass