|  
 |||||||||||||||||||||||||||||||||||||||||||||||
 
       
       
 
 
 
 
 |  
 |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 1357 ] | Gõteborg University, Educational Programme in Computational Linguistics | 
|---|---|
| Organisation name | Gõteborg University, Educational Programme in Computational Linguistics | 
| Short name or acronym | Gõteborg University, Educational Programme in Computational Linguistics | 
| Organisation type | Center | 
| Activity type | Speech technology | 
| Address | (Renströmsgatan 6) Box 200 | 
| Postal Code | SE - 405 30 | 
| City | Göteborg | 
| Country | Sweden | 
| Phone | + | 
| Fax | + | 
| Organisation URL | http://www.cling.gu.se/ | 
| Logo | Description | 
![]()  | 
Computational Linguistics (CL) is an area of inquiry in which computational models of linguistic knowledge are investigated. The precise definition of CL is a controversial issue. Some work suggests that it is a branch of linguistics in which computational models play a role in theoretical or empirical investigations. Computer implementation may be a way of testing formal models of linguistic competence and performance. Computerized linguistic analysis is also used in empirical investigations of corpora (collections of texts or conversations). CL also has a more engineering-oriented aspect. Computational models of language may be designed to serve practical purposes. The aim is consequently to develop systems that can handle language in `intelligent' ways, e.g. More or less automatic translation of text Interfaces in natural language Information retrieval Voice-controlled home electronics Speech synthesis Systems able to find (and correct) errors of spelling, grammar, or even argumentation Computer-assisted tutoring The differences between linguistic investigations and ``language engineering'' should not be exaggerated. The Göteborg CL programme is intended to cover both aspects, theoretical CL as well as language technology.  | 
| Contact | |
| Name | Prof. Robin Cooper | 
| Function | Professor | 
| Department | Computational Linguistics | 
| +46 0 31 773 25 36 | |
| Phone | + cooper@ling.gu.se | 
| 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" |