__init__.py 1.2 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
17 18 19
from .dataset import InputExample, HubDataset
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
Z
Zeyu Chen 已提交
27 28

# CV Dataset
W
wuzewu 已提交
29 30
from .dogcat import DogCatDataset as DogCat
from .flowers import FlowersDataset as Flowers
W
wuzewu 已提交
31 32 33
from .stanford_dogs import StanfordDogsDataset as StanfordDogs
from .food101 import Food101Dataset as Food101
from .indoor67 import Indoor67Dataset as Indoor67