|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0759 ] | Human & Machine Perception Research Group |
---|---|
Organisation name | Human & Machine Perception Research Group |
Short name or acronym | Human & Machine Perception Research Group |
Organisation type | Center |
Activity type | Speech technology |
Address | Keel University |
Postal Code | ST5 5BG |
City | Keel, Staffordshire |
Country | United Kingdom |
Phone | + +44 1782 582057 |
Fax | + +44 1782 583055 |
Organisation URL | http://www.keele.ac.uk/depts/co/mprg.html |
Logo | Description |
![]() |
The Human and Machine Perception Research Centre consists of members of staff from the MacKay Institute of Communication and Neuroscience, the Department of Computer Science, the Department of Mathematics, and Psychology at Keele University and the Department of Psychology at Liverpool University. The aim of the group is the application of processing strategies employed by biological systems to machine problems. Improving noise robustness of speech recognition systems with Amplitude Modulation Maps. |
Contact | |
Name | Prof. W.A. Ainsworth |
Function | Professor of Speech Communication |
Department | Speech processing |
coa01_(on)_cns.keele.ac.uk | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |