|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2056 ] | ÖGAI |
---|---|
Organisation name | Oesterreichische Gesellschaft fuer Artificial Intelligence |
Short name or acronym | ÖGAI |
Organisation type | Association |
Activity type | Speech technology |
Address | Postfach 177 |
Postal Code | A-1014 |
City | Wien |
Country | Austria |
Phone | + +43 1 58801 4089 |
Fax | + |
oegai_(on)_ai.univie.ac.at | |
Organisation URL | http://www.ifs.tuwien.ac.at/oegai/ |
Logo | Description |
![]() |
Die Österreichische Gesellschaft für Artificial Intelligence (ÖGAI) wurde 1981 gegründet und ist eine nicht auf Gewinn gerichtete Vereinigung von an der Artificial Intelligence (Künstlichen Intelligenz) interessierten Personen. Die ÖGAI wird von ehrenamtlichen MitarbeiterInnen geleitet und ist in ganz Österreich tätig. Der Verein hat derzeit etwa 150 Mitglieder, darunter Personen aus Wissenschaft und Wirtschaft aus fast allen auf dem Gebiet der Artificial Intelligence in Österrreich aktiven Organisationen. The Austrian Society for Artificial Intelligence (ÖGAI in German) was created 1981 and a non-profit union of persons interested in Artificial Intelligence. The ÖGAI is led by honorary coworkers and is active in all of Austria. The association has at present about 150 members, among them persons from science and economics from almost all organizations active in the area of the Artificial Intelligence in Austria. |
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" |