[ ID = 1325 ] |
Associate Prof. Levent M. Arslan |
Name |
Arslan, Associate Prof. Levent M. |
Job Title | Associate Prof. |
Organisation |
Boðaziçi University |
Address | Boðaziçi University Electrical and Electronics Engineering Dept. |
Postal Code | 80815 |
City | Ýstanbul |
Country | Turkey |
Phone | + +90 212 358 1540 ext. 1421 |
Fax | + +90 212 2872465 |
Mobile | + |
Email |
arslanle_(on)_boun.edu.tr
[@ replaced for spam protection] |
Organisation URL |
http://www.ee.boun.edu.tr |
Personal URL |
http://hamlin.cc.boun.edu.tr/~arslanle/ |
Membership |
ELSNET
IEEE |
Languages | English Turkish |
Specialism |
Digital Speech Processing
Filter Design
Hidden Markov Models
Human Voice Understanding
Information Services by Telephone using Speech Technologies
Noise Reduction
Recognition Technologies
Robust Speech Recognition
Speaker Recognition
Speech Enabled IVRs
Speech Enhancement
Speech Recognition
Speech Signal Processing
Speech Synthesis
Speech Technologies
Speech-Enabled IVR Systems
Statistical Language Modelling for Speech Recognition
Text-to-Speech
Text-to-Speech in Telephony
Turkish Syntax |
Photograph | Description or CV |
 |
http://www.elsnet.org/expertcvs/1325.doc
|
Update your profile
|
Last update: 2002-04-15 15:22:25
#!/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"
|