|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3371 ] | CENTAL |
---|---|
Organisation name | Center for natural language processing |
Short name or acronym | CENTAL |
Organisation type | University |
Activity type | Other Lang+Speech Technology expertise |
Address | Place Blaise Pascal, 1 |
Postal Code | 1348 |
City | Louvain-la-Neuve |
Country | Belgium |
Phone | + +32 10 473786 |
Fax | + +32 10 472606 |
fairon_(on)_tedm.ucl.ac.be | |
Organisation URL | http://cental.fltr.ucl.ac.be |
Logo | Description |
![]() |
CENTAL (Center for natural language processing) is a research center located at the university of Louvain. Its research interests are centered on computational linguistics, corpus linguistics, text algorithms, methodology for constructing, updating and using linguistic descriptions in NLP and information retrieval. |
Contact | |
Name | Professor Cédrick Fairon |
Function | Director |
Department | Center for natural language processing |
fairon_(on)_tedm.ucl.ac.be | |
Phone | + +32 10 473788 |
Fax | + +32 10 472606 |
![]() |
Last update: 2004-06-18 01:01:49 #!/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" |