|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0417 ] | PHD Hervé Glotin |
---|---|
Name | Glotin, PHD Hervé |
Job Title | Permanent Research Ingeneer at CNRS - France |
Organisation | CNRS (French national research agency). Formerly at IDIAP & ICP |
Address | 42 rue des Marchands |
Postal Code | 31000 |
City | TOULOUSE |
Country | France |
Phone | + - |
Fax | + - |
Mobile | + +33 (0)6 70 28 56 08 |
glotin_(on)_irit.fr [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | http://www.idiap.ch/~glotin |
Membership | ISCA GFCP member / IEEE member |
Languages | English |
Specialism | Speech technology
Robust Automatic Speech Recognition Acoustic Phonetics Artificial Neural Networks Audio and Video Authentication Audio Indexing Audiovisual Speech Processing / Recognition Channel Mismatch Compensation Cognitive Engineering Confidence Measures Ethological Aspects of Speech Communication Evaluation Hidden Markov Models Human Voice Understanding Information Retrieval Information Services by Telephone using Speech Technologies Knowledge-based Speech Recognition Machine Learning Algorithms Multimodal Human-Machine Communication Phonology Signal Processing Speech Applications Speech Coding Statistical Pattern Recognition |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2002-09-10 17:57:49 #!/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" |