|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1510 ] | PhD. Erhan Mengusoglu |
---|---|
Name | Mengusoglu, PhD. Erhan |
Job Title | Software Engineer |
Organisation | IBM UK Ltd |
Address | IBM UK, Hursley |
Postal Code | SO21 2JN |
City | Hursley |
Country | United Kingdom |
Phone | +44 1962815995 |
Fax | + |
Mobile | + |
mengus_(on)_mengusoglu.eu [@ replaced for spam protection] | |
Organisation URL | http://www.ibm.com/uk/ |
Personal URL | http://www.mengusoglu.eu |
Membership | IEEE |
Languages | English French, Turkish |
Specialism | Acoustic Modeling
Acoustic Phonetics Adaptive Speech Recognition Analysis & Processing of Speech under Stress Audio Signal Processing Auditory Modelling Bilingual Speech Production/Perception Call Center Automation Computational Linguistics Computational Morphology Confidence Measures Corpus Linguistics Corpus statistics Digital Speech Processing Interactive Voice Response (IVR) Internet Language Identification Language Modeling Language Processing Lexical Semantics Mathematical Linguistics Morphology Modeling for Languages with Highly Complex Inflection Multilingual Speech Recognition Pattern Recognition and Statistical Data Analysis Phonetics Robust Speech Recognition Signal Analysis Signal Processing Speaker Adaptation Speaker Identification Speaker Recognition Speaker Recognition (forensic application) Speech Databases for Automatic Speech/Speaker Recognition Speech Processing Speech Recognition Speech Recognition in Neural Architecture Speech Signal Processing Speech Technologies Statistical Language Modeling and Analysis Statistical Language Modelling for Speech Recognition Turkish Syntax Voice to Text Conversion for the Hearing Impaired Web Applications |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2008-02-20 12:04:30 #!/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" |