|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0261 ] | Speech Technology And Research (STAR) Laboratory |
---|---|
Organisation name | Speech Technology And Research (STAR) Laboratory |
Short name or acronym | Speech Technology And Research (STAR) Laboratory |
Organisation type | Center |
Activity type | Speech technology |
Address | SRI International 333 Ravenswood Avenue |
Postal Code | 94025-3493 |
City | Menlo Park, CA |
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 Speech Technology and Research Laboratory has a staff of about 25, including engineers, computer scientists, and linguists, offering a fine balance of the skills required for leading edge development: signal processing, phonetics/phonology, mathematical modeling, and software engineering. |
Contact | |
Name | C. Raymond Perrault |
Function | Acting Director |
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" |