|
|
Expert profile: Dr. Guido Minnen
[ ID = 1374 ] |
Dr. Guido Minnen |
Name |
Minnen, Dr. Guido |
Job Title | |
Organisation |
Mitsubishi Electric Europe B.V. |
Address | Kolumbusstrasse 19+21 |
Postal Code | D-71063 |
City | Sindelfingen |
Country | Germany |
Phone | +49 (0)7031 4 16 02-39 |
Fax | +49 (0)7031 4 16 02-99 |
Mobile | +49 (0)173 900 21 66 |
Email |
Guido.Minnen_(on)_meg.mee.com
[@ replaced for spam protection] |
Organisation URL |
|
Personal URL |
|
Membership |
ACL
|
Languages | English German, Dutch |
Specialism |
Assistive Technology
Computational Lexicography
Computational Linguistics
Computational Morphology
Corpora and Dialogue Annotations
Corpus Linguistics
Data Corpus Collection
Dialogue Design
Dialogue Management
Dialogue Modelling
Dialogue System Evaluation
Dialogue systems
Dynamic Lexicon Building
Embedded Systems
Finite State Methods
Grammar
Grammar Compilers
Human Factors Engineering
Human Voice Understanding
Hybrid Systems
Interactive Voice Response (IVR)
Large speech corpora
Linguistics
Machine Learning
Mobile devices
Morphological Analysis and Synthesis (Generation)
Multimodal Human-Machine Communication
Natural Language Processing
Natural Language Semantics
Naturalistic Spoken Language
Robust Parsing and Understanding
Robust Semantic Processing
Robust Speech Understanding
Semantics and Pragmatics in Speech Understanding
Shallow Parsing
Software Architecture for Language Engineering
Speech Recognition
Speech Technologies
Speech Understanding
Speech-Enabled IVR Systems
Spoken Dialogue and Robust Speech Understanding
Spoken Dialogue Modeling
Spoken Dialogue Processing
Spoken Dialogue Systems
Statistical Language Modeling and Analysis
Text Generation
Voice-Driven Telecommunications Applications
Web Applications
Wireless Communications Applications |
Photograph | Description or CV |
 |
|
Update your profile
|
Last update: 2005-11-03 15:08:55
#!/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"
|
|