|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0486 ] | Dilek Hakkani-Tur |
---|---|
Name | Hakkani-Tur, Dilek |
Job Title | Senior Technical Staff Member |
Organisation | AT&T Labs-Research |
Address | 180 Park Avenue, D-183 |
Postal Code | 07932 |
City | Florham Park |
Country | United States |
Phone | + 973 360 8846 |
Fax | + 973 360 8092 |
Mobile | + 201 738 1353 |
dilekh_(on)_yahoo.com [@ replaced for spam protection] | |
Organisation URL | http://www.research.att.com |
Personal URL | http://www.research.att.com/~dtur |
Membership | ACL IEEE |
Languages | English Turkish |
Specialism | Ambiguity
Automated Natural Language Speech Language Modeling Machine Translation Morphology Modeling for Languages with Highly Complex Inflection Natural Language Processing Pattern Recognition and Statistical Data Analysis Speech Understanding Spoken Dialogue and Robust Speech Understanding Spoken Dialogue Modeling Spoken Dialogue Processing Spoken Dialogue Systems Statistical Language Modeling and Analysis Statistical Language Modelling for Speech Recognition Statistical Methods for Information Retrieval |
Photograph | Description or CV |
http://www.research.att.com/~dtur/cv.html | |
Update your profile | Last update: 2002-06-19 18:08:45 #!/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" |