|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0872 ] | Laboratory of Computer and Information Science, Helsinki University of Technology |
---|---|
Organisation name | Laboratory of Computer and Information Science, Helsinki University of Technology |
Short name or acronym | Laboratory of Computer and Information Science, Helsinki University of Technology |
Organisation type | Center |
Activity type | Speech technology |
Address | P.O.Box 5400 |
Postal Code | FIN-02015 |
City | Helsinki |
Country | Finland |
Phone | + +358 9 451 3272 |
Fax | + +358 9 451 3277 |
webmaster_(on)_www.cis.hut.fi | |
Organisation URL | http://www.cis.hut.fi/research/ |
Logo | Description |
![]() |
The Laboratory of Computer and Information Science (CIS) is part of the Department of Computer Science and Engineering at Helsinki University of Technology. The research activities of the laboratory are coordinated by the Neural Networks Research Centre (NNRC), established in 1994 by Academy Professor Teuvo Kohonen, one of the foremost pioneers in the field of neurocomputing. The Centre has been one of the Centres of Excellence elected by the Academy of Finland since 1995 and this status will continue for the period 2000 to 2005. The research is concentrated on artificial neural networks, pattern recognition, and signal processing. The laboratory is responsible for undergraduate and post-graduate studies on its research fields. |
Contact | |
Name | Prof. Erkki Oja |
Function | Director |
Department | |
Erkki.Oja_(on)_hut.fi | |
Phone | + +358 9 4513265 |
Fax | + +358 9 4513277 |
![]() |
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" |