|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0294 ] | Peter Theis |
---|---|
Name | Theis, Peter |
Job Title | President |
Organisation | Theis Research & Engineering LLC |
Address | 4249 Grove Ave. |
Postal Code | 60031 |
City | Gurnee, IL |
Country | United States |
Phone | + +1 847 662 4863 |
Fax | + +1 847 249 9773 |
Mobile | + |
theis_(on)_theisresearch.com [@ replaced for spam protection] | |
Organisation URL | http://www.conservit.com |
Personal URL | |
Membership | |
Languages | English |
Specialism | 24/7 support
ACDs Audio Signal Processing Auditory Modelling Automated Call Overflow Automated Natural Language Speech Background Noise Suppression Business Application of Speech Technology Call Center Automation Call Center Management Call Center Metrics Call Center Telephone Switching Callcenter Tuning Causes of Listeners' Mishearing Cognitive Engineering Communication Computational Linguistics Computer Telephony Integration Contact Center Optimisation Contact Center Strategy Contact Centre Management Customer Care Customer Care Process Customer Relationship Management Services Customer Satisfaction in the Call Center Cutting Edge Customer Service Detecting speech in noise Development and Implementation of Speech Technology Applications Dialogue Dialogue Design Dialogue Management Dialogue Modelling Dialogue System Evaluation Dialogue systems Digital Speech Processing Financial application General linguistics Grammar Human Factors Human Factors Engineering Human Voice Understanding Information Retrieval Information Services by Telephone using Speech Technologies Interactive Voice Response (IVR) Investment in Speech Processing Knowledge-based Speech Recognition Language Modeling Language Processing Language Resources Language Translation Management Consulting Market Research Measurement of Quality of Service in Speech Systems Medical Applications Multi-medium Customer Relationship solutions Multilingual Speech Recognition Multilinguality Multimodal Communciation Multimodal Dialogue Systems Multimodal Human-Machine Communication Natural Language Processing Natural Language Semantics Naturalistic Spoken Language Noise Effects Noise Reduction Non-HMM Methods for Speech Recognition Objective Speech Quality Objective speech quality measures Ontology Oral Dialogue Para- and Extralinguistic Aspects of Speech Pattern Recognition and Statistical Data Analysis Perceptual analysis of speech and gestures Phonetics Phonology Project Management Pronunciation Modelling Question-Answering Recognition Technologies Robust Speech Recognition Robust Speech Understanding Signal Analysis Signal Processing Spanish Phonetics/Phonology Speech Acoustics Speech Aerodynamics Speech Analysis Speech Applications Speech Enabled IVRs Speech intelligibility measurement Speech Perception Speech Processing Speech quality measurement Speech Recognition Speech Retrieval Speech Signal Processing Speech Summarization Speech Synthesis Speech Technologies 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 Spoken Language Resources and Evaluation Spoken Translation Spontaneous Speech Statistical Language Modeling and Analysis Statistical Language Modelling for Speech Recognition Statistical Methods for Information Retrieval Statistical Pattern Recognition Strategic Planning Technology Technology Implementation Telecommunications Telemarketing Telephone Announcement Systems Telephony Testing of Dialogue Systems Turkish Syntax Use of articulatory models for ASR Voice Activity Detection Voice of Customer Voice Processing Voice Recording Voice to Text Conversion for the Hearing Impaired Voice-Driven Telecommunications Applications Word meaning |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2003-08-22 19:13:40 #!/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" |