|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0663 ] | Douglas O'Shaughnessy |
---|---|
Name | O'Shaughnessy, Douglas |
Job Title | professor |
Organisation | INRS-Telecommunications |
Address | 900 Gauchetiere west, #644 |
Postal Code | H5A 1C6 |
City | Montreal |
Country | Canada |
Phone | + 514-876-1266 x2012 |
Fax | + 514-875-0344 |
Mobile | + |
dougo_(on)_inrs-telecom.uquebec.ca [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | |
Languages | English |
Specialism | Speechtechnology:
Acoustic Modeling Acoustic Phonetics Adaptive Speech Recognition Artificial Neural Networks Audio Indexing Audiovisual Speech Processing Automated Natural Language Speech Computational Linguistics dialogue systems Digital Speech Processing Hidden Markov Models Human Voice Understanding Information Services by Telephone using Speech Technologies Knowledge-based Speech Recognition Language Identification Language Modeling Language Processing Machine Translation Multimodal Human-Machine Communication NLP Objective Speech Quality Objective speech quality measures Pronunciation Modelling Prosodic Studies in Spontaneous Language Analysis Prosody Prosody (Linguistic Description of) Robust Parsing and Understanding Robust Speech Recognition Segmentation and Automatic Transcription of Broadcast Data Signal Analysis Signal Processing Speaker Adaptation Speaker identification Speaker Recognition Speech Acoustics Speech Analysis Speech Applications Speech Coding Speech Perception Speech Processing Speech Production Speech Recognition Speech Synthesis Speech Technologies Speech-to-Speech Translation Spoken Dialogue and Robust Speech Understanding Spoken Dialogue Systems Spoken Document Retrieval Spoken Translation Spontaneous Speech Statistical Language Modeling and Analysis Text to Speech in Telephony Text-to-Speech Very low bit rate coding Voice Biometrics (Speaker Verification, Identification, Lie-detection, etc) Voice Identification Voice Processing VoIP Web Applications |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2002-04-05 12:00:00 #!/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" |