|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2719 ] | Natural Language Engineering Group - University of Sunderland |
---|---|
Organisation name | Natural Language Engineering Group - University of Sunderland |
Short name or acronym | Natural Language Engineering Group - University of Sunderland |
Organisation type | Center |
Activity type | Speech technology |
Address | St. Peter's Campus, P.O. Box 299 |
Postal Code | SR6 0YN |
City | Sunderland |
Country | United Kingdom |
Phone | + +44 191 515 2712 |
Fax | + +44 191 515 2781 |
Organisation URL | http://osiris.sunderland.ac.uk/jta/nl-grp.htm |
Logo | Description |
![]() |
The natural language group at the University of Sunderland has about 10 members including research students. Most of them are based in the School of Computing and Information Systems, although there are some in other Schools, especially, the Psychology group in Health Sciences. The main focus of the group is on applied rather than theoretical work and on text rather than speech processing, with the main areas of interest being: + aids for the disabled especially aphasics (see also the PSET project) + multi-lingual document authoring (for example the MABLe project) + computer aided language learning + information retrieval and information extraction (including the Verity project). |
Contact | |
Name | Professor John Tait |
Function | |
Department | |
John.Tait_(on)_sunderland.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" |