|
|
Expert profile: prof. dr. sc. Marko Tadic
[ ID = 1588 ] |
prof. dr. sc. Marko Tadic |
Name |
Tadic, prof. dr. sc. Marko |
Job Title | associated professor |
Organisation |
Institute of Linguistics, Faculty of Philosophy, University of Zagreb |
Address | Ivana Lucica 3 |
Postal Code | HR-10000 |
City | Zagreb |
Country | Croatia |
Phone | +385 1 6120-142 |
Fax | +385 1 6156-879 |
Mobile | +385 91 1537-194 |
Email |
marko.tadic_(on)_ffzg.hr
[@ replaced for spam protection] |
Organisation URL |
http://hnk.ffzg.hr |
Personal URL |
http://hnk.ffzg.hr/mt/ |
Membership |
ACL
EAMT, SDJT, HDJT |
Languages | English Italian, Croatian, Slovenian, Serbian |
Specialism |
Annotation and Exploitation Tools
Computational Lexicography
Computational Linguistics
Computational Morphology
Corpora
Corpus Linguistics
Corpus statistics
Data Corpus Collection
General linguistics
Information Retrieval
Language Modeling
Language Processing
Language Resources
Language Translation
Lexical and Terminological Databases
Lexicons
Linguistics
Machine Translation
Mathematical Linguistics
Morphological Analysis and Synthesis (Generation)
Morphology
Morphology Modeling for Languages with Highly Complex Inflection
Natural Language Processing
Statistical Methods for Information Retrieval
Tokenisation
Use of Translation Tools |
Photograph | Description or CV |
 |
http://www.hnk.ffzg.hr/mt/mt_e.htm
|
Update your profile
|
Last update: 2008-09-05 09:27:04
#!/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"
|
|