|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2816 ] | Istituto Dalle Molle di Studi sull'Intelligenza Artificiale (IDSIA) |
---|---|
Organisation name | Istituto Dalle Molle di Studi sull'Intelligenza Artificiale (IDSIA) |
Short name or acronym | Istituto Dalle Molle di Studi sull'Intelligenza Artificiale (IDSIA) |
Organisation type | Association |
Activity type | Speech technology |
Address | Galleria 2 |
Postal Code | 6928 |
City | Manno-Lugano |
Country | Switzerland |
Phone | + +41 91 610 8660 |
Fax | + +41 91 610 8661 |
info_(on)_idsia.ch | |
Organisation URL | http://www.idsia.ch |
Logo | Description |
![]() |
IDSIA is a non-profit research institute founded in 1988 to conduct basic research in artificial intelligence. It is affiliated with both the University of Lugano and SUPSI. Our focus is on machine learning (neural networks and reinforcement learning), operations research, and robotics. We have two sister institutes: ISSCO, Geneva (1973: Linguistic AI) and IDIAP, Martigny (1991: Perceptive AI). All three were founded by the Fondazione Dalle Molle per la Qualita della Vita. IDSIA is situated in Manno near Lugano, a lakeside city in the Italian-speaking canton of Ticino, a region of Switzerland well known for its warm climate and outstanding scenery. IDSIA receives basic funding from the Swiss Confederation and Canton Ticino. Additional funding derives from research contracts and other mandates. |
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" |