|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2803 ] | IAI |
---|---|
Organisation name | Institut der Gesellschaft zur Förderung der Angewandten Informationsforschung e.V. (GFAI) - University of the Saarland |
Short name or acronym | IAI |
Organisation type | Association, SIG, Project |
Activity type | Lang+Speech Technology provider |
Address | Martin-Luther-Str. 14 |
Postal Code | D-66111 |
City | Saarbrücken |
Country | Germany |
Phone | + +49 681 38951 0 |
Fax | + +49 681 38951 40 |
iai_(on)_iai.uni-sb.de | |
Organisation URL | http://www.iai.uni-sb.de |
Logo | Description |
![]() |
The IAI was established in 1985 to carry out research in Language Technology and other areas of information sciences. Within several other public and industry funded projects, linguistic resources like dictionaries, terminologies and grammars have been expanded considerably. On this basis, the linguists, translators and computer scientists of IAI (23 in 2004) started to develop prototypical software tools for document processing which attain higher performances than the currently available commercial tools. Examples are: - Duden KORREKTOR, the new German spelling and grammar checker - MULTILINT and CLAT, specific spelling, terminology, grammar and syntax checkers for technical documentation - AUTOTERM for automatic mono- and bilingual term extraction - AUTINDEX for automatic indexing and abstracting Services performed for editor houses led to well known products where IAI contributed: - Brockhaus Multimedial (Knowledge Network for Encyclopedies) - SESB (Stuttgart Electronic Study Bible) Research is being continued in - multilingual full text retrieval - information translation (EBMT) |
Member of elsnet | Contact |
Name | Prof. Dr. Johann Haller |
Function | |
Department | |
iai_(on)_iai.uni-sb.de | |
Phone | + +49 681 38951 23 |
Fax | + |
![]() |
Last update: 2004-09-10 10:57:05 #!/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" |