|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2710 ] | Speech Research Laboratory - Kaunas University of Technology |
---|---|
Organisation name | Speech Research Laboratory - Kaunas University of Technology |
Short name or acronym | Speech Research Laboratory - Kaunas University of Technology |
Organisation type | Center |
Activity type | Speech technology |
Address | K.Donelaičio g. 73 |
Postal Code | LT-3006 |
City | Kaunas |
Country | Lithuania |
Phone | + |
Fax | + |
Organisation URL | http://www.ktu.lt/en/index8.html |
Logo | Description |
![]() |
Research Areas: + Speech detection, endpointing and enhancement; + Phonetical speech recognition using regularized discriminant analysis; + Advanced local discriminants in the continuous density hidden Markov model; + Speech recognition applications (services for citizens, tools for disabled people, voice driven telephone services, forensic speech examination, school of tomorrow). |
Contact | |
Name | Dr. A. Rudzionis |
Function | |
Department | Faculty of Electrical Engineering and Control Systems |
alrud_(on)_mmlab.ktu.lt | |
Phone | + +370 7 354191 |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |