|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3376 ] | CCL |
---|---|
Organisation name | Center for Computational Linguistics |
Short name or acronym | CCL |
Organisation type | University |
Activity type | Lang+Speech Technology research |
Address | Malostranské nám. 25 |
Postal Code | 118 00 |
City | Prague |
Country | Czech Republic |
Phone | + +420 2 2191 4252 |
Fax | + +420 2 2191 4304 |
ckl_(on)_ckl.mff.cuni.cz | |
Organisation URL | http://ckl.mff.cuni.cz |
Logo | Description |
![]() |
The Center for Computational Linguistics has been established and supported as a "Center of Excellence" by the Ministry of Education of the Czech Republic within the national scientific program aiming at a substantial and long-term support of the most advanced topical domains of research. The Center is attached to the Faculty of Mathematics and Physics, Charles University in Prague and closely cooperates with the Institute of Formal and Applied Linguistics (ÚFAL), MFF UK. The research activities of the Center are divided into four areas:
The Center is a joined research unit of three founding organizations:
|
Contact | |
Name | Prof. PhDr., DrSc. Eva Hajièová |
Function | director |
Department | |
hajicova_(on)_ckl.mff.cuni.cz | |
Phone | + +420 2 2191 4252 |
Fax | + +420 2 2191 4304 |
![]() |
Last update: 2004-07-01 11:14: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" |