|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 2709 ] | CCL at VMU |
|---|---|
| Organisation name | Centre of Computational Linguistics - Vytautas Magnus University |
| Short name or acronym | CCL at VMU |
| Organisation type | Center |
| Activity type | Corpus Linguistics, Computational Linguistics, NLP, Speech recogniton and syntesis |
| Address | Donelaièio 52 - 206 |
| Postal Code | LT - 3000 |
| City | Kaunas |
| Country | Lithuania |
| Phone | + +370 37 32 36 33 |
| Fax | + +370 37 20 38 58 |
| ruta_(on)_hmf.vdu.lt | |
| Organisation URL | http://donelaitis.vdu.lt/indexa.html |
| Logo | Description |
![]() |
Center of Computational Linguistics was founded in order to + start an archive of electronic texts and on its basis to compile a general purpose corpus of the Lithuanian language as well as special corpora; + to create other language resources such as concordances, lexical databases, electronic dictionaries, etc. based on Lithuanian corpora; + to create software tools meant for corpus analysis and in this way + to advocate application of computers in humanities in general and linguistics in particular. |
| Contact | |
| Name | Rûta Marcinkevièienë |
| Function | Head |
| Department | |
| ruta_(on)_hmf.vdu.lt | |
| Phone | + |
| Fax | + |
|
|
Last update: 2003-01-24 12:08:02 #!/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" |