|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0465 ] | Dr Tony Robinson |
---|---|
Name | Robinson, Dr Tony |
Job Title | CEO |
Organisation | Cantab Research Ltd |
Address | St John's Innovation Centre, Cowely Road |
Postal Code | CB4 0WS |
City | Cambridge |
Country | United Kingdom |
Phone | +44 8540 097530 |
Fax | +44 8540 097531 |
Mobile | +44 7913 818743 |
tonyr_(on)_cantabResearch.com [@ replaced for spam protection] | |
Organisation URL | http://www.cantabResearch.com |
Personal URL | http://www.tonyRobinson.com |
Membership | ELSNET |
Languages | English |
Specialism | Speechtechnology:
Acoustic Modeling Acoustic Phonetics Artificial Neural Networks Audio and Video Authentication Audio Indexing Dynamic Lexicon Building Dynamic Programming in Speech Recognition Hidden Markov Models Information Retrieval Information Services by Telephone using Speech Technologies Language Identification Language Modeling Large speech corpora Machine Learning Algorithms Pronunciation Modelling Robust Speech Recognition Search Engines Search Strategies Signal Processing Speaker Adaptation Speaker Recognition Speech Acoustics Speech Analysis Speech Applications Speech Coding Speech Databases for Automatic Speech/Speaker Recognition Speech Processing Speech Recognition Speech Retrieval Speech Summarization Speech Synthesis Speech Technologies Statistical Language Modeling and Analysis Statistical Pattern Recognition Topic segmentation Very low bit rate coding Voice Biometrics (Speaker Verification, Identification, Lie-detection, etc) Voice Identification Voice Processing |
Photograph | Description or CV |
| |
Update your profile | Last update: 2008-10-06 09:44:16 #!/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" |