|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1342 ] | Prof.Dr. Jan Odijk |
---|---|
Name | Odijk, Prof.Dr. Jan |
Job Title | Professor of Language and Speech Technology |
Organisation | UIL-OTS University of Utrecht |
Address | Janskerkhof 13 |
Postal Code | 3512 BL |
City | Utrecht |
Country | Netherlands |
Phone | + 31 30 253 6730 |
Fax | + 31 30 253 6000 |
Mobile | + |
j.odijk_(on)_uu.nl [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | ELSNET ACL |
Languages | English Dutch German French Russian |
Specialism | Annotation and Exploitation Tools
Computational Lexicography Computational Linguistics Computational Morphology Corpora Corpora and Dialogue Annotations Corpus Linguistics Data Corpus Collection Finite State Methods General linguistics Grammar Grammar Compilers Information Retrieval Language Resource Production Language Resources Large speech corpora Lexical and Terminological Databases Lexicons Linguistics Machine Translation Metadata Descriptions Morphological Analysis and Synthesis (Generation) Morphology Morphology Modeling for Languages with Highly Complex Inflection Natural Language Processing Natural Language Semantics Parsing Principle-based Parsing Prosody modelling Semantic Interpretation Semantics Shallow Parsing Speech Databases Speech Databases for Automatic Speech/Speaker Recognition Speech Technologies Spoken Language Resources and Evaluation Symbolic Speech Synthesis Syntax Text Generation Text-to-Phonetic Representation Text-to-Speech Verb Subcategorization |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2010-02-17 15:01:20 #!/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" |