elsnet |
Expert profile: Dr Gregory Grefenstette |
[ ID = 1877 ] | Dr Gregory Grefenstette |
---|---|
Name | Grefenstette, Dr Gregory |
Job Title | Chief Science Officer, Directeur Scientifique |
Organisation | Exalead |
Address | 10 place de la Madeleine |
Postal Code | 75008 |
City | Paris |
Country | France |
Phone | + 33 1 46 54 96 56 |
Fax | + 33 1 46 54 75 80 |
Mobile | + |
Gregory.Grefenstette_(on)_exalead.com [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | |
Languages | English French |
Specialism | Anaphora
Arabic Natural Language Processing Audio Indexing Chinese NLP Processing Computational Lexicography Computational Linguistics Corpus Linguistics Corpus statistics Detecting speech in noise Emotion in Speech General linguistics Grammar Information Retrieval Language Identification Language Modeling Language Resource Production Language Resources Language Translation Lexical and Terminological Databases Lexical Semantics Lexicons Machine Translation Morphology Modeling for Languages with Highly Complex Inflection Multilinguality Multimodal Reference Multimodality Natural Language Processing Natural Language Semantics Ontology Parsing Question-Answering Robust Parsing and Understanding Semantic Interpretation Shallow Parsing Statistical Language Modeling and Analysis Statistical Methods for Information Retrieval Syntax Text Generation Translation and Foreign Language Production Verb Subcategorization Word meaning |
Photograph | Description or CV |
| |
Update your profile | Last update: 2009-10-19 10:56:39 #!/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" |