|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2792 ] | Department of Medical Cybernetics and Artificial Intelligence |
---|---|
Organisation name | Department of Medical Cybernetics and Artificial Intelligence |
Short name or acronym | Department of Medical Cybernetics and Artificial Intelligence |
Organisation type | Center |
Activity type | Speech technology |
Address | Freyung 6 |
Postal Code | A-1010 |
City | Vienna |
Country | Austria |
Phone | + +43 1 4277 63101 |
Fax | + +43 1 4277 9631 |
sec_(on)_ai.univie.ac.at | |
Organisation URL | http://www.ai.univie.ac.at/imkai/ |
Logo | Description |
![]() |
The Department of Medical Cybernetics and Artificial Intelligence (Institut für Medizinische Kybernetik und Artificial Intelligence - IMKAI) at the University of Vienna was founded in 1978. Research at IMKAI is performed in close cooperation with the Austrian Research Institute for Artificial Intelligence (ÖFAI) in various areas of AI. IMKAI's staff, headed by o.Prof.Dr.Robert Trappl, offers introductory as well as advanced courses in various fields of AI and supervises Masters' and PhD theses. |
Member of elsnet | Contact |
Name | Prof., Ing., Dr. Robert Trappl |
Function | Director |
Department | |
robert_(on)_ai.univie.ac.at | |
Phone | + +43 1 4277 63101 |
Fax | + +43 1 4277 9631 |
![]() |
Last update: 2002-05-10 12:27:31 #!/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" |