|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1667 ] | Prof. Wolfgang Minker |
---|---|
Name | Minker, Prof. Wolfgang |
Job Title | University Professor |
Organisation | University of Ulm |
Address | Albert-Einstein-Allee 43 |
Postal Code | 89081 |
City | Ulm |
Country | Germany |
Phone | + +49 731 5026254 |
Fax | + +49 731 5026259 |
Mobile | + |
wolfgang.minker_(on)_e-technik.uni-ulm.de [@ replaced for spam protection] | |
Organisation URL | http://it.e-technik.uni-ulm.de/ |
Personal URL | |
Membership | ISCA |
Languages | English French, German |
Specialism | Analysis & Processing of Speech under Stress
Automated Natural Language Speech Automotive Applications Computational Linguistics Corpora Corpora and Dialogue Annotations Corpus Linguistics Corpus statistics Data Corpus Collection Databases of Emotional Speech Development and Implementation of Speech Technology Applications Dialogue Dialogue Design Dialogue Management Dialogue Modelling Dialogue System Evaluation Dialogue systems Evaluation Grammar Hidden Markov Models Human Factors Human Factors Engineering Human Voice Understanding Information Retrieval Language Modeling Linguistics Machine Learning Multilinguality Multimodal Communciation Multimodal Dialogue Systems Multimodal Human-Machine Communication Multimodality Natural Language Processing Natural Language Semantics Oral Dialogue Parsing Robust Parsing and Understanding Robust Parsing of Spontaneous Speech Robust Semantic Processing Robust Speech Understanding Semantic Interpretation Semantics Speech Applications Speech Understanding Spoken Dialogue and Robust Speech Understanding Spoken Dialogue Modeling Spoken Dialogue Processing Spoken Dialogue Systems Spontaneous Speech Statistical Language Modeling and Analysis Testing of Dialogue Systems Usability Engineering User Interface Design VoiceXML |
Photograph | Description or CV |
| |
Update your profile | Last update: 2003-12-02 12:57: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" |