From 70313e955c0f2f65937e7b9fd7ac718660332bd1 Mon Sep 17 00:00:00 2001 From: microcai Date: Mon, 25 Apr 2011 15:14:26 +0800 Subject: [PATCH] =?utf8?q?=E6=80=9D=E8=B7=AF=E6=9C=89=E7=82=B9=E9=98=BB?= =?utf8?q?=E5=A1=9E=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- doc/chapter/chap-final.tex | 7 +++++++ doc/chapter/chap-tagging.tex | 6 ++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/doc/chapter/chap-final.tex b/doc/chapter/chap-final.tex index 0519ecb..2137eae 100644 --- a/doc/chapter/chap-final.tex +++ b/doc/chapter/chap-final.tex @@ -1 +1,8 @@ +% +% int dayofweek(int y, int m, int d) /* 0 = Sunday */ +%{ +% static int t[] = {0, 3, 2, 5, 0, 3, 5, 1, 4, 6, 2, 4}; +% y -= m 3; +% return (y + y/4 - y/100 + y/400 + t[m-1] + d) % 7; +%} \ No newline at end of file diff --git a/doc/chapter/chap-tagging.tex b/doc/chapter/chap-tagging.tex index 56c57ad..2f5b70f 100644 --- a/doc/chapter/chap-tagging.tex +++ b/doc/chapter/chap-tagging.tex @@ -1,6 +1,8 @@ \section{Tagging the part-of-speech} -\subsection{The easiest way} +So, the grammar is rather simple. But it only works after tagging. +The simplest way is to refer to the dictionary, but that's not always the case. Hence we have to develop a complex way to do the job. -\subsection{How about ANN}\label{chap:HMM_based_tagging} +\subsection{The easiest way} +\subsection{The more accurate way} \ No newline at end of file -- 2.11.4.GIT