|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3025 ] | ICRI |
---|---|
Organisation name | KULeuven Interdisciplinary Centre of Law & IT |
Short name or acronym | ICRI |
Organisation type | Research Centre |
Activity type | Legal Informatics; Information Retrieval; Expert systems |
Address | Tiensestraat 41 |
Postal Code | B-3000 |
City | Leuven |
Country | Belgium |
Phone | + +32 (0)16 32 52 73 |
Fax | + +32 (0)16 32 54 38 |
icri_(on)_law.kuleuven.ac.be | |
Organisation URL | http://www.law.kuleuven.ac.be/icri/ |
Logo | Description |
![]() |
As a division of the Interdisciplinary Centre of Law & IT, the Legal Informatics & Information Retrieval Research Group (LIIR) has been conducting research into artificial intelligence applications in the fields of legal informatics, intelligent information retrieval, expert systems and automatic summarization since 1993. The research group leader is Prof; Dr. Marie-Francine Moens. The group has worked on problems relating to legal document databases, legal expert systems and legal drafting systems. The information retrieval research stretches beyond the legal field and comprises the design and development of technologies for text indexing, classification and summarization, information extraction and retrieval models. Other groups at ICRI are conducting research into legal aspects of information technologies and telecommunication. Specialization areas include digital signatures, digital archiving and convergence phenomena.  |
Contact | |
Name | Prof. Dr. Marie-Francine Moens |
Function | Head of LIIR |
Department | Research Group Legal Informatics and Information Retrieval (LIIR) |
Marie-France.Moens_(on)_law.kuleuven.ac.be | |
Phone | + +32 (0)16 32 53 83 |
Fax | + +32 (0)16 32 54 38 |
![]() |
Last update: 2003-10-15 11:40:59 #!/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" |