|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1225 ] | Natural Language Processing Group, Austrian Research Institute for Artificial Intelligence (ÖFAI) |
---|---|
Organisation name | Natural Language Processing Group, Austrian Research Institute for Artificial Intelligence (ÖFAI) |
Short name or acronym | Natural Language Processing Group, Austrian Research Institute for Artificial Intelligence (ÖFAI) |
Organisation type | Center |
Activity type | Speech technology |
Address | Schottengasse 3 |
Postal Code | A-1010 |
City | Vienna |
Country | Austria |
Phone | + +43 1 5336112 0 |
Fax | + +43 1 5336112 77 |
sec_(on)_ai.univie.ac.at | |
Organisation URL | http://www.ai.univie.ac.at/oefai/oefai.html |
Logo | Description |
![]() |
Natural Language Processing (NLP) forms a major research area at the Austrian Research Institute for Artificial Intelligence (ÖFAI) since its inception in 1984. We conduct research in modelling and processing human languages, especially for German. This includes constructing linguistic resources (such as lexicons, grammars, discourse models), processing algorithms (such as morphological components, parsers, generators, speech synthesizers, discourse processing components), and application prototypes (such as natural language interfaces, advisory systems and concept-to-speech systems). The Natural Language Processing Group at ÖFAI is a member of the EU's Network of Excellence European Network in Language and Speech (ELSNET). |
Member of elsnet | Contact |
Name | Prof., Ing., Dr. Robert Trappl |
Function | professor and head |
Department | Medical Cybernetics and Artificial Intelligence |
robert_(on)_ai.univie.ac.at | |
Phone | + +43 1 4277 63101 |
Fax | + +43 1 4277 9631 |
![]() |
Last update: 2002-05-10 12:30:36 #!/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" |