|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2063 ] | Dr. Joseph Keshet |
---|---|
Name | Keshet, Dr. Joseph |
Job Title | Research Assistant Professor |
Organisation | Toyota Technological Institute at University of Chicago |
Address | 6045 S Kenwood Ave |
Postal Code | 60637 |
City | Chicago, IL |
Country | United States |
Phone | +1 773 834 6850 |
Fax | + |
Mobile | + |
jkeshet_(on)_ttic.edu [@ replaced for spam protection] | |
Organisation URL | http://www.ttic.edu |
Personal URL | http://ttic.uchicago.edu/~jkeshet/ |
Membership | ISCA IEEE |
Languages | English Hebrew |
Specialism | Speech Recognition
Non-HMM Methods for Speech Recognition Speech Signal Processing Speech Coding Machine Learning and Statistical Learning Theory |
Photograph | Description or CV |
![]() |
http://ttic.uchicago.edu/~jkeshet/cv.pdf |
![]() |
Last update: 2010-03-01 01:00:56 #!/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" |