|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0557 ] | CPK |
---|---|
Organisation name | Center for PersonKommunikation |
Short name or acronym | CPK |
Organisation type | Center |
Activity type | Speech technology |
Address | Aalborg UniversityFredrik Bajers Vej 7 A5 |
Postal Code | DK-9220 |
City | Aalborg Ø |
Country | Denmark |
Phone | + +45 96 35 86 40 |
Fax | + +45 98 15 15 83 |
cpk_(on)_cpk.auc.dk | |
Organisation URL | http://www.cpk.auc.dk |
Logo | Description |
![]() |
CPK has been involved in research in the area of Spoken Dialogue Systems for a number of years. The research has been focussed on the establishment of an environment for research and development of spoken dialogue systems as well as design and implementation of specific dialogues. This work also includes activities aiming at the inclusion of modalities other than speech into dialogue systems. This work is based on strong backgrounds in research and development R&D in Speech Analysis, Speech Synthesis, Speech Recognition and Spoken Language Understanding. |
Member of elsnet | Contact |
Name | Professor Jørgen Bach Andersen |
Function | |
Department | |
jba_(on)_cpk.auc.dk | |
Phone | + +45 96 35 86 41 |
Fax | + |
![]() |
Last update: 2002-05-10 12:41:53 #!/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" |