|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0819 ] | Dr. Guojun Zhou |
---|---|
Name | Zhou, Dr. Guojun |
Job Title | Sr. Software Engineer |
Organisation | Intel Corp. |
Address | M/S JF1-05, 2111 NE 25th Ave |
Postal Code | 97124 |
City | Hillsboro |
Country | United States |
Phone | + +1 503 264-1700 |
Fax | + +1 503 264-8899 |
Mobile | + |
Guojun.Zhou_(on)_intel.com [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | |
Languages | English |
Specialism | Speechtechnology:
Algorithm Optimization for Microprocessor Architectures Performance Analysis Acoustic Modeling Analysis & Processing of Speech under Stress Application Software Development Hidden Markov Models Language Modeling Robust Parsing of Spontaneous Speech Speaker Adaptation Speaker identification Speech Enhancement Speech Processing Speech Recognition Speech Synthesis Spoken Dialogue Systems |
Photograph | Description or CV |
![]() |
http://www.elsnet.org/expertcvs/0819.html |
![]() |
Last update: 2002-04-09 11:29:19 #!/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" |