elsnet |
Expert profile: Dr. Volker Steinbiss |
[ ID = 1809 ] | Dr. Volker Steinbiss |
---|---|
Name | Steinbiss, Dr. Volker |
Job Title | Geschäftsleiter (CEO) |
Organisation | Accipio Consulting |
Address | Roermonder Str. 216 |
Postal Code | 52072 |
City | Aachen |
Country | Germany |
Phone | + +49 700 02224746 |
Fax | + +49 1212 511008146 |
Mobile | + |
volker.steinbiss_(on)_accipio-consulting.com [@ replaced for spam protection] | |
Organisation URL | http://www.accipio-consulting.com |
Personal URL | http://www.volker.steinbiss.de |
Membership | IEEE |
Languages | English German |
Specialism | Acoustic Modeling
Acoustic Phonetics Automated Natural Language Speech Automotive Applications Business Application of Speech Technology Call Center Automation Computer Telephony Integration Dialogue Dialogue Design Dialogue Management Dialogue systems Dynamic Programming in Speech Recognition e-Business Embedded Systems Hidden Markov Models HMM-based OCR Human Factors Human Factors Engineering Innovation Management Interactive Voice Response (IVR) Interim Management Internet Language Modeling Language Translation Machine Learning Machine Translation Management Consulting Mobile devices Multimodal Human-Machine Communication Pattern Recognition and Statistical Data Analysis Recognition Technologies Robust Speech Recognition Search Algorithms Search Strategies Signal Processing Speaker Adaptation Speaker Identification Speaker Recognition Speech Databases for Automatic Speech/Speaker Recognition Speech Signal Processing Speech-to-Speech Translation Spoken Dialogue and Robust Speech Understanding Spoken Dialogue Modeling Spoken Dialogue Systems Spoken Document Retrieval Spoken Language Resources and Evaluation Statistical Language Modelling for Speech Recognition Training Usability Engineering Usability of Speech Applications User Interface Design Voice Biometrics (Speaker Verification, Identification, VoiceXML |
Photograph | Description or CV |
![]() |
http://www.accipio-consulting.com/html/dr__volker_steinbiss1.html |
![]() |
Last update: 2004-09-16 14:40:26 #!/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" |