|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2154 ] | Language Technology Group (LTG) |
---|---|
Organisation name | Language Technology Group (LTG) |
Short name or acronym | Language Technology Group (LTG) |
Organisation type | Center |
Activity type | Speech technology |
Address | 2, Buccleuch Place |
Postal Code | EH8 9LW |
City | Edinburgh |
Country | United Kingdom |
Phone | + +44 131 650 4445 |
Fax | + +44 131 650 4587 |
Organisation URL | http://www.ltg.ed.ac.uk |
Logo | Description |
![]() |
The LTG is a research and development group working in the area of natural language engineering. Based in the Institute for Communicating and Collaborative Systems and in the Human Communication Research Centre, it can draw on the skills and expertise of one of the largest communities of natural language processing specialists in Europe. LTG work is application oriented: we want to contribute to the generation of practical solutions to real problems. We have worked in all areas of large-volume text handling, from text annotation through markup architectures and information extraction to automatic or computer-assisted generation of text. |
Contact | |
Name | Mr. Marc Moens |
Function | Senior Research Fellow/Manager |
Department | |
M.Moens_(on)_ed.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" |