|  
 |||||||||||||||||||||||||||||||||||||||||||||||
 
       
       
 
 
 
 
 |  
 |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 2828 ] | Natural Language Processing and Computational Linguistics - University of Sussex | 
|---|---|
| Organisation name | Natural Language Processing and Computational Linguistics - University of Sussex | 
| Short name or acronym | Natural Language Processing and Computational Linguistics - University of Sussex | 
| Organisation type | Center | 
| Activity type | Speech technology | 
| Address | |
| Postal Code | |
| City | |
| Country | United Kingdom | 
| Phone | + | 
| Fax | + | 
| Organisation URL | http://www.cogs.susx.ac.uk/lab/nlp/ | 
| Logo | Description | 
![]()  | 
Achievements of the Sussex NLP Group
  + Pioneering work in the use and description of corpora for NLP
    research, pioneering work in robust and probabilistic parsing.
  + Design of GPSG, one of the two most influential grammar formalisms
    in 1980s NLP research.
  + Development of innovative tools to support large-scale grammar and
    lexicon construction.
  + Establishment of many of the key results relating to the
    complexity of the various widely used mildly context-sensitive
    grammar formalisms.
  + Design of DATR, probably the most widely used lexical knowledge
    representation language at the present time.
  + Advances in the descriptive capacity and formal semantics of
    feature logics.
  + Practical results in the area of message understanding that are
    demonstrably on a par with the best US work in this area.
  + Original research on the use of declarative formalisms for
    computational phonology and computational morphology.
  + Definition of a precise taxonomic scheme for specifying the
    surface and underlying grammatical structure of naturally
    occurring English sentences. The electronic SUSANNE Corpus, which
    exemplifies its application, was first released in 1992 and is now
    in worldwide use.
 | 
| 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" |