LTP語法分析

2021-07-08 22:11:14 字數 1619 閱讀 5544

詞性標註(part-of-speech tagging, pos)是給句子中每個詞乙個詞性類別的任務。 這裡的詞性類別可能是名詞、動詞、形容詞或其他。 

採用863詞性標註集

tag    description                        example

a    adjective                                  美麗

b    other noun-modifier               大型, 西式

c    conjunction連詞                     和, 雖然

d    adverb                                     很

e    exclamation驚嘆詞                哎

g    morpheme形態素; 詞素        茨, 甥

h    prefix                                       阿, 偽

i    idiomidiom                              百花齊放

j    abbreviation縮寫                   公檢法

k    suffix字尾                              界, 率

m    number                                 一, 第一

n    general noun                        蘋果

nd    direction noun                   右側

nh    person name                     杜甫, 湯姆

ni    organization name            保險公司

nl    location noun                      城郊

ns    geographical name           北京

nt    temporal noun                    近日, 明代

nz    other proper noun其它專有名詞    諾貝爾獎

o    onomatopoeia擬聲              嘩啦

p    preposition                           在, 把

q    quantity                                 個

r    pronoun代名詞                    我們

u    auxiliary助詞                       的, 地

v    verb                                      跑, 學習

wp    punctuation                       ,。!

ws    foreign words                   cpu

x    non-lexeme非詞                 萄, 翱

from:

語法分析 自上而下分析

語法分析 是編譯過程的核心部分。它的任務是在詞法分析識別出單詞符號串的基礎上,分析並判定程式的語法結構是否符合語法規則。語言的語法結構是用上下文無關文法描述的。因此,語法分析器的工作本質上就是按文法的產生式,識別輸入符號串是否為乙個句子。這裡所說的輸入串是指由單詞符號 文法的終結符 組成的有限序列。...

語法分析總

表示出現一次或0次,表示出現0次或多次,表示是乙個整體 程式aint x 1,y 3 int fun int a return 2 a int main int a 3 printf d n fun a 程式a 就是個翻譯單元 乙個完整的c檔案是乙個翻譯單元 翻譯單元由若干個外部宣告和乙個檔案結束符...

語法分析程式

語法分析程式 include include typedef struct link 字元鍊錶 link char special 10 void specialchar link charhead main while n n q charhead next while q null printf...