|
|
|
Organisation profile: Institut für Maschinelle Sprachverarbeitung (IMS)
| [ ID = 1256 ] | Institut für Maschinelle Sprachverarbeitung (IMS) |
| Organisation name | Institut für Maschinelle Sprachverarbeitung (IMS) |
| Short name or acronym | Institut für Maschinelle Sprachverarbeitung (IMS) |
| Organisation type | Center |
| Activity type | Speech technology |
| Address | Azenbergstr. 12 |
| Postal Code | D-70174 |
| City | Stuttgart |
| Country | Germany |
| Phone | + |
| Fax | + +49 711 121 1366 |
| Email | 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:
Computational Linguistics
Experimental Phonetics
Formal Logic and Philosophy of Language
Theoretical Computational Linguistics The IMS offers a PhD Program
and a Diploma Program (Diplom-Linguistik) with an active Student
Union.
The IMS is a part of the Faculty of Philosophy at the University of
Stuttgart.
|
|
| Contact |
| Name | Mrs. Sybille Laderer |
| Function | |
| Department | |
| Email | ims_(on)_ims.uni-stuttgart.de |
| Phone | + +49 711 121 1363 |
| Fax | + |
Update this profile
|
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"
|
|