|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0755 ] | Speach and Hearing Research Group - University of Sheffield |
---|---|
Organisation name | Speach and Hearing Research Group - University of Sheffield |
Short name or acronym | Speach and Hearing Research Group - University of Sheffield |
Organisation type | Center |
Activity type | Speech technology |
Address | Regent Court, 211 Portobello Street |
Postal Code | S1 4DP |
City | Sheffield |
Country | United Kingdom |
Phone | + |
Fax | + |
spandh-webmaster_(on)_dcs.shef.ac.uk | |
Organisation URL | http://www.dcs.shef.ac.uk/research/groups/spandh/ |
Logo | Description |
![]() |
The Speech and Hearing Research Group (SpandH) was established in the Department of Computer Science, University of Sheffield, in 1986. Since then, it has gained an international reputation for research in the fields of speech technology and computational hearing. The group is concerned both with the computational modelling of auditory and speech perception in humans and machines, with the problem of robustness in speech recognition and with the development of leading-edge, large vocabulary speech recognition systems. An aspect of the group which makes it unique in the United Kingdom is the wide spectrum of research topics covered, from the psychology of hearing through to the engineering of large vocabulary speech recognition systems. It is our belief that studies at different points in this spectrum can and should be mutually beneficial. At the time of writing, SpandH comprises 4 academics, 4 research assistants and 13 research students. It is currently funded by the EC ESPRIT Long Term Research Programme, the EC TMR programme, the UK EPSRC funding agency, The Hearing Trust, DERA, Motorola and Nokia. SpandH coordinates three major EC collaborative projects. |
Contact | |
Name | Professor Phil Green |
Function | |
Department | Dept. of Computer Science University of Sheffield |
p.green_(on)_dcs.shef.ac.uk | |
Phone | + +44 114 222 1828 |
Fax | + +44 114 222 1810 |
![]() |
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" |