Spaces:
Sleeping
Sleeping
File size: 3,571 Bytes
6ed21b9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
##------------------------------------------##
## Debug mode ##
## 0: No debugging ##
## 1: print data for individual sentence ##
## 2: print detailed bracketing info ##
##------------------------------------------##
DEBUG 0
##------------------------------------------##
## MAX error ##
## Number of error to stop the process. ##
## This is useful if there could be ##
## tokanization error. ##
## The process will stop when this number##
## of errors are accumulated. ##
##------------------------------------------##
MAX_ERROR 10000
##------------------------------------------##
## Cut-off length for statistics ##
## At the end of evaluation, the ##
## statistics for the senetnces of length##
## less than or equal to this number will##
## be shown, on top of the statistics ##
## for all the sentences ##
##------------------------------------------##
CUTOFF_LEN 40
##------------------------------------------##
## unlabeled or labeled bracketing ##
## 0: unlabeled bracketing ##
## 1: labeled bracketing ##
##------------------------------------------##
LABELED 1
##------------------------------------------##
## Delete labels ##
## list of labels to be ignored. ##
## If it is a pre-terminal label, delete ##
## the word along with the brackets. ##
## If it is a non-terminal label, just ##
## delete the brackets (don't delete ##
## deildrens). ##
##------------------------------------------##
DELETE_LABEL TOP
DELETE_LABEL ROOT
DELETE_LABEL S1
DELETE_LABEL -NONE-
DELETE_LABEL VROOT
#DELETE_LABEL SENT
#DELETE_LABEL ,
#DELETE_LABEL :
#DELETE_LABEL ``
#DELETE_LABEL ''
#DELETE_LABEL .
#DELETE_LABEL ?
#DELETE_LABEL !
#DELETE_LABEL PONCT
##------------------------------------------##
## Delete labels for length calculation ##
## list of labels to be ignored for ##
## length calculation purpose ##
##------------------------------------------##
DELETE_LABEL_FOR_LENGTH -NONE-
##------------------------------------------##
## Labels to be considered for misquote ##
## (could be possesive or quote) ##
##------------------------------------------##
#QUOTE_LABEL ``
#QUOTE_LABEL ''
#QUOTE_LABEL POS
##------------------------------------------##
## These ones are less common, but ##
## are on occasion output by parsers: ##
##------------------------------------------##
#QUOTE_LABEL NN
#QUOTE_LABEL CD
#QUOTE_LABEL VBZ
#QUOTE_LABEL :
##------------------------------------------##
## Equivalent labels, words ##
## the pairs are considered equivalent ##
## This is non-directional. ##
##------------------------------------------##
#EQ_LABEL ADVP PRT
# EQ_WORD Example example
DELETE_LABEL SYN_NN
DELETE_LABEL SYN_NNP
DELETE_LABEL SYN_NNT
DELETE_LABEL SYN_PRP
DELETE_LABEL SYN_JJ
DELETE_LABEL SYN_JJT
DELETE_LABEL SYN_RB
DELETE_LABEL SYN_RBR
DELETE_LABEL SYN_MOD
DELETE_LABEL SYN_VB
DELETE_LABEL SYN_AUX
DELETE_LABEL SYN_AGR
DELETE_LABEL SYN_IN
DELETE_LABEL SYN_COM
DELETE_LABEL SYN_REL
DELETE_LABEL SYN_CC
DELETE_LABEL SYN_QW
DELETE_LABEL SYN_HAM
DELETE_LABEL SYN_WDT
DELETE_LABEL SYN_DT
DELETE_LABEL SYN_CD
DELETE_LABEL SYN_CDT
DELETE_LABEL SYN_AT
DELETE_LABEL SYN_H
DELETE_LABEL SYN_FL
DELETE_LABEL SYN_ZVL
|