|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2165 ] | Artificial Intelligence Section (IA), Technical University of Catalonia |
---|---|
Organisation name | Artificial Intelligence Section (IA), Technical University of Catalonia |
Short name or acronym | Artificial Intelligence Section (IA), Technical University of Catalonia |
Organisation type | Center |
Activity type | Speech technology |
Address | Technical University of Catalonia (UPC), Edificis C5-C6, Campus Nord, Jordi Girona 1-3 |
Postal Code | E-08034 |
City | Barcelona |
Country | Spain |
Phone | + +34 93 401 79 93 |
Fax | + +34 93 401 70 14 |
Organisation URL | http://www.lsi.upc.es/~webia/ |
Logo | Description |
![]() |
The Artificial Intelligence Section is concerned with the study and development of artificial intelligence systems provided with some cognitive tasks such as natural language understanding, machine learning, reasoning, etc. The concrete lines of our research are: autonomous agents, bayessian networks learning, case-based reasoning and learning, collaborative distance learning, constraint processing and programming, fuzzy systems, genetic algorithms and evolutive strategies, hybrid soft computing systems, integrated architectures, neural networks, pattern recognition, reinforcement learning, and unsupervised learning. |
Contact | |
Name | Mr. Glyn Morrill |
Function | Head |
Department | Artificial Intelligence section |
morrill_(on)_lsi.upc.es | |
Phone | + +34 93 401 7112 |
Fax | + +34 93 401 7014 |
![]() |
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" |