|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1228 ] | CCL |
---|---|
Organisation name | Centre for Computational Linguistics, Katholieke Universiteit Leuven |
Short name or acronym | CCL |
Organisation type | Center |
Activity type | Computational Linguistics |
Address | Maria-Theresiastraat 21 |
Postal Code | B-3000 |
City | Leuven |
Country | Belgium |
Phone | + +32 16 325088 |
Fax | + +32 16 325098 |
ccl_(on)_ccl.kuleuven.ac.be | |
Organisation URL | http://www.ccl.kuleuven.ac.be |
Logo | Description |
![]() |
The objective of the CCL is to facilitate research and education in the areas of computational linguistics and language technology. The major topics of research and expertise are: - lexicon development - machine translation - corpus linguistics, including corpus annotation - formal linguistics - text-to-speech synthesis - parsing - morphological analysis and generation - computer-aided language learning The CCL participates in teaching programmes of the faculties of Arts and Engineering of the K.U.Leuven. It organizes lectures, workshops, conferences and summer schools. The CCL is a member of the European Network for Language and Speech (ELSNET) and is one of the founding members of the research network Computational Linguistics in Flanders (CLIF). Currently the Center consists of 12 members. The permanent members of staff include Geert Adriaens, Michael Goethals, Piet Mertens, Dirk Speelman and Frank Van Eynde. |
Member of elsnet | Contact |
Name | Piet Mertens / Frank Van Eynde |
Function | |
Department | Centre for Computational Linguistics |
ccl_(on)_ccl.kuleuven.ac.be | |
Phone | + +32 16 32 47 63 (Mertens) or +32 16 32 50 84 (Van Eynde) |
Fax | + +32 16 32 47 67 (Mertens) or +32 16 32 50 89 (Van Eynde) |
![]() |
Last update: 2002-09-10 10:52:04 #!/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" |