|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0563 ] | Institute for Language, Speech and Hearing - ILASH |
---|---|
Organisation name | Institute for Language, Speech and Hearing - ILASH |
Short name or acronym | Institute for Language, Speech and Hearing - ILASH |
Organisation type | Center |
Activity type | Speech technology |
Address | West Court 2 Mappin Street University of Sheffield |
Postal Code | S1 4DT |
City | Sheffield |
Country | United Kingdom |
Phone | + +44 114 222 5269 |
Fax | + +44 114 222 1810 |
ilash_(on)_dcs.shef.ac.uk | |
Organisation URL | http://www.dcs.shef.ac.uk/research/ilash/ |
Logo | Description |
![]() |
The Institute for Language, Speech and Hearing - ILASH - was set up within the University of Sheffield in 1994. The Institute aims to provide a focus and common resource for interdisciplinary research in language, speech and hearing by providing an environment in which collaboration in these and related areas can flourish. Work is being carried out in various aspects of information retrieval, natural language processing, auditory modelling, artificial intelligence, linguistics, speech science, speech technology, computational psychology and neural networks, making the language, speech and hearing research community at Sheffield one of the largest in the U.K. |
Contact | |
Name | |
Function | |
Department | |
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" |