|
|
Expert profile: Prof. Dr. Alexander Gelbukh
[ ID = 1137 ] |
Prof. Dr. Alexander Gelbukh |
Name |
Gelbukh, Prof. Dr. Alexander |
Job Title | Head of Natural Language and Text Processing Laboratory |
Organisation |
Center for Computing Research of the National Polytechnic Institute |
Address | CIC, IPN, Av. Juan Dios Batiz esq. Mendizabal, Col. Nueva Industrial Vallejo |
Postal Code | 07738 |
City | Mexico DF |
Country | Mexico |
Phone | +52 (55) 5729-6000 x 56544 |
Fax | +52 (55) 5586-2936 |
Mobile | +52 1 55-3253-0186 |
Email |
gelbukh_(on)_gelbukh.com
[@ replaced for spam protection] |
Organisation URL |
http://www.cic.ipn.mx |
Personal URL |
http://www.gelbukh.com |
Membership |
ACL
ACM, SMIA, AMPLN |
Languages | English Spanish, Russian |
Specialism |
Speechtechnology:
Ambiguity
Anaphora
Annotation and Exploitation Tools
Application Software Development
Computational Lexicography
Computational Linguistics
Computational Morphology
Computer Assisted Language Learning
Corpora and Dialogue Annotations
Corpus statistics
Data Corpus Collection
general linguistics
Grammar
Grammar Compilers
Information Retrieval
Language Processing
Language Resource Production
Language Resources
Lexical Acquisition
Lexical and Terminological Databases
Lexical Semantics
Lexicons
Linguistics
Machine Translation
Mathematical Linguistics
Morphological Analysis and Synthesis (Generation)
morphology
Morphology Modeling for Languages with Highly Complex Inflection and
Derivation
Natural Language Semantics
NLP
Parsing
Pattern Recognition and Statistical Data Analysis
Search Engines
Semantics
Statistical Language Modeling and Analysis
Syntax
Topic segmentation
Verb Subcaregorization
Word meaning
Wordnets |
Photograph | Description or CV |
 |
|
Update your profile
|
Last update: 2008-08-28 21:14:44
#!/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"
|
|