__init__.py 1.7 KB
Newer Older
S
Steffy-zxf 已提交
1
#coding:utf-8
W
wuzewu 已提交
2
# Copyright (c) 2019  PaddlePaddle Authors. All Rights Reserved.
Z
Zeyu Chen 已提交
3 4 5 6 7 8 9 10 11 12 13 14
#
# 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.
15 16 17

import six

S
Steffy-zxf 已提交
18 19 20 21 22
if six.PY2:
    import sys
    reload(sys)
    sys.setdefaultencoding("UTF-8")

W
wuzewu 已提交
23
from . import module
Z
Zeyu Chen 已提交
24
from . import common
W
wuzewu 已提交
25
from . import io
26
from . import dataset
Z
Zeyu Chen 已提交
27
from . import finetune
Z
Zeyu Chen 已提交
28
from . import reader
Z
Zeyu Chen 已提交
29 30 31 32 33 34 35 36 37

from .common.dir import USER_HOME
from .common.dir import HUB_HOME
from .common.dir import MODULE_HOME
from .common.dir import CACHE_HOME
from .common.logger import logger
from .common.paddle_helper import connect_program
from .common.hub_server import default_hub_server

W
wuzewu 已提交
38
from .module.module import Module, create_module
W
wuzewu 已提交
39
from .module.base_processor import BaseProcessor
W
wuzewu 已提交
40
from .module.signature import Signature, create_signature
W
wuzewu 已提交
41
from .module.manager import default_module_manager
Z
Zeyu Chen 已提交
42

W
wuzewu 已提交
43
from .io.type import DataType
Z
Zeyu Chen 已提交
44

W
wuzewu 已提交
45 46 47 48
from .finetune.task import ClassifierTask
from .finetune.task import TextClassifierTask
from .finetune.task import ImageClassifierTask
from .finetune.task import SequenceLabelTask
49
from .finetune.config import RunConfig
50
from .finetune.strategy import AdamWeightDecayStrategy
Z
Zeyu Chen 已提交
51
from .finetune.strategy import DefaultStrategy
S
Steffy-zxf 已提交
52
from .finetune.strategy import DefaultFinetuneStrategy