|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1796 ] | Dr.-Ing. Stefan Kopp |
---|---|
Name | Kopp, Dr.-Ing. Stefan |
Job Title | Research Group Leader |
Organisation | Sociable Agents Group, Bielefeld University |
Address | Universitaetsstrasse 25 |
Postal Code | P.O. Box 100131, D-33501 Bielefeld |
City | Bielefeld |
Country | Germany |
Phone | +49 521 106 2921 |
Fax | +49 521 1062962 |
Mobile | + |
skopp_(on)_techfak.uni-bielefeld.de [@ replaced for spam protection] | |
Organisation URL | http://www.techfak.uni-bielefeld.de/ags/wbski/wbski_engl.html |
Personal URL | http://www.techfak.uni-bielefeld.de/~skopp/ |
Membership | ACM, Germ. Soc. Cog. Sci. (GK), Germ.Soc. Comp. Sci. (GI) |
Languages | English German, French (basics) |
Specialism | Communication
Computation Computational Linguistics Corpora and Dialogue Annotations Dialogue Dialogue Modelling Dialogue systems Embodied Communication Embodied Conversational Agents Finite State Methods Hand Gestures and Speech Intonation Kinematics Lexical Semantics Multimodal Communciation Multimodal Dialogue Systems Multimodal Human-Machine Communication Multimodality Natural Language Processing Ontology Phonetics Pragmatics Prosody modelling Search Algorithms Semantics Speech Production Speech Synthesis Spoken Dialogue Modeling Spoken Dialogue Systems System Integration Text-to-Speech User Interface Design |
Photograph | Description or CV |
![]() |
http://www.techfak.uni-bielefeld.de/~skopp/download/vita-short.pdf |
![]() |
Last update: 2008-08-01 10:45:27 #!/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" |