Organisation profile: CTU Speech Processing and Signal Analysis Group, Czech Technical
University
[ ID = 1873 ] | CTU Speech Processing and Signal Analysis Group, Czech Technical
University |
Organisation name | CTU Speech Processing and Signal Analysis Group, Czech Technical University |
Short name or acronym | CTU Speech Processing and Signal Analysis Group, Czech Technical University |
Organisation type | Center |
Activity type | Speech technology |
Address | Zikova 4 |
Postal Code | 166 36 |
City | Praha 6, Dejvice, Prague |
Country | Czech Republic |
Phone | + +420 2 2435 3465 |
Fax | + +420 2 2431 1042 |
Email | |
Organisation URL | http://noel.feld.cvut.cz/speechlab/ |
Logo | Description |
 |
The speech processing and signal analysis group was
established in 1981. Currently the research in the field of speech
recognition is focused to improvement and design new types of
descriptors for speech recognition with the aim of enlarging the
number of recognized words. Neural network algorithms are the field of
interest for speech recognition. Great emphasis is given to linguistic
and phonetic background, which relies very much on large speech
databases. An expert system for speech recognition has been proposed
and built.
|
| Contact |
Name | Jan Pozar |
Function | |
Department | International Relations Office |
Email | pozar_(on)_vc.cvut.cz |
Phone | + |
Fax | + |
Update this profile
|
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"
|
|