|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0670 ] | Prof. Shigeki Sagayama |
---|---|
Name | Sagayama, Prof. Shigeki |
Job Title | Professor |
Organisation | The University of Tokyo |
Address | 7-3-1, Hongo, Bunkyo-ku |
Postal Code | 113-8656 |
City | Tokyo |
Country | Japan |
Phone | + +81-3-5841-6900 |
Fax | + +81-3-5841-6953 |
Mobile | + |
sagayama_(on)_hil.t.u-tokyo.ac.jp [@ replaced for spam protection] | |
Organisation URL | http://hil.t.u-tokyo.ac.jp/ |
Personal URL | http://hil.t.u-tokyo.ac.jp/~sagayama/index-e.html |
Membership | IEEE, IPSJ, IEICEJ, ASJ |
Languages | English |
Specialism | Speechtechnology:
Acoustic Modeling Adaptive Speech Recognition Audio Indexing Audio Signal Processing Automated Natural Language Speech Channel Mismatch Compensation Confidence Measures Data Corpus Collection Databases of Emotional Speech Digital Speech Processing Dynamic Programming in Speech Recognition Emotion in Speech Grammar Compilers Graph Representation of Lexicons Hidden Markov Models Human Factors Language Modeling Machine Learning Algorithms Machine Recognition of Emotion Multimodal Human-Machine Communication Neural Networks Noise Effects Optical Character Recognition Oral Dialogue Parsing Prosody Robust Speech Recognition Search Strategies Signal Analysis Signal Processing Speaker Adaptation Speaker Recognition Speech Analysis Speech Applications Speech Coding Speech Databases for Automatic Speech/Speaker Recognition Speech Recognition Speech Synthesis Speech-to-Speech Translation Statistical Language Modeling and Analysis Statistical Pattern Recognition Systems for Older and Disabled People Telephony Text-to-Speech VoiceXML |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2002-08-14 10:32:53 #!/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" |