|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0590 ] | ICSI Realization Group |
---|---|
Organisation name | ICSI Realization Group |
Short name or acronym | ICSI Realization Group |
Organisation type | Center |
Activity type | Speech technology |
Address | International Computer Science Institute 1947 Center St., Suite 600 |
Postal Code | 94704-1198 |
City | Berkeley, CA |
Country | United States |
Phone | + +1 510 666 2900 |
Fax | + +1 510 666 2956 |
Organisation URL | http://www.icsi.berkeley.edu |
Logo | Description |
![]() |
The Realization Group at the International Computer Science Institute (ICSI) conducts research in the areas of algorithms, architectures, and systems for speech and audio signal processing and pattern recognition. In the 1990's the emphasis of this group's work gradually became the application of these areas of study to problems in spoken language processing, and particularly in robust automatic speech recognition. By its nature, the Realization effort covers a broad spectrum of issues, including the study of hardware architectures that are appropriate for the algorithms developed in the group. |
Contact | |
Name | Professor Nelson Morgan |
Function | Director of ICSI |
Department | |
morgan_(on)_icsi.berkeley.edu | |
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" |