elsnet |
Organisation profile: NLP Group - University of Cambridge |
[ ID = 2716 ] | NLP Group - University of Cambridge |
---|---|
Organisation name | NLP Group - University of Cambridge |
Short name or acronym | NLP Group - University of Cambridge |
Organisation type | Center |
Activity type | Speech technology |
Address | New Museums Site, Pembroke Street |
Postal Code | CB2 3QG |
City | Cambridge |
Country | United Kingdom |
Phone | + +44 1223 334600 |
Fax | + +44 1223 334678 |
Organisation URL | http://www.cl.cam.ac.uk/Research/NL/index.html |
Logo | Description |
![]() |
The NLIP group consists of Prof K. Sparck Jones, Dr E.J. Briscoe, and Dr A.A. Copestake and a number of research assistants and doctoral students: see the home pages of permanent staff for information about current and former students and for more details of personal projects and research. The group collaborates with other groups within the Computer Lab, such as the Systems research Group and the Theory and Semantics Group, and within the University with the of SVR Group, Engineering, Linguistics, the Research Centre for English Applied Linguistics and with the MRC Cognitive and Brain Sciences Unit. There are active research collaborations with researchers at the universities of Edinburgh, Sheffield, Stanford, and Sussex, and with industrial research laboratories such as SRI Cambridge, Microsoft Research Ltd Cambridge, and Sharp Laboratories Oxford. The group's research projects have included ones on language processing resources and tools, on logic and formalisms, on front ends e.g. for database access, and on speech processing. More recent and current projects, funded under both UK and European Programmes have involved further development of tools and processors, automatic summarising, text and spoken message retrieval; natural language processing for formal specifications; and the acquisition of lexical knowledge and construction of multilingual lexical knowledge bases. |
Contact | |
Name | Professor Karen Spärck Jones |
Function | Professor of Computers and Information |
Department | Computer Science |
ksj_(on)_cl.cam.ac.uk | |
Phone | + +44 1223 334631 |
Fax | + +44 1223 334611 |
![]() |
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" |