|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2756 ] | Center for Spoken Language Research (CSLR) |
---|---|
Organisation name | Center for Spoken Language Research (CSLR) |
Short name or acronym | Center for Spoken Language Research (CSLR) |
Organisation type | Center |
Activity type | Speech technology |
Address | Campus Box 594 |
Postal Code | 80309-0594 |
City | Boulder, Colorado |
Country | United States |
Phone | + +1 303 735 5150 |
Fax | + +1 303 735 5072 |
Organisation URL | http://cslr.colorado.edu |
Logo | Description |
![]() |
CSLR is focused on research and education in areas of human language technology. Established in 1998 at the University of Colorado, we strive to make the world a better place by inventing new technologies that will enable all people access to information and new opportunities for life long learning. Our Mission: + To invent the next generation of conversational systems. + To contribute to the basic scientific knowledge of speech processing. + To train tomorrow's leaders in human language technology. + To improve education and universal access to information. + To create and share language resources. |
Contact | |
Name | Professor Ronald Cole |
Function | Center Director |
Department | |
cole_(on)_cslu.colorado.edu | |
Phone | + +1 303 735 5109 |
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" |