|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2839 ] | Human Language Technology Center (HLTC) - Hong Kong University |
---|---|
Organisation name | Human Language Technology Center (HLTC) - Hong Kong University |
Short name or acronym | Human Language Technology Center (HLTC) - Hong Kong University |
Organisation type | Center |
Activity type | Speech technology |
Address | Computer Science Department, Hong Kong University of Science and Technology |
Postal Code | |
City | Clear Water Bay, Kowloon |
Country | Hong Kong |
Phone | + +852 2358 7000 |
Fax | + |
hltc_(on)_cs.ust.hk | |
Organisation URL | http://www.cs.ust.hk/~hltc/ |
Logo | Description |
![]() |
Human Language Technology Center (HLTC) is an Emerging High Impact Area research center at HKUST specializing in speech and signal processing, statistical and corpus-based NLP, machine translation, information extraction, Chinese language processing, and related fields. HLTC is led by eight faculty members from the EEE and the CS departments: Oscar Au, Roland Chin, Pascale Fung, Kok Wee Gan, Brian Mak, Bertram Shi, Manhung Siu, and Dekai Wu. HLTC's mission is to lead new state-of-the-art research directions that drive the development of new applications in the area of language and speech technology. Special emphasis is given to machine processing of Chinese language and Chinese information. Systems built at HLTC include automated language translation for the Internet, speech-based web browsing, and speech recognition for the telephone. |
Contact | |
Name | Dr. Dekai WU |
Function | Ass. Professor |
Department | Computer Science |
dekai_(on)_cs.ust.hk | |
Phone | + +852 2358 6989 |
Fax | + +852 2358 1477 |
![]() |
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" |