__init__.py 1.6 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
from . import module
Z
Zeyu Chen 已提交
15
from . import common
W
wuzewu 已提交
16
from . import io
17
from . import dataset
Z
Zeyu Chen 已提交
18
from . import finetune
Z
Zeyu Chen 已提交
19
from . import reader
Z
Zeyu Chen 已提交
20 21 22 23 24 25 26 27 28

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 已提交
29
from .module.module import Module, create_module
W
wuzewu 已提交
30
from .module.base_processor import BaseProcessor
W
wuzewu 已提交
31
from .module.signature import Signature, create_signature
W
wuzewu 已提交
32
from .module.manager import default_module_manager
Z
Zeyu Chen 已提交
33

W
wuzewu 已提交
34
from .io.type import DataType
Z
Zeyu Chen 已提交
35

Z
Zeyu Chen 已提交
36
from .finetune.task import Task
37 38 39
from .finetune.task import create_seq_label_task
from .finetune.task import create_text_cls_task
from .finetune.task import create_img_cls_task
Z
Zeyu Chen 已提交
40
from .finetune.finetune import finetune_and_eval
41
from .finetune.config import RunConfig
42
from .finetune.strategy import AdamWeightDecayStrategy
Z
Zeyu Chen 已提交
43
from .finetune.strategy import DefaultStrategy