|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0428 ] | Benjamin Reaves |
---|---|
Name | Reaves, Benjamin |
Job Title | |
Organisation | |
Address | 405 El Camino Real #458 |
Postal Code | 94025-5240 |
City | Menlo Park, California |
Country | United States |
Phone | +1 650 924 2367 |
Fax | +1 650 249 0102 |
Mobile | + |
b.reaves_(on)_ieee.org [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | IEEE,ASA,ASJ |
Languages | English |
Specialism | Acoustic Modeling
Analysis & Processing of Speech under Stress Audio Signal Processing Automated Natural Language Speech Automatic transcription of TV and radio broadcast News Automotive Applications Background Noise Suppression Business Application of Speech Technology Co-channel speech Communication Computational Linguistics Data Corpus Collection Databases of Emotional Speech Development and Implementation of Speech Technology Applications Dialogue Dialogue Design Dialogue Management Dialogue systems Digital Speech Processing DSP Coding Dynamic Programming in Speech Recognition Emotion in Speech Endpoint Detection Hidden Markov Models Human Factors Human Factors Engineering Information Services by Telephone using Speech Technologies Interactive Voice Response (IVR) Language Modeling Language Translation Lie-detection Machine Learning Machine Recognition of Emotion Machine Translation Measurement of Quality of Service in Speech Systems Microphones Mobile devices Multilingual Speech Recognition Multimodal Dialogue Systems Multimodal Human-Machine Communication Natural Language Processing Neural network Neural Networks Noise Reduction Non-HMM Methods for Speech Recognition Objective Speech Quality Objective speech quality measures Pattern Recognition and Statistical Data Analysis Prosodic Studies in Spontaneous Language Analysis Prosody Prosody modelling Psychoacoustics Recognition Technologies Recognition Tuning Recording Robust Speech Recognition Robust Speech Understanding Segmentation and Automatic Transcription of Broadcast Data Signal Analysis Signal Processing Software Architecture for Language Engineering Speaker Adaptation Speech Acoustics Speech Analysis Speech Applications Speech Coding Speech Databases Speech Databases for Automatic Speech/Speaker Recognition Speech Enabled IVRs Speech Processing Speech Recognition Speech Recognition in Neural Architecture Speech Signal Processing Speech Synthesis Speech Technologies Speech Translation Systems for Traveling Abroad Speech Understanding Speech-Enabled IVR Systems Speech-to-Speech Translation Spoken Dialogue and Robust Speech Understanding Spoken Dialogue Modeling Spoken Dialogue Processing Spoken Dialogue Systems Statistical Language Modelling for Speech Recognition Statistical Pattern Recognition Support Vector Machines for Speech Processing System Integration Technology Technology Implementation Telecommunications Telematics in transport Testing of Dialogue Systems Text-to-Speech Text-To-Speech Conversion Usability Engineering Usability of Speech Applications User Interface Design Vector Quantization Vocal-tract modelling Voice Processing Voice Recording Web Applications |
Photograph | Description or CV |
![]() |
http://brss.us/cv |
![]() |
Last update: 2015-10-01 04:07:01 #!/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" |