|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1642 ] | Dr. Hadi Harb |
---|---|
Name | Harb, Dr. Hadi |
Job Title | |
Organisation | Ecole Centrale de Lyon |
Address | 36, av Guy de Collongue |
Postal Code | 69130 |
City | Ecully |
Country | France |
Phone | + +33 (0)4.72.18.64.59 |
Fax | + |
Mobile | + |
hadi.harb_(on)_ec-lyon.fr [@ replaced for spam protection] | |
Organisation URL | http://perso.ec-lyon.fr/hadi.harb |
Personal URL | |
Membership | |
Languages | English French |
Specialism | Artificial Neural Networks
Audio Authentication Audio Indexing Audio Signal Processing Auditory Modelling Auditory scene analysis Cognitive Engineering Development and Implementation of Speech Technology Applications Digital Speech Processing Fundamental frequency estimation Hidden Markov Models Human Voice Understanding Language Identification Machine Learning Neural Networks Non-HMM Methods for Speech Recognition Pattern Recognition and Statistical Data Analysis Semantics Signal Processing Speaker Identification Speech Signal Processing Spoken Dialogue Processing Statistical Pattern Recognition Technology Implementation Vector Quantization |
Photograph | Description or CV |
![]() |
http://perso.ec-lyon.fr/hadi.harb/resume.htm |
![]() |
Last update: 2003-11-13 14:54:51 #!/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" |