|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2696 ] | The Natural Language Processing Group, King's College |
---|---|
Organisation name | The Natural Language Processing Group, King's College |
Short name or acronym | The Natural Language Processing Group, King's College |
Organisation type | Center |
Activity type | Speech technology |
Address | Department of Computer Science King's College, Strand |
Postal Code | WC2R 2LS |
City | London |
Country | United Kingdom |
Phone | + +44 20 7848 2588 |
Fax | + +44 20 7848 2851 |
secretary_(on)_dcs.kcl.ac.uk | |
Organisation URL | http://www.dcs.kcl.ac.uk/research/groups/nlp/index.html |
Logo | Description |
![]() |
The Natural Language Processing group is a new research unit in the Computer Science Department at King's. We started with the arrival of Shalom Lappin, Jonathan Ginzburg, and Chris Fox in the Department in September, 2000. One of our main research interests is the logical foundations of computational semantics. Our members have research projects in computational semantics, implemented dialogue interpretation and management systems, and natural language interfaces to business management systems. We teach courses in syntax, semantics, Prolog and natural language processing, and computational models of dialogue. |
Contact | |
Name | |
Function | |
Department | |
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" |