|
|
Expert profile: Dr. Yunbin Deng
[ ID = 2068 ] |
Dr. Yunbin Deng |
Name |
Deng, Dr. Yunbin |
Job Title | Speech scientist |
Organisation |
|
Address | |
Postal Code | |
City | |
Country | United States |
Phone | + United States |
Fax | + United States |
Mobile | + United States |
Email |
yunbindeng_(on)_gmail.com
[@ replaced for spam protection] |
Organisation URL |
|
Personal URL |
|
Membership |
IEEE |
Languages | English Chinese |
Specialism |
Acoustic Modeling
Adaptive Speech Recognition
Artificial Neural Networks
Auditory Modelling
Automated Natural Language Speech
Call Center Automation
Cochlear Implants
Dialogue
Dialogue systems
Digital Speech Processing
Filter Design
Finite State Methods
Hidden Markov Models
Language Modeling
Large speech corpora
Machine Learning
Microphones
Natural Language Processing
Natural Language Semantics
Naturalistic Spoken Language
Neural Networks
Noise Effects
Noise Reduction
Non-HMM Methods for Speech Recognition
Robust Parsing and Understanding
Robust Parsing of Spontaneous Speech
Robust Semantic Processing
Robust Speech Recognition
Robust Speech Understanding
Search Algorithms
Semantics
Signal Processing
Speaker Adaptation
Speaker Identification
Speaker Recognition
Speech Analysis
Speech Recognition
Speech Signal Processing
Speech Understanding
Spoken Dialogue and Robust Speech Understanding
Spoken Dialogue Modeling
Statistical Methods for Information Retrieval
Statistical Pattern Recognition
Support Vector Machines for Speech Processing
Telephony
Training
Vector Quantization
Verb Subcategorization
Vocal-tract modelling |
Photograph | Description or CV |
|
|
Update your profile
|
Last update: 2013-06-25 00:37:05
#!/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"
|
|