|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1617 ] | STAR Laboratory at SRI International |
---|---|
Organisation name | STAR Laboratory at SRI International |
Short name or acronym | STAR Laboratory at SRI International |
Organisation type | Center |
Activity type | Speech technology |
Address | 333 Ravenswood Avenue |
Postal Code | CA 94025-3493 |
City | Menlo Park |
Country | United States |
Phone | + |
Fax | + |
Organisation URL | http://www.speech.sri.com/ |
Logo | Description |
![]() |
The Speech Technology and Research (STAR) Laboratory at SRI is a world leader in speech technology, and is active in both technology creation and technology transfer. Nuance Communications is exploiting technology developed in the STAR Laboratory in over the telephone applications. SRI's DECIPHER technology is capable of recognizing natural, continuous speech without requiring the user to train the system in advance (i.e., speaker-independent recognition). The DECIPHER system exhibits strong performance in Government-administered tests and can be distinguished from the few other leading-edge speech recognition technologies by its detailed modeling of variations in pronunciation and its robustness to background noise and channel distortion. These features make the DECIPHER system accurate in recognizing spontaneous speech of different dialects and less dependent on the idiosyncracies of different microphones and acoustic environments. |
Contact | |
Name | C. Raymond Perrault |
Function | Acting Director STAR Laboratory |
Department | |
perrault_(on)_ai.sri.com | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |