|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2467 ] | Mr Prabhu Palanisamy |
---|---|
Name | Palanisamy, Mr Prabhu |
Job Title | Team Lead ( Speech Technology ) |
Organisation | Focus Group |
Address | 11th cross, malleswaram |
Postal Code | 560003 |
City | Bangalore |
Country | India |
Phone | + |
Fax | + |
Mobile | +91 7760596164 |
prabhumailz_(on)_gmail.com [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | |
Languages | English |
Specialism | Acoustic Modeling
Call Center Automation Corpora Corpus Linguistics Customer Care Customer Care Process Data Corpus Collection Development and Implementation of Speech Technology Applications Dynamic Programming in Speech Recognition Grammar Hidden Markov Models Human Voice Understanding Information Retrieval Information Services by Telephone using Speech Technologies Interactive Voice Response (IVR) Internet Intonation Knowledge-based Speech Recognition Language Identification Language Learning Language Modeling Language Processing Language Resources Language Translation Large speech corpora Linguistics Morphology Multilingual Acoustic Modeling Multilingual Speech Recognition Multimodal Dialogue Systems Multimodal Human-Machine Communication Natural Language Processing Recognition Technologies Recognition Tuning Robust Speech Recognition Robust Speech Understanding Speaker Identification Speaker Recognition Speaker Recognition (forensic application) Speech Acoustics Speech Databases Speech Databases for Automatic Speech/Speaker Recognition Speech Enabled IVRs Speech Processing Speech Recognition Speech Technologies Speech Understanding Speech-Enabled IVR Systems Speech-to-Speech Translation Spoken Dialogue and Robust Speech Understanding Spoken Dialogue Modeling Telecommunications Telephony Text-to-Speech Text-to-speech (Indic) Text-To-Speech Conversion Text-to-Speech in Telephony Voice Biometrics (Speaker Verification, Identification, Voice Identification Web Applications |
Photograph | Description or CV |
| |
Update your profile | Last update: 2011-06-11 10:37:09 #!/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" |