13 lines
356 B
Python
13 lines
356 B
Python
# -*- coding:utf-8 -*-
|
|
# Author: hankcs
|
|
# Date: 2019-12-28 22:51
|
|
|
|
_CTB5_POS_HOME = 'http://file.hankcs.com/corpus/ctb5.1-pos.zip'
|
|
|
|
CTB5_POS_TRAIN = f'{_CTB5_POS_HOME}#train.tsv'
|
|
'''PoS training set for CTB5.'''
|
|
CTB5_POS_DEV = f'{_CTB5_POS_HOME}#dev.tsv'
|
|
'''PoS dev set for CTB5.'''
|
|
CTB5_POS_TEST = f'{_CTB5_POS_HOME}#test.tsv'
|
|
'''PoS test set for CTB5.'''
|