__init__.py 1.8 KB
Newer Older
Q
qiaolongfei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
# Copyright (c) 2016 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.
Y
yi.wu 已提交
14
import os
Q
qiaolongfei 已提交
15
import optimizer
Q
qiaolongfei 已提交
16
import layer
17
import activation
Y
Yu Yang 已提交
18 19
import parameters
import trainer
Y
Yu Yang 已提交
20
import event
21
import data_type
Q
qiaolongfei 已提交
22
import topology
D
dangqingqing 已提交
23
import data_feeder
Q
qiaolongfei 已提交
24
import networks
Y
Yu Yang 已提交
25
import evaluator
Y
Yu Yang 已提交
26
from . import dataset
Y
Yu Yang 已提交
27
from . import reader
Y
Yancey1989 已提交
28
from . import plot
29
from . import master
L
Luo Tao 已提交
30
import attr
X
xuwei06 已提交
31
import op
L
Luo Tao 已提交
32
import pooling
33
import inference
Y
Yu Yang 已提交
34
import networks
35
import py_paddle.swig_paddle as api
H
Helin Wang 已提交
36
import minibatch
Y
Yancey1989 已提交
37
import plot
D
dangqingqing 已提交
38
import image
39

Q
qiaolongfei 已提交
40
__all__ = [
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
    'optimizer',
    'layer',
    'activation',
    'parameters',
    'init',
    'trainer',
    'event',
    'data_type',
    'attr',
    'pooling',
    'data_feeder',
    'dataset',
    'reader',
    'topology',
    'networks',
    'infer',
    'plot',
    'evaluator',
    'image',
    'master',
Q
qiaolongfei 已提交
61
]
Y
Yu Yang 已提交
62 63 64 65


def init(**kwargs):
    args = []
W
wuyi05 已提交
66
    args_dict = {}
Y
yi.wu 已提交
67 68
    # NOTE: append arguments if they are in ENV
    for ek, ev in os.environ.iteritems():
W
wuyi05 已提交
69 70
        if ek.startswith("PADDLE_INIT_"):
            args_dict[ek.replace("PADDLE_INIT_", "").lower()] = str(ev)
Y
yi.wu 已提交
71

W
wuyi05 已提交
72
    args_dict.update(kwargs)
Y
yi.wu 已提交
73
    # NOTE: overwrite arguments from ENV if it is in kwargs
W
wuyi05 已提交
74
    for key in args_dict.keys():
Y
Yancey1989 已提交
75
        args.append('--%s=%s' % (key, str(args_dict[key])))
Q
qiaolongfei 已提交
76

Y
Yu Yang 已提交
77
    api.initPaddle(*args)
Y
Yu Yang 已提交
78

Y
Yu Yang 已提交
79

Y
Yu Yang 已提交
80 81
infer = inference.infer
batch = minibatch.batch