|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1116 ] | John Kovarik |
---|---|
Name | Kovarik, John |
Job Title | Chief Scientist |
Organisation | US Government National Center for Language and Culture Research |
Address | 621 Westphalia Dr. |
Postal Code | 21061 |
City | Glen Burnie |
Country | United States |
Phone | + |
Fax | + |
Mobile | + |
kovariks_(on)_verizon.net [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | http://mysite.verizon.net/vzexe2dw/kovarikconsulting/ |
Membership | ACL Association for Machine Translation in the Americas (AMTA), Chinese Information Processing Society (CIPS), Republic Of China LINGuistics Society (ROCLING). |
Languages | English Chinese |
Specialism | Bayesian Theory and Applications
Chinese NLP Processing Computational Lexicography Computational Linguistics Corpora and Dialogue Annotations Corpus statistics Discourse analysis Hidden Markov Models Information Retrieval Language Modeling Language Resource Production NLP Phonology Shallow Parsing Statistical Language Modeling and Analysis Text Generation Wordnets |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2008-08-28 21:02:13 #!/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" |