|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0492 ] | Dr. GOKHAN TUR |
---|---|
Name | TUR, Dr. GOKHAN |
Job Title | Senior Technical Staff Member |
Organisation | AT&T |
Address | AT&T Labs-Research |
Postal Code | 07932 |
City | Florham Park, NJ |
Country | United States |
Phone | + (973) 360 5710 |
Fax | + |
Mobile | + |
gtur_(on)_research.att.com [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | ACL ISCA IEEE |
Languages | English |
Specialism | Speechtechnology:
Computational Linguistics Information Services by Telephone using Speech Technologies Language Modeling Language Processing Large speech corpora Machine Learning Algorithms Machine Translation NLP Prosodic Studies in Spontaneous Language Analysis Robust Speech Recognition Speech Processing Speech Technologies Speech-Enabled IVR Systems Spoken Dialogue and Robust Speech Understanding Spoken Dialogue Systems Statistical Language Modeling and Analysis Topic segmentation |
Photograph | Description or CV |
![]() |
http://www.research.att.com/~gtur/cv.html |
![]() |
Last update: 2003-11-03 22:05:04 #!/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" |