__init__.py 1.1 KB
Newer Older
W
wuzewu 已提交
1
# Copyright (c) 2019  PaddlePaddle Authors. All Rights Reserved.
Z
Zeyu Chen 已提交
2 3 4 5 6 7 8 9 10 11 12 13
#
# 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.
W
wuzewu 已提交
14 15 16 17
from .dir import USER_HOME
from .dir import HUB_HOME
from .dir import MODULE_HOME
from .dir import CACHE_HOME
W
wuzewu 已提交
18 19
from . import module
from . import tools
W
wuzewu 已提交
20
from . import io
W
wuzewu 已提交
21
from .module.module import Module, create_module
W
wuzewu 已提交
22
from .module.base_processor import BaseProcessor
W
wuzewu 已提交
23
from .module.signature import Signature, create_signature
W
wuzewu 已提交
24
from .module.manager import default_module_manager
W
wuzewu 已提交
25 26
from .tools.logger import logger
from .tools.paddle_helper import connect_program
W
wuzewu 已提交
27
from .io.type import DataType
W
wuzewu 已提交
28
from .hub_server import default_hub_server