|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2057 ] | Dr. Petra Wolf |
---|---|
Name | Wolf, Dr. Petra |
Job Title | computational linguist |
Organisation | Lucy Software and Services GmbH |
Address | Neumarkter Str. 81 |
Postal Code | 81675 |
City | Munich |
Country | Germany |
Phone | +49 200019634 |
Fax | +49 200019624 |
Mobile | + |
petra.wolf_(on)_lucysoftware.com [@ replaced for spam protection] | |
Organisation URL | http://www.lucysoftware.com |
Personal URL | |
Membership | ACL ISCA |
Languages | English German |
Specialism | Anaphora
Application Software Development Computational Lexicography Computational Linguistics Computational Morphology Corpus Linguistics Development and Implementation of Speech Technology Applications Dialogue Dialogue Design Dialogue Management Dialogue Modelling Dialogue System Evaluation Dialogue systems Discourse analysis Discourse Theories Grammar Human Factors Human Factors Engineering Human Voice Understanding Information Retrieval Knowledge Management Language Acquisition Language Learning Linguistics Machine Translation Multilinguality Multimodal Dialogue Systems Multimodal Human-Machine Communication Multimodality Natural Language Processing Natural Language Semantics Naturalistic Spoken Language Project Management Question-Answering Robust Speech Understanding Semantics and Pragmatics in Speech Understanding Speech Understanding Spoken Dialogue and Robust Speech Understanding Spoken Dialogue Modeling Spoken Dialogue Processing Spoken Dialogue Systems Testing of Dialogue Systems |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2008-09-01 09:38:02 #!/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" |