__init__.py 1.3 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.
Q
qiaolongfei 已提交
14
import optimizer
Q
qiaolongfei 已提交
15
import layer
16
import activation
Y
Yu Yang 已提交
17 18
import parameters
import trainer
Y
Yu Yang 已提交
19
import event
20
import data_type
Q
qiaolongfei 已提交
21
import topology
D
dangqingqing 已提交
22
import data_feeder
Q
qiaolongfei 已提交
23
import networks
Y
Yu Yang 已提交
24
from . import dataset
Y
Yu Yang 已提交
25
from . import reader
L
Luo Tao 已提交
26
import attr
L
Luo Tao 已提交
27
import pooling
28
import inference
Y
Yu Yang 已提交
29
import networks
30
import py_paddle.swig_paddle as api
H
Helin Wang 已提交
31
import minibatch
32

Q
qiaolongfei 已提交
33
__all__ = [
Q
qiaolongfei 已提交
34
    'optimizer', 'layer', 'activation', 'parameters', 'init', 'trainer',
35
    'event', 'data_type', 'attr', 'pooling', 'data_feeder', 'dataset', 'reader',
36
    'topology', 'networks', 'infer'
Q
qiaolongfei 已提交
37
]
Y
Yu Yang 已提交
38 39 40 41 42 43


def init(**kwargs):
    args = []
    for key in kwargs.keys():
        args.append('--%s=%s' % (key, str(kwargs[key])))
Q
qiaolongfei 已提交
44

Y
Yu Yang 已提交
45
    api.initPaddle(*args)
Y
Yu Yang 已提交
46

Y
Yu Yang 已提交
47 48
infer = inference.infer
batch = minibatch.batch