|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3505 ] | LIC2M/CEA-LIST |
---|---|
Organisation name | Laboratoire d'ingénerie de la connaissance multimédia multilingue |
Short name or acronym | LIC2M/CEA-LIST |
Organisation type | Public or governmental |
Activity type | Lang+Speech Technology research |
Address | BP 6, 18 route du Panorama, CEA-FAR, Bat 38-1 |
Postal Code | 92265 |
City | Fontenay-aux-Roses |
Country | France |
Phone | + +33 1 46 54 91 15 |
Fax | + +33 1 46 54 75 80 |
Christian.Fluhr_(on)_cea.fr | |
Organisation URL | http://www-drt.cea.fr/fr/prog/list/ |
Logo | Description |
![]() |
The LIC2M (Laboratoire d'ingénerie de la connaissance multimédia multilingue) is a research lab working on information extraction and manipulation from text, image, sound and video. Subareas are crosslingual information retrieval, classification, summarization, ontology creation, and multilingual terminology; and textual description of images, video and sound. The LIC2M is 20 person group within a larger research structure called the LIST which is part of the French public research institution CEA (Commissariat à l'Energie Atomique. 15,000 exployees). Principal research staff: Christian Fluhr (research director) cross language information retrieval, natural language processing. Gregory Grefenstette: corpus linguistics, cross language information retrieval, natural language processing. Patrick Hède: image processing and indexing Pierre-Alain Moellic: image processing and indexing Olivier Ferret: semantic extraction, summarization, filtering Gael De Chalendar: cross language summarization, shallow parsing Romaric Besancon: information retrieval, shallow parsing Nasredine Semmar: Arabic processing, translation memory Olivier Mesnard: semantic extraction Benoit Mathieu: classification, filtering Collaborative projects: member of the MUSCLE network of Excellence. participant in CLEF board of ELRA Organizers of IMAGEVAL, a CLEF-like competition for image indexing |
Contact | |
Name | Dr. Christian Fluhr |
Function | Research Director |
Department | Laboratoire d'ingénerie de la connaissance multimédia multilingue |
Christian.Fluhr_(on)_cea.fr | |
Phone | + +33 1 46 54 96 01 |
Fax | + +33 1 46 54 75 80 |
![]() |
Last update: 2005-03-23 10:35:40 #!/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" |