|
|
Expert profile: Dr. Michael Tjalve
[ ID = 2419 ] |
Dr. Michael Tjalve |
Name |
Tjalve, Dr. Michael |
Job Title | Senior Speech Scientist / Affiliate Assistant Professor |
Organisation |
VoiceBox Technologies |
Address | 11980 NE 24th Street |
Postal Code | 98005 |
City | Bellevue, WA |
Country | United States |
Phone | +1 425-968-7900 |
Fax | + |
Mobile | + |
Email |
michaelt_(on)_voicebox.com
[@ replaced for spam protection] |
Organisation URL |
http://www.voicebox.com/ |
Personal URL |
http://faculty.washington.edu/mtjalve/index.html |
Membership |
|
Languages | English French, Spanish, Danish, German |
Specialism |
Acoustic Modeling
Acoustic Phonetics
Computational Linguistics
Development and Implementation of Speech Technology Applications
Dialogue systems
Embedded Systems
Experimental Phonetics
Grammar
Human Voice Understanding
Language Identification
Multilingual Acoustic Modeling
Multilingual Speech Recognition
Multimodal Human-Machine Communication
Natural Language Processing
Pronunciation Modelling
Speech Processing
Speech Recognition
Speech Synthesis
Speech Technologies
Statistical Language Modelling for Speech Recognition
Text-to-Phonetic Representation |
Photograph | Description or CV |
 |
http://faculty.washington.edu/mtjalve/index.html
|
Update your profile
|
Last update: 2010-11-02 17:34:59
#!/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"
|
|