|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3415 ] | Essex L&C |
---|---|
Organisation name | Language and Computation Group at the University of Essex |
Short name or acronym | Essex L&C |
Organisation type | University |
Activity type | Lang+Speech Technology research |
Address | |
Postal Code | CO4 3SQ |
City | Colchester |
Country | United Kingdom |
Phone | + +44 1206 872790 |
Fax | + |
Organisation URL | http://cswww.essex.ac.uk/LAC/ |
Logo | Description |
![]() |
The University of Essex has a long tradition of research in computational linguistics / or natural language processing, starting with work on Machine Translation and Parsing in the 1980s, as well as work on formal semantics (e.g., Property Theory). The Language and Computation group has been created to foster such interaction between researchers within the University, and includes staff and students from the Departments of Computers Science and Languages and Linguistics, and from the Data Archive. Areas of research include anaphora resolution, Arabic NLP, Constraint Based Grammar (LFG and HPSG), corpus annotation (particularly for discourse and semantics research), dialogue, formal semantics, information retrieval, lexicon and lexical acquisition, machine translation, and computational psycholinguistics |
Contact | |
Name | Dr Massimo Poesio |
Function | Group coordinator |
Department | Computer Science |
poesio_(on)_essex.ac.uk | |
Phone | + +44 1206 872686 |
Fax | + +44 1206 872788 |
![]() |
Last update: 2004-09-15 13:01:25 #!/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" |