|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2206 ] | Dr. André Kempe |
---|---|
Name | Kempe, Dr. André |
Job Title | Senior Researcher (PhD) in NLP & Computer Science |
Organisation | Weborama |
Address | |
Postal Code | |
City | Paris |
Country | France |
Phone | + |
Fax | + |
Mobile | + |
a.kempe_(on)_free.fr [@ replaced for spam protection] | |
Organisation URL | http://www.weborama.com |
Personal URL | http://a.kempe.free.fr |
Membership | |
Languages | English , German, French, Russian, Spanish |
Specialism | Ambiguity
Annotation and Exploitation Tools Application Software Development Computation Computational Linguistics Computational Morphology Corpora Corpus Linguistics Corpus statistics Finite State Methods Graph Representation of Lexicons Hidden Markov Models Internet Language Identification Language Processing Language Resource Production Language Resources Lexicons Machine Learning Morphology Morphology Modeling for Languages with Highly Complex Inflection Natural Language Processing Project Management Search Engines Shallow Parsing Statistical Language Modeling and Analysis Technology Technology Implementation Tokenisation Web Content Extraction Word Graph Clustering |
Photograph | Description or CV |
André Kempe, PhD Dresden University of Technology, Germany, is currently working at Weborama, Paris, on algorithms for word graph clustering and web content extraction. He was previously a Senior Scientist and Project Leader at the Xerox Research Centre Europe (XRCE), Grenoble, France, where he made key-contributions to algorithms in Xerox's finite-state toolkit (XFST), which is now a central component of many linguistic applications, licensed to numerous companies and universities world-wide, and awarded a META Seal of Recognition in 2012. As a member of XRCE's Technical Advisory Panel, he evaluated inventions before their filing for patents. He supervised PhDs and internships. His principal research contributions have been: operations, algorithms, and practical application of boolean, weighted, and multi-tape automata, as well as natural language processing based on both automata and statistical models. André Kempe holds 13 patents and published numerous scientific articles in journals and conference proceedings. As a recognised expert in finite-state technology, he was and is programme committee member of various international conferences. | |
Update your profile | Last update: 2017-02-04 18:42:17 #!/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" |