|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0519 ] | Dr. Prof. Thomas Fang Zheng |
---|---|
Name | Zheng, Dr. Prof. Thomas Fang |
Job Title | Director |
Organisation | Center for Speech and Language Technologies, Tsinghua University |
Address | Room 4-416 Information Science and Technology Building, Tsinghua University |
Postal Code | 100084 |
City | Beijing |
Country | China |
Phone | +86 10-6279-6393 |
Fax | +86 10-6279-6393 |
Mobile | + |
fzheng_(on)_tsinghua.edu.cn [@ replaced for spam protection] | |
Organisation URL | http://cslt.riit.tsinghua.edu.cn |
Personal URL | http://cslt.riit.tsinghua.edu.cn/~fzheng/ |
Membership | ISCA IEEE (Senior), O-COCOSDA, ISCA |
Languages | English |
Specialism | Speechtechnology:
Acoustic Modeling Chinese NLP Processing Confidence Measures Dialogue Digital Speech Processing Hidden Markov Models Language Modeling NLP Pronunciation Modelling Robust Parsing and Understanding Robust Speech Recognition Search Strategies Speaker Recognition Speech Acoustics Speech Recognition Spoken Dialogue and Robust Speech Understanding Spoken Dialogue Systems Spontaneous Speech Statistical Language Modeling and Analysis |
Photograph | Description or CV |
![]() |
http://cslt.riit.tsinghua.edu.cn/~fzheng/ |
![]() |
Last update: 2008-08-30 11:37:42 #!/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" |