|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2399 ] | Dr. Chandra Kant RAUT |
---|---|
Name | RAUT, Dr. Chandra Kant |
Job Title | Scientist |
Organisation | BBN Technologies |
Address | 10 Moulton Street |
Postal Code | 02138 |
City | Cambridge |
Country | United States |
Phone | +1 617-873-8059 |
Fax | + |
Mobile | + |
ckraut_(on)_bbn.com [@ replaced for spam protection] | |
Organisation URL | http://www.bbn.com |
Personal URL | |
Membership | ISCA |
Languages | English |
Specialism | Acoustic Modeling
Adaptive Speech Recognition Audio Indexing Audio Signal Processing Audiovisual Speech Processing Automated Natural Language Speech Background Noise Suppression Bayesian Theory and Applications Computational Linguistics Digital Speech Processing Handwriting and Signature Recognition Hidden Markov Models HMM-based OCR Language Modeling Machine Learning Machine Translation Multilingual Speech Recognition Multimodal Communciation Natural Language Processing Noise Reduction Optical Character Recognition Pattern Recognition and Statistical Data Analysis Speaker Adaptation Speech Recognition Speech Signal Processing |
Photograph | Description or CV |
http://mi.eng.cam.ac.uk/~ckr21/bio.html | |
Update your profile | Last update: 2010-08-23 12:05:50 #!/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" |