[ ID = 2146 ] | Speech & Language Technology group (SLT group) |
Organisation name | Speech & Language Technology group (SLT group) |
Short name or acronym | Speech & Language Technology group (SLT group) |
Organisation type | Center |
Activity type | Speech technology |
Address | Wire Communication Lab., University of Patras |
Postal Code | 26500 |
City | Rio |
Country | Greece |
Phone | + +30 2610 996 216 |
Fax | + +30 2610 997 336 |
Email | fakotaki_(on)_wcl.ee.upatras.gr |
Organisation URL | http://slt.wcl.ee.upatras.gr |
Logo | Description |
 |
The Speech & Language Technology group (SLT group) is part
of the Wire Communications Laboratory of the Electrical and Computer
Engineering Department, of the University of Patras, Greece. The SLT
group employs more than 15 researchers in teaching and research
activities in the following areas:
+ Speech Processsing
+ Natural Language Processing
+ Optical Character Recognition
|
| Contact |
Name | Prof. Nikos Fakotakis |
Function | |
Department | Electrical & Computer Engineering Department |
Email | fakotaki_(on)_wcl.ee.upatras.gr |
Phone | + +30 2610 996 216 |
Fax | + +30 2610 997 336 |
Update this profile
|
Last update: 2003-02-17 13:09:31
#!/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"
|