|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0527 ] | Dr. Luis Alfonso Hernández Gómez |
---|---|
Name | Hernández Gómez, Dr. Luis Alfonso |
Job Title | Profesor Titular |
Organisation | ETSIT - UPM |
Address | Cdad Universitaria s/n |
Postal Code | 28040 |
City | Madrid |
Country | Spain |
Phone | + 341+ 91336 7351 |
Fax | + 341+ 913367351 |
Mobile | + |
luis_(on)_gaps.ssr.upm.es [@ replaced for spam protection] | |
Organisation URL | http://www.gaps.ssr.upm.es |
Personal URL | http://www.gaps.ssr.upm.es/luish/luishi.html |
Membership | ISCA |
Languages | English Spanish |
Specialism | Speechtechnology:
Acoustic Modeling Automated Natural Language Speech Corpora and Dialogue Annotations Dialogue Digital Speech Processing Evaluation Hidden Markov Models Human Voice Understanding Information Retrieval Information Services by Telephone using Speech Technologies Language Modeling Language Processing NLP Noise Effects Oral Dialogue Robust Speech Recognition Signal Processing Speaker Adaptation Speaker Recognition Speech Acoustics Speech Analysis Speech Applications Speech Coding Speech Databases for Automatic Speech/Speaker Recognition Speech Recognition Speech Technologies Speech-Enabled IVR Systems Spoken Dialogue and Robust Speech Understanding Spoken Dialogue Systems Spoken Language Resources and Evaluation Spontaneous Speech Statistical Language Modeling and Analysis Telephony Text to Speech in Telephony Voice Biometrics (Speaker Verification, Identification, Lie-detection, etc) Voice Identification Voice Processing VoIP Web Applications |
Photograph | Description or CV |
![]() |
http://www.gaps.ssr.upm.es/luish/luishi.html |
![]() |
Last update: 2002-04-08 11:50:18 #!/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" |