|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0681 ] | Dr Dominique Dutoit Dutoit |
---|---|
Name | Dutoit, Dr Dominique Dutoit |
Job Title | manager |
Organisation | MEMODATA |
Address | 17 rue dumont d'urville |
Postal Code | 14000 |
City | Caen |
Country | France |
Phone | + +33 2 31 35 75 20 |
Fax | + |
Mobile | + |
dutoit_(on)_info.unicaen.fr [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | |
Languages | English |
Specialism | Speechtechnology:
Abductive Inference Acoustic Phonetics Ambiguity Computational Lexicography Computational Linguistics Computational Morphology Filter Design general linguistics Grammar Compilers Graph Representation of Lexicons Information Retrieval Knowledge-based Speech Recognition Language Learning Language Modeling Language Processing Lexical and Terminological Databases Lexicons Machine Translation Mathematical Linguistics morphology Multilinguality Natural Language Semantics NLP Parsing Phonology Pragmatics Search Engines Search Strategies Semantics Shallow Parsing Software Architecture for Language Engineering Spoken Dialogue Systems Spoken Document Retrieval Statistical Language Modeling and Analysis Statistical Pattern Recognition Syntax Text Generation Tokenisation Word meaning |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2002-04-07 12:00:00 #!/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" |