|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1087 ] | Dr. Jeff A. Bilmes |
---|---|
Name | Bilmes, Dr. Jeff A. |
Job Title | Professor |
Organisation | University of Washington, Seattle |
Address | Box 352500 |
Postal Code | 98195-2500 |
City | Seattle, WA |
Country | United States |
Phone | + |
Fax | + 1 206 543 3842 |
Mobile | + |
bilmes_(on)_ee.washington.edu [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | |
Languages | English |
Specialism | Speechtechnology:
Acoustic Modeling Acoustic Phonetics Adaptive Speech Recognition Application Software Development Artificial Neural Networks Audio Signal Processing Audiovisual Speech Processing Auditory Modelling Automated Natural Language Speech Automatic transcription of TV and radio broadcast News Background Noise Suppression Bayesian Theory and Applications Computational Linguistics Confidence Measures Corpus statistics Developer Tools Development and Implementation of Speech Technology Applications Digital Speech Processing DSP Coding Dynamic Programming in Speech Recognition Filter Design general linguistics Hidden Markov Models Language Modeling Language Processing Large speech corpora Low Bit Rate Coding Machine Learning Algorithms Machine Learning and Speech Recognition Multilingual Speech Recognition Neural Networks Non-HMM Methods for Speech Recognition Pronunciation Modelling PSOLA, Harmonic + Noise Psychoacoustics Psycholinguistics of Phonology Recording Industry Practices Robust Speech Recognition Room Acoustics Signal Processing Source and Channel Coding Speaker Adaptation Speaker Recognition Speech Acoustics Speech Coding Speech Databases Speech Enhancement speech intelligibility measurement Speech Perception Spontaneous Speech Statistical Language Modeling and Analysis Statistical Language Modelling for Speech Recognition Statistical Pattern Recognition Support Vector Machines for Speech Processing User Interface Design Vector Quantization Very low bit rate coding vocal-tract modelling Voice Identification VoiceXML Wavelet Transforms |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2008-08-30 11:44:35 #!/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" |