|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0551 ] | Interactive Systems Laboratories |
---|---|
Organisation name | Interactive Systems Laboratories |
Short name or acronym | Interactive Systems Laboratories |
Organisation type | Center |
Activity type | Speech technology |
Address | Carnegie Mellon University School of Computer Science |
Postal Code | 15221 |
City | Pittsburgh, PA |
Country | United States |
Phone | + +1 412 268 7676 |
Fax | + +1 412 268 5593 |
Organisation URL | http://werner.ira.uka.de/ISL.html |
Logo | Description |
![]() |
The Interactive Systems Laboratories are located at SCS-CMU in Pittsburgh and at University of Karlruhe in Germany. The ISL aim to develop user interfaces that improve human-machine and human-to-human communication. Two challenging examples of the laboratories' interests are the development of a speech-to-speech translation system (the JANUS project) and multimodal interfaces (the INTERACT project). |
Contact | |
Name | Mr. Alex Waibel |
Function | |
Department | |
ahw_(on)_cs.cmu.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" |