|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0407 ] | Ian Boardman |
---|---|
Name | Boardman, Ian |
Job Title | |
Organisation | |
Address | 18 Linwood St. |
Postal Code | MA 02474-6608 |
City | Arlington |
Country | United States |
Phone | + |
Fax | + |
Mobile | + |
isb0459_(on)_gmail.com [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | http://www.linkedin.com/in/isb0459 |
Membership | ELSNET |
Languages | English |
Specialism | Acoustic Modeling
Acoustic Phonetics Artificial Neural Networks Automatic transcription of TV and radio broadcast News Confidence Measures Corpus statistics Data Corpus Collection Developer Tools Dynamic Lexicon Building Evaluation Hidden Markov Models Information Retrieval Knowledge-based Speech Recognition Language Identification Language Modeling Language Resources Lexicons Neural Networks Phonetics Pronunciation Modelling Robust Speech Recognition Speaker Recognition Speech Applications Speech Coding Speech Databases Speech Recognition Speech Recognition in Neural Architecture Statistical Pattern Recognition |
Photograph | Description or CV |
![]() |
http://www.elsnet.org/expertcvs/blank.html |
![]() |
Last update: 2012-12-10 15:50:17 #!/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" |