|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0863 ] | ILSP |
---|---|
Organisation name | Institute for Language and Speech Processing |
Short name or acronym | ILSP |
Organisation type | Center |
Activity type | Speech technology |
Address | Epidavrou & Artemidos 6 |
Postal Code | 151 25 |
City | Marousi, Athens |
Country | Greece |
Phone | + +30 1 6875300 |
Fax | + +30 1 6854270 |
www_(on)_ilsp.gr | |
Organisation URL | http://www.ilsp.gr |
Logo | Description |
![]() |
The Institute for Language and Speech Processing was founded in Athens, Greece, under the auspices of the General Secretariat for Research and Technology (Ministry of Development) with the aim to support the development of Language Technology. To this end, it has created the critical mass of experienced scientists and the necessary technical infrastructure. Among the activities of ILSP is the development of language technology for Greek. ILSP has developed research activities in the fields of theoretical, applied and computational linguistics, natural language processing and engineering, computer assisted language learning, speech processing, synthesis and recognition. |
Member of elsnet | Contact |
Name | Mrs. Christina Alexandris |
Function | |
Department | Speech Technology |
calex_(on)_ilsp.gr | |
Phone | + +3 01 6875 412 |
Fax | + |
![]() |
Last update: 2002-04-16 18:07:44 #!/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" |