[ ID = 3521 ] | PRHLT |
Organisation name | Pattern Recognition and Human Language Technology Group |
Short name or acronym | PRHLT |
Organisation type | University |
Activity type | Lang+Speech Technology research |
Address | Departamento de Sistemas Informáticos y Computación - Instituto Tecnológico de Informática. Universidad Politécnica de Valencia. Cno. de Vera s/n |
Postal Code | 4022 |
City | Valencia |
Country | Spain |
Phone | +34 963877007 Ext 73515 |
Fax | +34 963877359 |
Email | fcn_(on)_dsic.upv.es |
Organisation URL | http://www.iti.upv.es/groups/prhlt |
Logo | Description |
 |
Machine Translation
Speech-to-speech translation,text-to-text translation and computer-assisted
translation for limited domains. Finite-state transducers and statistical
alignment models are used as the basis of the machine translation systems.
These models can be learnt automatically from real translations.
Automatic Speech Recognition
Speech decoding, speech understanding and dialog. Stochastic finite-state
networks are used as the basis of such ASR systems. These finite-state grammars
are learnt automatically from real examples of utterances or text.
Image Analysis and Computer Vision
On-line and off-line continuous handwritten character recognition. Document
analysis. Statistical and syntactic pattern recognition techniques are used.
|
| Contact |
Name | Dr. Francisco Casacuberta |
Function | Catedrático de Universidad |
Department | Departamento de Sistemas Informáticos y Computación |
Email | fcn_(on)_dsic.upv.es |
Phone | +34 963877007 Ext 73515 |
Fax | +34 963877359 |
Update this profile
|
Last update: 2005-04-22 11:27:09
#!/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"
|