|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2718 ] | NLP Group - University of Sheffield |
---|---|
Organisation name | NLP Group - University of Sheffield |
Short name or acronym | NLP 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 | + +44 114 222 1804 |
Fax | + +44 114 222 1810 |
yorick_(on)_dcs.sheffield.ac.uk | |
Organisation URL | http://www.dcs.shef.ac.uk/research/groups/nlp/nlp.html |
Logo | Description |
![]() |
The NLP group has a distinctive emphasis on what can be called Language Engineering research, rather than a focus on the properties of representations as such. We do not take that to imply just a concentration on applications, though we like to be practical, but rather an emphasis on solutions to problems through procedures, on the assumption that those procedures often turn out to have interesting theoretical properties as well. Our developing programme in NLP will seek to link to speech, AI, neural net and vision research (within the department) as well as to a range of NLP-related areas under the general aegis of ILASH, such as medical research, speech pathology, and information retrieval. |
Contact | |
Name | Professor Yorick Wilks |
Function | Head of Department |
Department | Computer Science |
Y.Wilks_(on)_dcs.shef.ac.uk | |
Phone | + +44 114 22 21804 |
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" |