|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2714 ] | Information Technology Research Institute - University of Brighton |
---|---|
Organisation name | Information Technology Research Institute - University of Brighton |
Short name or acronym | Information Technology Research Institute - University of Brighton |
Organisation type | Center |
Activity type | Speech technology |
Address | Lewes Road |
Postal Code | BN2 4GJ |
City | Brighton |
Country | United Kingdom |
Phone | + +44 1273 642900 |
Fax | + +44 1273 642908 |
admin_(on)_itri.brighton.ac.uk | |
Organisation URL | http://www.itri.bton.ac.uk/ |
Logo | Description |
![]() |
The Information Technology Research Institute (ITRI) is a dedicated research department within the University of Brighton. The current focus of the Institute's work is on computational linguistics, language engineering, and human computer interfaces. Our research addresses the following theoretical issues: architectures for natural language generation, constraint based reasoning, controlled languages, corpora, diagrammatic reasoning, dialog, discourse, integrating text and graphics, lexical knowledge bases, lexical representation, message understanding, multilinguality, natural language interfaces, text generation, underspecification, word sense disambiguation. The work of the Institute is funded primarily by grants from national and European research councils and contracts with commercial organisations. Much of our work is on highly theoretical issues, but the Institute is also strongly committed to strategic research, ensuring whenever possible that the results of our research can provide solutions to real-world problems. |
Contact | |
Name | Professor Donia Scott |
Function | Head of the ITRI |
Department | |
Donia.Scott_(on)_itri.brighton.ac.uk | |
Phone | + +44 1273 642901 |
Fax | + +44 1273 642908 |
![]() |
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" |