[ ID = 0091 ] |
Phd. in Telecommunication Engineering Juan M. Montero |
Name |
Montero, Phd. in Telecommunication Engineering Juan M. |
Job Title | Assistant Professor (Titular de Universidad interino) |
Organisation |
Universidad Politécnica de Madrid |
Address | ETSI Telecomunicación Ciudad Universitaria s/n |
Postal Code | 28040 |
City | Madrid |
Country | Spain |
Phone | + +34 91 5495700 ext. 338 |
Fax | + +34 91 3367323 |
Mobile | + |
Email |
juancho_(on)_die.upm.es
[@ replaced for spam protection] |
Organisation URL |
http://www-gth.die.upm.es/ |
Personal URL |
http://www-gth.die.upm.es/~juancho/ |
Membership |
ELSNET
ACL
ISCA IEEE |
Languages | English español,gallego |
Specialism |
Speech Technology
Computational Linguistics
Corpora and Dialogue Annotations
Natural Language Processing
Speech Synthesis
Analysis & Processing of Emotional Speech
Artificial Neural Networks
Assistive Technology
Confidence Measures
Language Modeling
Machine Learning algorithms
Analysis and modeling of Prosody
restricted-domain prosody
Robust and shallow Parsing
Speech Understanding
Spoken Dialogue Modeling
Text-to-Speech
IVR Systems
|
Photograph | Description or CV |
 |
http://www-gth.die.upm.es/~juancho/curricu_sin.htm
|
Update your profile
|
Last update: 2004-06-16 11:41:41
#!/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"
|