|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2840 ] | Knowledge and Language Engineering Laboratory (KLE) - Pohang University |
---|---|
Organisation name | Knowledge and Language Engineering Laboratory (KLE) - Pohang University |
Short name or acronym | Knowledge and Language Engineering Laboratory (KLE) - Pohang University |
Organisation type | Center |
Activity type | Speech technology |
Address | Room 323, PIRL. POSTTECH, San 31 |
Postal Code | 790-784 |
City | Hyoja-Dong, Pohang |
Country | Taiwan |
Phone | + +886 54 279 5656 |
Fax | + +886 54 279 5699 |
Organisation URL | http://bertha.postech.ac.kr/English/home.html |
Logo | Description |
![]() |
The Knowledge and Language Engineering Laboratory (KLE), at Pohang University of Science and Technology, has been involved in various aspects of natural language processing (computational linguistics) since 1991, with special emphasis on computer processing of the Korean language. Now KLE's research efforts are concentrated on three major areas. The first one is the core technology of Korean language processing, which is fundamental to the development of computer systems that recognize, understand, and generate the Korean language. The second one is Machine Translation (MT) between Korean and other foreign language like Japanese, Chinese, and English. Finally, Information Retrieval (IR), especially related to web-based applications, is also our major concern. |
Contact | |
Name | Professor Jong-Hyeok Lee |
Function | Head of Knowledge and Language Engineering Lab |
Department | |
jhlee_(on)_postech.ac.kr | |
Phone | + +82 562 279 2253 |
Fax | + +82 562 279 5699 |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |