|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1570 ] | Dr. Toma Erjavec |
---|---|
Name | Erjavec, Dr. Toma |
Job Title | scientific associate |
Organisation | Joef Stefan Institute |
Address | Jamova cesta 39 |
Postal Code | SI-1000 |
City | Ljubljana |
Country | Slovenia |
Phone | + |
Fax | + |
Mobile | + |
tomaz.erjavec_(on)_ijs.si [@ replaced for spam protection] | |
Organisation URL | http://www.ijs.si/ |
Personal URL | http://nl.ijs.si/et/ |
Membership | ACL |
Languages | English |
Specialism | Annotation and Exploitation Tools
Awareness raising Computational Lexicography Computational Linguistics Computational Morphology Corpora Corpus Linguistics Corpus statistics Data Corpus Collection Dynamic Lexicon Building Finite State Methods Grammar Graph Representation of Lexicons Information Retrieval Language Modeling Language Resources Language Translation Lexical Acquisition Lexical and Terminological Databases Lexicons Machine Learning Machine Translation Morphological Analysis and Synthesis (Generation) Morphology Morphology Modeling for Languages with Highly Complex Inflection Multilinguality Natural Language Processing Ontology Shallow Parsing Statistical Language Modeling and Analysis Technology Tokenisation Verb Subcategorization Web Applications Wordnets |
Photograph | Description or CV |
![]() |
http://nl.ijs.si/et/ |
![]() |
Last update: 2008-08-29 12:13:27 #!/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" |