|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1492 ] | Dr. Timo HONKELA |
---|---|
Name | HONKELA, Dr. Timo |
Job Title | Chief Research Scientist |
Organisation | Helsinki University of Technology |
Address | P.O.Box 5400 |
Postal Code | 02015 |
City | Espoo |
Country | Finland |
Phone | + |
Fax | + |
Mobile | +358 (0)40 844 6553 |
timo.honkela_(on)_hut.fi [@ replaced for spam protection] | |
Organisation URL | http://www.cis.hut.fi/ |
Personal URL | http://www.cis.hut.fi/tho/ |
Membership | ELSNET Finnish Artificial Intelligence Society, Linguistic Association of Finland, Philosophical Society of Finland, Finnish Society for Computer Science, Finnish Society of Psychology |
Languages | English Finnish, Swedish, German |
Specialism | Ambiguity
Artificial Neural Networks Computational Linguistics Corpus Linguistics Corpus statistics Dialogue systems Dynamic Lexicon Building e-Business Human Factors Information Retrieval Knowledge Management Language Acquisition Language Learning Language Modeling Language Processing Lexical and Terminological Databases Lexical Semantics Machine Learning Mathematical Linguistics Natural Language Processing Natural Language Semantics Neural Networks Ontology Philosophy Pragmatics Search Engines Semantic Interpretation Semantics Statistical Methods for Information Retrieval Vector Quantization Word meaning |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2006-05-29 23:37:34 #!/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" |