|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1411 ] | Dr. Claire Waast-Richard |
---|---|
Name | Waast-Richard, Dr. Claire |
Job Title | Group SOAD: Statistic and Decision tools |
Organisation | EDF R&D |
Address | 1 avenue du Général de Gaulle |
Postal Code | 92141 |
City | Clamart |
Country | France |
Phone | + |
Fax | + |
Mobile | + |
claire.waast-richard_(on)_edf.fr [@ replaced for spam protection] | |
Organisation URL | http://www.edf.fr |
Personal URL | |
Membership | |
Languages | English French |
Specialism | Acoustic Modeling
Adaptive Speech Recognition Development and Implementation of Speech Technology Applications Hidden Markov Models Multilingual Speech Recognition Pronunciation Modelling Robust Speech Recognition Speaker Adaptation Speech Understanding Spoken Language Resources and Evaluation Spontaneous Speech Statistical Language Modelling for Speech Recognition Telephony Text-to-Speech VoiceXML |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2005-10-31 09:51:14 #!/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" |