|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0548 ] | Center for Spoken Language Understanding (CSLU) |
---|---|
Organisation name | Center for Spoken Language Understanding (CSLU) |
Short name or acronym | Center for Spoken Language Understanding (CSLU) |
Organisation type | Center |
Activity type | Speech technology |
Address | PO Box 91000 |
Postal Code | 97291-1000 |
City | Portland, OR |
Country | United States |
Phone | + +1 503 690 1142 |
Fax | + +1 503 690 1306 |
Organisation URL | http://cslu.ece.ogi.edu/ |
Logo | Description |
![]() |
CSLU is an OGI Research Center that focuses on Spoken Language Technologies. Spoken Language Technologies enable people to interact with computers using speech, so that people can talk to computers (Speech Recognition), computers can talk to people (Speech Synthesis), computers know who is talking to them (Speaker Identification or Verification) or computers and people can talk to each other (Dialogue). These technologies are used for helping people with visual or hearing problems, for dictating letters directly into the computer, for getting information over the phone, for education, and for many other applications. |
Contact | |
Name | Ms. Charlene Edayan |
Function | |
Department | |
edayan_(on)_cse.ogi.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" |