|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1871 ] | Stephan Kanthak |
---|---|
Name | Kanthak, Stephan |
Job Title | |
Organisation | |
Address | Markt 1-3 |
Postal Code | 52062 |
City | Aachen |
Country | Germany |
Phone | + +49 241 176469 |
Fax | + |
Mobile | + +49 178 3883852 |
stylon_(on)_gmx.de [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | |
Languages | English German |
Specialism | Acoustic Modeling
Adaptive Speech Recognition Audio Signal Processing Automatic transcription of TV and radio broadcast News Chief Technical Consultant Computational Linguistics Confidence Measures Dynamic Programming in Speech Recognition Grammar Graph Representation of Lexicons Hidden Markov Models Language Modeling Language Processing Language Translation Large speech corpora Mobile devices Multilingual Acoustic Modeling Multilingual Speech Recognition Natural Language Processing Project Management Robust Speech Recognition Robust Speech Understanding Signal Analysis Software Architecture for Language Engineering Speech Recognition Speech Signal Processing Speech Translation Systems for Traveling Abroad Speech-to-Speech Translation Spoken Translation Spontaneous Speech Statistical Language Modeling and Analysis Statistical Language Modelling for Speech Recognition |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2005-03-21 10:59:52 #!/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" |