|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2135 ] | Institute for Natural Language Processing (IMS) - University of Stuttgart |
---|---|
Organisation name | Institute for Natural Language Processing (IMS) - University of Stuttgart |
Short name or acronym | Institute for Natural Language Processing (IMS) - University of Stuttgart |
Organisation type | Center |
Activity type | Speech technology |
Address | Azenbergstr. 12 |
Postal Code | D-70174 |
City | Stuttgart |
Country | Germany |
Phone | + +49 711 121 1365 |
Fax | + +49 711 121 1366 |
ims_(on)_ims.uni-stuttgart.de | |
Organisation URL | http://www.ims.uni-stuttgart.de |
Logo | Description |
![]() |
In a world of growing floods of information, humans need the assistance of mechanized information processing tools. One important source of information consists of written or spoken text. The Institute for Natural Language Processing (IMS) carries out basic and applied research and trains students to create tools for automated processing of spoken and written language. In order to cover most of the range of research issues in Natural Language Processing, the IMS divides into the four sections (Chairs): + Computational Linguistics + Experimental Phonetics + Formal Logic and Philosophy of Language + Theoretical Computational Linguistics |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |