Skip to content

Commit cb6ee6c

Browse files
committed
Release an ERNIE-GRAM constituency model
1 parent 4467a3c commit cb6ee6c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

hanlp/pretrained/constituency.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,16 @@
44
from hanlp_common.constant import HANLP_URL
55

66
CTB9_CON_ELECTRA_SMALL = HANLP_URL + 'constituency/ctb9_con_electra_small_20220215_230116.zip'
7-
'Electra (:cite:`clark2020electra`) small model trained on CTB9 with major categories. ' \
7+
'Electra (:cite:`clark2020electra`) small tree CRF model (:cite:`ijcai2020-560`) trained on CTB9 with major categories. ' \
88
'Its performance is UCM=39.06% LCM=34.99% UP=90.05% UR=90.01% UF=90.03% LP=87.02% LR=86.98% LF=87.00%.'
99

1010
CTB9_CON_FULL_TAG_ELECTRA_SMALL = HANLP_URL + 'constituency/ctb9_full_tag_con_electra_small_20220118_103119.zip'
11-
'Electra (:cite:`clark2020electra`) small model trained on CTB9 with full subcategories. ' \
11+
'Electra (:cite:`clark2020electra`) small tree CRF model (:cite:`ijcai2020-560`) trained on CTB9 with full subcategories. ' \
1212
'Its performance is UCM=38.29% LCM=28.95% UP=90.16% UR=90.13% UF=90.15% LP=83.46% LR=83.43% LF=83.45%.'
1313

14+
CTB9_CON_FULL_TAG_ERNIE_GRAM = 'http://download.hanlp.com/constituency/extra/ctb9_full_tag_con_ernie_20220331_121430.zip'
15+
'ERNIE-GRAM (:cite:`xiao-etal-2021-ernie`) base tree CRF model (:cite:`ijcai2020-560`) trained on CTB9 with full subcategories. ' \
16+
'Its performance is UCM=42.04% LCM=31.72% UP=91.33% UR=91.53% UF=91.43% LP=85.31% LR=85.49% LF=85.40%.'
17+
1418
# Will be filled up during runtime
1519
ALL = {}

0 commit comments

Comments
 (0)