__init__.py 1.4 KB
Newer Older
S
Steffy-zxf 已提交
1
#coding:utf-8
2 3 4 5 6 7 8 9 10 11 12 13 14 15
#   Copyright (c) 2019 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.

Z
Zeyu Chen 已提交
16
# NLP Dataset
K
kinghuin 已提交
17
from .dataset import InputExample, BaseDataset
18 19
from .chnsenticorp import ChnSentiCorp
from .msra_ner import MSRA_NER
20
from .nlpcc_dbqa import NLPCC_DBQA
Z
Zeyu Chen 已提交
21
from .lcqmc import LCQMC
S
Steffy-zxf 已提交
22
from .toxic import Toxic
K
kinghuin 已提交
23
from .squad import SQUAD
K
kinghuin 已提交
24 25
from .xnli import XNLI
from .glue import GLUE
S
Steffy-zxf 已提交
26
from .tnews import TNews
K
kinghuin 已提交
27 28 29 30 31 32
from .inews import INews
from .drcd import DRCD
from .cmrc2018 import CMRC2018
from .bq import BQ
from .iflytek import IFLYTEK
from .thucnews import THUCNEWS
Z
Zeyu Chen 已提交
33 34

# CV Dataset
W
wuzewu 已提交
35 36
from .dogcat import DogCatDataset as DogCat
from .flowers import FlowersDataset as Flowers
W
wuzewu 已提交
37 38 39
from .stanford_dogs import StanfordDogsDataset as StanfordDogs
from .food101 import Food101Dataset as Food101
from .indoor67 import Indoor67Dataset as Indoor67
W
wuzewu 已提交
40
from .balloon import Balloon