|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2280 ] | NLPL, NTU |
---|---|
Organisation name | Natural Language Processing Laboratory at National TaiwanUniversity |
Short name or acronym | NLPL, NTU |
Organisation type | Center |
Activity type | Language and Speech technology |
Address | Department of Computer Science and Information Engineering, National Taiwan University |
Postal Code | 106 |
City | Taipei |
Country | Taiwan |
Phone | + +886-2-23625336 ext 311 |
Fax | + +886-2-23628167 |
hh_chen_(on)_csie.ntu.edu.tw | |
Organisation URL | http://nlg3.csie.ntu.edu.tw/index.html |
Logo | Description |
![]() |
Natural Language Processing (NLP) studies how computer systems understand and generate human languages. The history of this research field is very old. After the invention of computers, many organizations have been engaged in the developments of new theories and technologies for NLP. Because languages are indispensable media for human communication, the applications of the research results are very wide, for example, bioinformatics, Internet, intelligent information retrieval, machine translation, man-machine interface, speech recognition and generation, OCR (OLCR), text processing, written-aids, computer-aided instruction, etc. The Natural Language Processing Laboratory at National Taiwan University has been set up for several years. Now it is supervised by Professor Hsin-Hsi Chen . Within these years, many research results are presented in journals, conference proceedings and books. Besides publication of papers, many systems are implemented and are demonstrated . The main research interests includes: (1) Multilingual Information Management This research studies classification, retrieval, filtering, extraction, and summarization of multilingual data. (2) Language Engineering The research studies how to represent, acquire, employ, and integrate linguistic knowledge. (3) Native Language Processing Besides the researches on Chinese, we also extend the results into Taiwanese, Hakka, and even Austronesian language processing. Now the following research topics are investigated: (1) Cross-Language Information Retrieval (2) Information Extraction & Bioinformatics (3) Question and Answering (4) Summarization (5) Topic Detection and Tracking (6) Web Mining |
Contact | |
Name | Professor Chen Hsin-Hsi |
Function | Advisor |
Department | Department of Computer Science and Information Engineering |
hh_chen_(on)_csie.ntu.edu.tw | |
Phone | + +886 2 23625336 ext 311 |
Fax | + +886 2 23628167 |
![]() |
Last update: 2002-05-23 02:49:34 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |