trainer_factory.py 1.5 KB
Newer Older
D
dongdaxiang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#   Copyright (c) 2019 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.

D
dongdaxiang 已提交
15 16
from .trainer_desc import MultiTrainer, DistMultiTrainer
from .device_worker import Hogwild, DownpourSGD
X
xujiaqi01 已提交
17

D
dongdaxiang 已提交
18 19 20 21 22 23 24 25
__all__ = ["TrainerFactory"]


class TrainerFactory(object):
    def __init__(self):
        pass

    def create_trainer(self, opt_info=None):
D
dongdaxiang 已提交
26 27
        trainer = None
        device_worker = None
D
dongdaxiang 已提交
28
        if opt_info == None:
D
dongdaxiang 已提交
29 30 31 32
            # default is MultiTrainer + Hogwild
            trainer = MultiTrainer()
            device_worker = Hogwild()
            trainer.set_device_worker(device_worker)
D
dongdaxiang 已提交
33
        else:
D
dongdaxiang 已提交
34 35 36 37
            trainer_class = opt_info["trainer"]
            device_worker_class = opt_info["device_worker"]
            trainer = globals()[trainer_class]()
            device_worker = globals()[device_worker_class]()
D
dongdaxiang 已提交
38
            device_worker.set_fleet_desc(opt_info["fleet_desc"])
D
dongdaxiang 已提交
39 40 41
            trainer.set_device_worker(device_worker)
            trainer.set_fleet_desc(opt_info["fleet_desc"])
        return trainer